Skip to content

Commit

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

The following keys were changed:
- schemas.NodePoolAutoscaling.properties.maxNodeCount.description
- schemas.NodePoolAutoscaling.properties.minNodeCount.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Sep 28, 2021
1 parent b75f36c commit 4fdb22c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/container-v1beta1.json
Expand Up @@ -2484,7 +2484,7 @@
}
}
},
"revision": "20210820",
"revision": "20210910",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -4652,12 +4652,12 @@
"type": "boolean"
},
"maxNodeCount": {
"description": "Maximum number of nodes in the NodePool. Must be >= min_node_count. There has to be enough quota to scale up the cluster.",
"description": "Maximum number of nodes for one location in the NodePool. Must be >= min_node_count. There has to be enough quota to scale up the cluster.",
"format": "int32",
"type": "integer"
},
"minNodeCount": {
"description": "Minimum number of nodes in the NodePool. Must be >= 1 and <= max_node_count.",
"description": "Minimum number of nodes for one location in the NodePool. Must be >= 1 and <= max_node_count.",
"format": "int32",
"type": "integer"
}
Expand Down
4 changes: 2 additions & 2 deletions src/apis/container/v1beta1.ts
Expand Up @@ -1816,11 +1816,11 @@ export namespace container_v1beta1 {
*/
enabled?: boolean | null;
/**
* Maximum number of nodes in the NodePool. Must be \>= min_node_count. There has to be enough quota to scale up the cluster.
* Maximum number of nodes for one location in the NodePool. Must be \>= min_node_count. There has to be enough quota to scale up the cluster.
*/
maxNodeCount?: number | null;
/**
* Minimum number of nodes in the NodePool. Must be \>= 1 and <= max_node_count.
* Minimum number of nodes for one location in the NodePool. Must be \>= 1 and <= max_node_count.
*/
minNodeCount?: number | null;
}
Expand Down

0 comments on commit 4fdb22c

Please sign in to comment.