Skip to content

Commit

Permalink
feat(container): update the api
Browse files Browse the repository at this point in the history
#### container:v1beta1

The following keys were added:
- schemas.ClusterUpdate.properties.desiredStackType.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Dec 20, 2022
1 parent bba3627 commit 98d6112
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
Expand Up @@ -3540,6 +3540,7 @@ <h3>Method Details</h3>
&quot;desiredShieldedNodes&quot;: { # Configuration of Shielded Nodes feature. # Configuration for Shielded Nodes.
&quot;enabled&quot;: True or False, # Whether Shielded Nodes features are enabled on all nodes in this cluster.
},
&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.
&quot;desiredTpuConfig&quot;: { # Configuration for Cloud TPU. # The desired Cloud TPU configuration.
&quot;enabled&quot;: True or False, # Whether Cloud TPU integration is enabled or not.
&quot;ipv4CidrBlock&quot;: &quot;A String&quot;, # IPv4 CIDR block reserved for Cloud TPU in the VPC.
Expand Down
1 change: 1 addition & 0 deletions docs/dyn/container_v1beta1.projects.zones.clusters.html
Expand Up @@ -3601,6 +3601,7 @@ <h3>Method Details</h3>
&quot;desiredShieldedNodes&quot;: { # Configuration of Shielded Nodes feature. # Configuration for Shielded Nodes.
&quot;enabled&quot;: True or False, # Whether Shielded Nodes features are enabled on all nodes in this cluster.
},
&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.
&quot;desiredTpuConfig&quot;: { # Configuration for Cloud TPU. # The desired Cloud TPU configuration.
&quot;enabled&quot;: True or False, # Whether Cloud TPU integration is enabled or not.
&quot;ipv4CidrBlock&quot;: &quot;A String&quot;, # IPv4 CIDR block reserved for Cloud TPU in the VPC.
Expand Down
Expand Up @@ -2487,7 +2487,7 @@
}
}
},
"revision": "20221110",
"revision": "20221114",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down
16 changes: 15 additions & 1 deletion googleapiclient/discovery_cache/documents/container.v1beta1.json
Expand Up @@ -2512,7 +2512,7 @@
}
}
},
"revision": "20221031",
"revision": "20221114",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -3480,6 +3480,20 @@
"$ref": "ShieldedNodes",
"description": "Configuration for Shielded Nodes."
},
"desiredStackType": {
"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.",
"enum": [
"STACK_TYPE_UNSPECIFIED",
"IPV4",
"IPV4_IPV6"
],
"enumDescriptions": [
"By default, the clusters will be IPV4 only",
"The value used if the cluster is a IPV4 only",
"The value used if the cluster is a dual stack cluster"
],
"type": "string"
},
"desiredTpuConfig": {
"$ref": "TpuConfig",
"description": "The desired Cloud TPU configuration."
Expand Down

0 comments on commit 98d6112

Please sign in to comment.