Skip to content

Commit 6e81af3

Browse files
feat(gkeonprem): update the API
#### gkeonprem: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 - schemas.VmwareAdminCluster.properties.enableAdvancedCluster.description - schemas.VmwareAdminCluster.properties.enableAdvancedCluster.type - schemas.VmwareCluster.properties.enableAdvancedCluster.description - schemas.VmwareCluster.properties.enableAdvancedCluster.type
1 parent bce8977 commit 6e81af3

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

‎discovery/gkeonprem-v1.json

Lines changed: 15 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",
@@ -3094,7 +3100,7 @@
30943100
}
30953101
}
30963102
},
3097-
"revision": "20250224",
3103+
"revision": "20250326",
30983104
"rootUrl": "https://gkeonprem.googleapis.com/",
30993105
"schemas": {
31003106
"Authorization": {
@@ -5619,6 +5625,10 @@
56195625
"description": "A human readable description of this VMware admin cluster.",
56205626
"type": "string"
56215627
},
5628+
"enableAdvancedCluster": {
5629+
"description": "Enable advanced cluster.",
5630+
"type": "boolean"
5631+
},
56225632
"endpoint": {
56235633
"description": "Output only. The DNS name of VMware admin cluster's API server.",
56245634
"readOnly": true,
@@ -6094,6 +6104,10 @@
60946104
"description": "Disable bundled ingress.",
60956105
"type": "boolean"
60966106
},
6107+
"enableAdvancedCluster": {
6108+
"description": "Enable advanced cluster.",
6109+
"type": "boolean"
6110+
},
60976111
"enableControlPlaneV2": {
60986112
"description": "Enable control plane V2. Default to false.",
60996113
"type": "boolean"

‎src/apis/gkeonprem/v1.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1924,6 +1924,10 @@ export namespace gkeonprem_v1 {
19241924
* A human readable description of this VMware admin cluster.
19251925
*/
19261926
description?: string | null;
1927+
/**
1928+
* Enable advanced cluster.
1929+
*/
1930+
enableAdvancedCluster?: boolean | null;
19271931
/**
19281932
* Output only. The DNS name of VMware admin cluster's API server.
19291933
*/
@@ -2308,6 +2312,10 @@ export namespace gkeonprem_v1 {
23082312
* Disable bundled ingress.
23092313
*/
23102314
disableBundledIngress?: boolean | null;
2315+
/**
2316+
* Enable advanced cluster.
2317+
*/
2318+
enableAdvancedCluster?: boolean | null;
23112319
/**
23122320
* Enable control plane V2. Default to false.
23132321
*/
@@ -3132,6 +3140,10 @@ export namespace gkeonprem_v1 {
31323140
}
31333141
export interface Params$Resource$Projects$Locations$List
31343142
extends StandardParameters {
3143+
/**
3144+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
3145+
*/
3146+
extraLocationTypes?: string[];
31353147
/**
31363148
* 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).
31373149
*/

0 commit comments

Comments
 (0)