Skip to content

Commit

Permalink
docs: fix docstring formatting (#566)
Browse files Browse the repository at this point in the history
* docs: fix docstring formatting

Committer: @parthea
PiperOrigin-RevId: 410565213

Source-Link: googleapis/googleapis@35b8704

Source-Link: googleapis/googleapis-gen@16a2cf9
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTZhMmNmOTIzYjYzZDVlYmNlMWM4YTk2MWQzNjgwODQ4N2U4OTExNCJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Nov 18, 2021
1 parent ea2ad35 commit ec83db6
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,10 +330,11 @@ message ListDatasetsRequest {
// An expression for filtering the results of the request.
//
// * `dataset_metadata` - for existence of the case (e.g.
// image_classification_dataset_metadata:*). Some examples of using the filter are:
// `image_classification_dataset_metadata:*`). Some examples of
// using the filter are:
//
// * `translation_dataset_metadata:*` --> The dataset has
// translation_dataset_metadata.
// `translation_dataset_metadata`.
string filter = 3;

// Requested page size. Server may return fewer results than requested.
Expand Down Expand Up @@ -456,11 +457,11 @@ message ListModelsRequest {
// An expression for filtering the results of the request.
//
// * `model_metadata` - for existence of the case (e.g.
// video_classification_model_metadata:*).
// `video_classification_model_metadata:*`).
// * `dataset_id` - for = or !=. Some examples of using the filter are:
//
// * `image_classification_model_metadata:*` --> The model has
// image_classification_model_metadata.
// `image_classification_model_metadata`.
// * `dataset_id=5` --> The model was created from a dataset with ID 5.
string filter = 3;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,10 +395,11 @@ message ListDatasetsRequest {
// An expression for filtering the results of the request.
//
// * `dataset_metadata` - for existence of the case (e.g.
// image_classification_dataset_metadata:*). Some examples of using the filter are:
// `image_classification_dataset_metadata:*`). Some examples of
// using the filter are:
//
// * `translation_dataset_metadata:*` --> The dataset has
// translation_dataset_metadata.
// `translation_dataset_metadata`.
string filter = 3;

// Requested page size. Server may return fewer results than requested.
Expand Down Expand Up @@ -641,11 +642,11 @@ message ListModelsRequest {
// An expression for filtering the results of the request.
//
// * `model_metadata` - for existence of the case (e.g.
// video_classification_model_metadata:*).
// `video_classification_model_metadata:*`).
// * `dataset_id` - for = or !=. Some examples of using the filter are:
//
// * `image_classification_model_metadata:*` --> The model has
// image_classification_model_metadata.
// `image_classification_model_metadata`.
// * `dataset_id=5` --> The model was created from a dataset with ID 5.
string filter = 3;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ function main(parent) {
/**
* An expression for filtering the results of the request.
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
*/
// const filter = 'abc123'
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ function main(parent) {
/**
* An expression for filtering the results of the request.
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
*/
// const filter = 'abc123'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ function main(parent) {
/**
* An expression for filtering the results of the request.
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
*/
// const filter = 'abc123'
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ function main(parent) {
/**
* An expression for filtering the results of the request.
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
*/
// const filter = 'abc123'
Expand Down
27 changes: 15 additions & 12 deletions packages/google-cloud-automl/src/v1/auto_ml_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2311,10 +2311,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
*
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
* @param {number} request.pageSize
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
Expand Down Expand Up @@ -2415,10 +2416,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
*
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
* @param {number} request.pageSize
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
Expand Down Expand Up @@ -2473,10 +2475,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
*
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
* @param {number} request.pageSize
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
Expand Down Expand Up @@ -2530,11 +2533,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
*
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
* @param {number} request.pageSize
* Requested page size.
Expand Down Expand Up @@ -2633,11 +2636,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
*
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
* @param {number} request.pageSize
* Requested page size.
Expand Down Expand Up @@ -2692,11 +2695,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
*
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
* @param {number} request.pageSize
* Requested page size.
Expand Down
27 changes: 15 additions & 12 deletions packages/google-cloud-automl/src/v1beta1/auto_ml_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2746,10 +2746,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
*
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
* @param {number} request.pageSize
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
Expand Down Expand Up @@ -2856,10 +2857,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
*
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
* @param {number} request.pageSize
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
Expand Down Expand Up @@ -2914,10 +2916,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `dataset_metadata` - for existence of the case (e.g.
* image_classification_dataset_metadata:*). Some examples of using the filter are:
* `image_classification_dataset_metadata:*`). Some examples of
* using the filter are:
*
* * `translation_dataset_metadata:*` --> The dataset has
* translation_dataset_metadata.
* `translation_dataset_metadata`.
* @param {number} request.pageSize
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
Expand Down Expand Up @@ -3397,11 +3400,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
*
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
* @param {number} request.pageSize
* Requested page size.
Expand Down Expand Up @@ -3502,11 +3505,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
*
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
* @param {number} request.pageSize
* Requested page size.
Expand Down Expand Up @@ -3561,11 +3564,11 @@ export class AutoMlClient {
* An expression for filtering the results of the request.
*
* * `model_metadata` - for existence of the case (e.g.
* video_classification_model_metadata:*).
* `video_classification_model_metadata:*`).
* * `dataset_id` - for = or !=. Some examples of using the filter are:
*
* * `image_classification_model_metadata:*` --> The model has
* image_classification_model_metadata.
* `image_classification_model_metadata`.
* * `dataset_id=5` --> The model was created from a dataset with ID 5.
* @param {number} request.pageSize
* Requested page size.
Expand Down

0 comments on commit ec83db6

Please sign in to comment.