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 05c853a

Browse files
committedDec 13, 2022
feat(container): update the api
#### container:v1 The following keys were added: - schemas.ClusterUpdate.properties.desiredStackType.type (Total Keys: 1)
1 parent 6e512d6 commit 05c853a

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed
 

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

+1
Original file line numberDiff line numberDiff line change
@@ -3356,6 +3356,7 @@ <h3>Method Details</h3>
33563356
&quot;desiredShieldedNodes&quot;: { # Configuration of Shielded Nodes feature. # Configuration for Shielded Nodes.
33573357
&quot;enabled&quot;: True or False, # Whether Shielded Nodes features are enabled on all nodes in this cluster.
33583358
},
3359+
&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.
33593360
&quot;desiredVerticalPodAutoscaling&quot;: { # VerticalPodAutoscaling contains global, per-cluster information required by Vertical Pod Autoscaler to automatically adjust the resources of pods controlled by it. # Cluster-level Vertical Pod Autoscaling configuration.
33603361
&quot;enabled&quot;: True or False, # Enables vertical pod autoscaling.
33613362
},

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

+1
Original file line numberDiff line numberDiff line change
@@ -3417,6 +3417,7 @@ <h3>Method Details</h3>
34173417
&quot;desiredShieldedNodes&quot;: { # Configuration of Shielded Nodes feature. # Configuration for Shielded Nodes.
34183418
&quot;enabled&quot;: True or False, # Whether Shielded Nodes features are enabled on all nodes in this cluster.
34193419
},
3420+
&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.
34203421
&quot;desiredVerticalPodAutoscaling&quot;: { # VerticalPodAutoscaling contains global, per-cluster information required by Vertical Pod Autoscaler to automatically adjust the resources of pods controlled by it. # Cluster-level Vertical Pod Autoscaling configuration.
34213422
&quot;enabled&quot;: True or False, # Enables vertical pod autoscaling.
34223423
},

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

+15-1
Original file line numberDiff line numberDiff line change
@@ -2487,7 +2487,7 @@
24872487
}
24882488
}
24892489
},
2490-
"revision": "20221108",
2490+
"revision": "20221110",
24912491
"rootUrl": "https://container.googleapis.com/",
24922492
"schemas": {
24932493
"AcceleratorConfig": {
@@ -3352,6 +3352,20 @@
33523352
"$ref": "ShieldedNodes",
33533353
"description": "Configuration for Shielded Nodes."
33543354
},
3355+
"desiredStackType": {
3356+
"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.",
3357+
"enum": [
3358+
"STACK_TYPE_UNSPECIFIED",
3359+
"IPV4",
3360+
"IPV4_IPV6"
3361+
],
3362+
"enumDescriptions": [
3363+
"Default value, will be defaulted as IPV4 only",
3364+
"Cluster is IPV4 only",
3365+
"Cluster can use both IPv4 and IPv6"
3366+
],
3367+
"type": "string"
3368+
},
33553369
"desiredVerticalPodAutoscaling": {
33563370
"$ref": "VerticalPodAutoscaling",
33573371
"description": "Cluster-level Vertical Pod Autoscaling configuration."

0 commit comments

Comments
 (0)
Please sign in to comment.