Skip to content

Commit

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

The following keys were added:
- schemas.ClusterUpdate.properties.desiredStackType.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Dec 13, 2022
1 parent 6e512d6 commit 05c853a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/dyn/container_v1.projects.locations.clusters.html
Expand Up @@ -3356,6 +3356,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;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.
&quot;enabled&quot;: True or False, # Enables vertical pod autoscaling.
},
Expand Down
1 change: 1 addition & 0 deletions docs/dyn/container_v1.projects.zones.clusters.html
Expand Up @@ -3417,6 +3417,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;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.
&quot;enabled&quot;: True or False, # Enables vertical pod autoscaling.
},
Expand Down
16 changes: 15 additions & 1 deletion googleapiclient/discovery_cache/documents/container.v1.json
Expand Up @@ -2487,7 +2487,7 @@
}
}
},
"revision": "20221108",
"revision": "20221110",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -3352,6 +3352,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": [
"Default value, will be defaulted as IPV4 only",
"Cluster is IPV4 only",
"Cluster can use both IPv4 and IPv6"
],
"type": "string"
},
"desiredVerticalPodAutoscaling": {
"$ref": "VerticalPodAutoscaling",
"description": "Cluster-level Vertical Pod Autoscaling configuration."
Expand Down

0 comments on commit 05c853a

Please sign in to comment.