Skip to content

Commit 3f07a5c

Browse files
feat(workflows): update the API
#### workflows:v1beta The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type #### workflows:v1 The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type
1 parent 03830cd commit 3f07a5c

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

discovery/workflows-v1.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -485,7 +491,7 @@
485491
}
486492
}
487493
},
488-
"revision": "20250212",
494+
"revision": "20250409",
489495
"rootUrl": "https://workflows.googleapis.com/",
490496
"schemas": {
491497
"Empty": {

discovery/workflows-v1beta.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -444,7 +450,7 @@
444450
}
445451
}
446452
},
447-
"revision": "20230802",
453+
"revision": "20250409",
448454
"rootUrl": "https://workflows.googleapis.com/",
449455
"schemas": {
450456
"Empty": {

src/apis/workflows/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,10 @@ export namespace workflows_v1 {
580580
}
581581
export interface Params$Resource$Projects$Locations$List
582582
extends StandardParameters {
583+
/**
584+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
585+
*/
586+
extraLocationTypes?: string[];
583587
/**
584588
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
585589
*/

src/apis/workflows/v1beta.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,10 @@ export namespace workflows_v1beta {
518518
}
519519
export interface Params$Resource$Projects$Locations$List
520520
extends StandardParameters {
521+
/**
522+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
523+
*/
524+
extraLocationTypes?: string[];
521525
/**
522526
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
523527
*/

0 commit comments

Comments
 (0)