Skip to content

Commit e0d43cf

Browse files
feat(servicedirectory): update the API
#### servicedirectory: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 #### servicedirectory: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 71aa0ef commit e0d43cf

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

‎discovery/servicedirectory-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",
@@ -883,7 +889,7 @@
883889
}
884890
}
885891
},
886-
"revision": "20240121",
892+
"revision": "20250321",
887893
"rootUrl": "https://servicedirectory.googleapis.com/",
888894
"schemas": {
889895
"Binding": {

‎discovery/servicedirectory-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",
@@ -971,7 +977,7 @@
971977
}
972978
}
973979
},
974-
"revision": "20240420",
980+
"revision": "20250321",
975981
"rootUrl": "https://servicedirectory.googleapis.com/",
976982
"schemas": {
977983
"Binding": {

‎src/apis/servicedirectory/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,10 @@ export namespace servicedirectory_v1 {
601601
}
602602
export interface Params$Resource$Projects$Locations$List
603603
extends StandardParameters {
604+
/**
605+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
606+
*/
607+
extraLocationTypes?: string[];
604608
/**
605609
* 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).
606610
*/

‎src/apis/servicedirectory/v1beta1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,10 @@ export namespace servicedirectory_v1beta1 {
625625
}
626626
export interface Params$Resource$Projects$Locations$List
627627
extends StandardParameters {
628+
/**
629+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
630+
*/
631+
extraLocationTypes?: string[];
628632
/**
629633
* 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).
630634
*/

0 commit comments

Comments
 (0)