Skip to content

Commit

Permalink
fix(clouddeploy): update the API
Browse files Browse the repository at this point in the history
#### clouddeploy:v1

The following keys were changed:
- resources.projects.resources.locations.resources.deliveryPipelines.methods.list.parameters.filter.description
- resources.projects.resources.locations.resources.deliveryPipelines.resources.releases.methods.list.parameters.filter.description
- resources.projects.resources.locations.resources.deliveryPipelines.resources.releases.resources.rollouts.methods.list.parameters.filter.description
- resources.projects.resources.locations.resources.targets.methods.list.parameters.filter.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 1, 2022
1 parent 6bbebc3 commit 47f851d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions discovery/clouddeploy-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
],
"parameters": {
"filter": {
"description": "Filter builds to be returned. See https://google.aip.dev/160 for more details.",
"description": "Filter pipelines to be returned. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -586,7 +586,7 @@
],
"parameters": {
"filter": {
"description": "Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.",
"description": "Optional. Filter releases to be returned. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -732,7 +732,7 @@
],
"parameters": {
"filter": {
"description": "Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.",
"description": "Optional. Filter rollouts to be returned. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1053,7 +1053,7 @@
],
"parameters": {
"filter": {
"description": "Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.",
"description": "Optional. Filter targets to be returned. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1201,7 +1201,7 @@
}
}
},
"revision": "20220302",
"revision": "20220314",
"rootUrl": "https://clouddeploy.googleapis.com/",
"schemas": {
"AnthosCluster": {
Expand Down
16 changes: 8 additions & 8 deletions src/apis/clouddeploy/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2015,7 +2015,7 @@ export namespace clouddeploy_v1 {
*
* // Do the magic
* const res = await clouddeploy.projects.locations.deliveryPipelines.list({
* // Filter builds to be returned. See https://google.aip.dev/160 for more details.
* // Filter pipelines to be returned. See https://google.aip.dev/160 for more details.
* filter: 'placeholder-value',
* // Field to sort by. See https://google.aip.dev/132#ordering for more details.
* orderBy: 'placeholder-value',
Expand Down Expand Up @@ -2657,7 +2657,7 @@ export namespace clouddeploy_v1 {
export interface Params$Resource$Projects$Locations$Deliverypipelines$List
extends StandardParameters {
/**
* Filter builds to be returned. See https://google.aip.dev/160 for more details.
* Filter pipelines to be returned. See https://google.aip.dev/160 for more details.
*/
filter?: string;
/**
Expand Down Expand Up @@ -3081,7 +3081,7 @@ export namespace clouddeploy_v1 {
* // Do the magic
* const res =
* await clouddeploy.projects.locations.deliveryPipelines.releases.list({
* // Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.
* // Optional. Filter releases to be returned. See https://google.aip.dev/160 for more details.
* filter: 'placeholder-value',
* // Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
* orderBy: 'placeholder-value',
Expand Down Expand Up @@ -3235,7 +3235,7 @@ export namespace clouddeploy_v1 {
export interface Params$Resource$Projects$Locations$Deliverypipelines$Releases$List
extends StandardParameters {
/**
* Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.
* Optional. Filter releases to be returned. See https://google.aip.dev/160 for more details.
*/
filter?: string;
/**
Expand Down Expand Up @@ -3751,7 +3751,7 @@ export namespace clouddeploy_v1 {
* const res =
* await clouddeploy.projects.locations.deliveryPipelines.releases.rollouts.list(
* {
* // Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.
* // Optional. Filter rollouts to be returned. See https://google.aip.dev/160 for more details.
* filter: 'placeholder-value',
* // Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
* orderBy: 'placeholder-value',
Expand Down Expand Up @@ -3918,7 +3918,7 @@ export namespace clouddeploy_v1 {
export interface Params$Resource$Projects$Locations$Deliverypipelines$Releases$Rollouts$List
extends StandardParameters {
/**
* Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.
* Optional. Filter rollouts to be returned. See https://google.aip.dev/160 for more details.
*/
filter?: string;
/**
Expand Down Expand Up @@ -5119,7 +5119,7 @@ export namespace clouddeploy_v1 {
*
* // Do the magic
* const res = await clouddeploy.projects.locations.targets.list({
* // Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.
* // Optional. Filter targets to be returned. See https://google.aip.dev/160 for more details.
* filter: 'placeholder-value',
* // Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
* orderBy: 'placeholder-value',
Expand Down Expand Up @@ -5747,7 +5747,7 @@ export namespace clouddeploy_v1 {
export interface Params$Resource$Projects$Locations$Targets$List
extends StandardParameters {
/**
* Optional. Filter builds to be returned. See https://google.aip.dev/160 for more details.
* Optional. Filter targets to be returned. See https://google.aip.dev/160 for more details.
*/
filter?: string;
/**
Expand Down

0 comments on commit 47f851d

Please sign in to comment.