Skip to content

Commit 99db82a

Browse files
feat(cloudscheduler): update the API
#### cloudscheduler:v1beta1 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 #### cloudscheduler: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 55a1ada commit 99db82a

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

‎discovery/cloudscheduler-v1.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,12 @@
254254
"name"
255255
],
256256
"parameters": {
257+
"extraLocationTypes": {
258+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
259+
"location": "query",
260+
"repeated": true,
261+
"type": "string"
262+
},
257263
"filter": {
258264
"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).",
259265
"location": "query",
@@ -529,7 +535,7 @@
529535
}
530536
}
531537
},
532-
"revision": "20241203",
538+
"revision": "20250411",
533539
"rootUrl": "https://cloudscheduler.googleapis.com/",
534540
"schemas": {
535541
"AppEngineHttpTarget": {

‎discovery/cloudscheduler-v1beta1.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",
@@ -433,7 +439,7 @@
433439
}
434440
}
435441
},
436-
"revision": "20241113",
442+
"revision": "20250411",
437443
"rootUrl": "https://cloudscheduler.googleapis.com/",
438444
"schemas": {
439445
"AppEngineHttpTarget": {

‎src/apis/cloudscheduler/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,10 @@ export namespace cloudscheduler_v1 {
11201120
}
11211121
export interface Params$Resource$Projects$Locations$List
11221122
extends StandardParameters {
1123+
/**
1124+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
1125+
*/
1126+
extraLocationTypes?: string[];
11231127
/**
11241128
* 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).
11251129
*/

‎src/apis/cloudscheduler/v1beta1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -687,6 +687,10 @@ export namespace cloudscheduler_v1beta1 {
687687
}
688688
export interface Params$Resource$Projects$Locations$List
689689
extends StandardParameters {
690+
/**
691+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
692+
*/
693+
extraLocationTypes?: string[];
690694
/**
691695
* 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).
692696
*/

0 commit comments

Comments
 (0)