Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 98d6112

Browse files
committedDec 20, 2022
feat(container): update the api
#### container:v1beta1 The following keys were added: - schemas.ClusterUpdate.properties.desiredStackType.type (Total Keys: 1)
1 parent bba3627 commit 98d6112

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed
 

‎docs/dyn/container_v1beta1.projects.locations.clusters.html

+1
Original file line numberDiff line numberDiff line change
@@ -3540,6 +3540,7 @@ <h3>Method Details</h3>
35403540
&quot;desiredShieldedNodes&quot;: { # Configuration of Shielded Nodes feature. # Configuration for Shielded Nodes.
35413541
&quot;enabled&quot;: True or False, # Whether Shielded Nodes features are enabled on all nodes in this cluster.
35423542
},
3543+
&quot;desiredStackType&quot;: &quot;A String&quot;, # The desired stack type of the cluster. If a stack type is provided and does not match the current stack type of the cluster, update will attempt to change the stack type to the new type.
35433544
&quot;desiredTpuConfig&quot;: { # Configuration for Cloud TPU. # The desired Cloud TPU configuration.
35443545
&quot;enabled&quot;: True or False, # Whether Cloud TPU integration is enabled or not.
35453546
&quot;ipv4CidrBlock&quot;: &quot;A String&quot;, # IPv4 CIDR block reserved for Cloud TPU in the VPC.

‎docs/dyn/container_v1beta1.projects.zones.clusters.html

+1
Original file line numberDiff line numberDiff line change
@@ -3601,6 +3601,7 @@ <h3>Method Details</h3>
36013601
&quot;desiredShieldedNodes&quot;: { # Configuration of Shielded Nodes feature. # Configuration for Shielded Nodes.
36023602
&quot;enabled&quot;: True or False, # Whether Shielded Nodes features are enabled on all nodes in this cluster.
36033603
},
3604+
&quot;desiredStackType&quot;: &quot;A String&quot;, # The desired stack type of the cluster. If a stack type is provided and does not match the current stack type of the cluster, update will attempt to change the stack type to the new type.
36043605
&quot;desiredTpuConfig&quot;: { # Configuration for Cloud TPU. # The desired Cloud TPU configuration.
36053606
&quot;enabled&quot;: True or False, # Whether Cloud TPU integration is enabled or not.
36063607
&quot;ipv4CidrBlock&quot;: &quot;A String&quot;, # IPv4 CIDR block reserved for Cloud TPU in the VPC.

‎googleapiclient/discovery_cache/documents/container.v1.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2487,7 +2487,7 @@
24872487
}
24882488
}
24892489
},
2490-
"revision": "20221110",
2490+
"revision": "20221114",
24912491
"rootUrl": "https://container.googleapis.com/",
24922492
"schemas": {
24932493
"AcceleratorConfig": {

‎googleapiclient/discovery_cache/documents/container.v1beta1.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,7 @@
25122512
}
25132513
}
25142514
},
2515-
"revision": "20221031",
2515+
"revision": "20221114",
25162516
"rootUrl": "https://container.googleapis.com/",
25172517
"schemas": {
25182518
"AcceleratorConfig": {
@@ -3480,6 +3480,20 @@
34803480
"$ref": "ShieldedNodes",
34813481
"description": "Configuration for Shielded Nodes."
34823482
},
3483+
"desiredStackType": {
3484+
"description": "The desired stack type of the cluster. If a stack type is provided and does not match the current stack type of the cluster, update will attempt to change the stack type to the new type.",
3485+
"enum": [
3486+
"STACK_TYPE_UNSPECIFIED",
3487+
"IPV4",
3488+
"IPV4_IPV6"
3489+
],
3490+
"enumDescriptions": [
3491+
"By default, the clusters will be IPV4 only",
3492+
"The value used if the cluster is a IPV4 only",
3493+
"The value used if the cluster is a dual stack cluster"
3494+
],
3495+
"type": "string"
3496+
},
34833497
"desiredTpuConfig": {
34843498
"$ref": "TpuConfig",
34853499
"description": "The desired Cloud TPU configuration."

0 commit comments

Comments
 (0)
Please sign in to comment.