|
3173 | 3173 | }
|
3174 | 3174 | }
|
3175 | 3175 | },
|
3176 |
| - "revision": "20240528", |
| 3176 | + "revision": "20240701", |
3177 | 3177 | "rootUrl": "https://vmwareengine.googleapis.com/",
|
3178 | 3178 | "schemas": {
|
3179 | 3179 | "AuditConfig": {
|
|
3224 | 3224 | },
|
3225 | 3225 | "type": "object"
|
3226 | 3226 | },
|
| 3227 | + "AutoscalingPolicy": { |
| 3228 | + "description": "Autoscaling policy describes the behavior of the autoscaling with respect to the resource utilization. The scale-out operation is initiated if the utilization exceeds ANY of the respective thresholds. The scale-in operation is initiated if the utilization is below ALL of the respective thresholds.", |
| 3229 | + "id": "AutoscalingPolicy", |
| 3230 | + "properties": { |
| 3231 | + "consumedMemoryThresholds": { |
| 3232 | + "$ref": "Thresholds", |
| 3233 | + "description": "Optional. Utilization thresholds pertaining to amount of consumed memory." |
| 3234 | + }, |
| 3235 | + "cpuThresholds": { |
| 3236 | + "$ref": "Thresholds", |
| 3237 | + "description": "Optional. Utilization thresholds pertaining to CPU utilization." |
| 3238 | + }, |
| 3239 | + "grantedMemoryThresholds": { |
| 3240 | + "$ref": "Thresholds", |
| 3241 | + "description": "Optional. Utilization thresholds pertaining to amount of granted memory." |
| 3242 | + }, |
| 3243 | + "nodeTypeId": { |
| 3244 | + "description": "Required. The canonical identifier of the node type to add or remove. Corresponds to the `NodeType`.", |
| 3245 | + "type": "string" |
| 3246 | + }, |
| 3247 | + "scaleOutSize": { |
| 3248 | + "description": "Required. Number of nodes to add to a cluster during a scale-out operation. Must be divisible by 2 for stretched clusters. During a scale-in operation only one node (or 2 for stretched clusters) are removed in a single iteration.", |
| 3249 | + "format": "int32", |
| 3250 | + "type": "integer" |
| 3251 | + }, |
| 3252 | + "storageThresholds": { |
| 3253 | + "$ref": "Thresholds", |
| 3254 | + "description": "Optional. Utilization thresholds pertaining to amount of consumed storage." |
| 3255 | + } |
| 3256 | + }, |
| 3257 | + "type": "object" |
| 3258 | + }, |
| 3259 | + "AutoscalingSettings": { |
| 3260 | + "description": "Autoscaling settings define the rules used by VMware Engine to automatically scale-out and scale-in the clusters in a private cloud.", |
| 3261 | + "id": "AutoscalingSettings", |
| 3262 | + "properties": { |
| 3263 | + "autoscalingPolicies": { |
| 3264 | + "additionalProperties": { |
| 3265 | + "$ref": "AutoscalingPolicy" |
| 3266 | + }, |
| 3267 | + "description": "Required. The map with autoscaling policies applied to the cluster. The key is the identifier of the policy. It must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) Currently there map must contain only one element that describes the autoscaling policy for compute nodes.", |
| 3268 | + "type": "object" |
| 3269 | + }, |
| 3270 | + "coolDownPeriod": { |
| 3271 | + "description": "Optional. The minimum duration between consecutive autoscale operations. It starts once addition or removal of nodes is fully completed. Defaults to 30 minutes if not specified. Cool down period must be in whole minutes (for example, 30, 31, 50, 180 minutes).", |
| 3272 | + "format": "google-duration", |
| 3273 | + "type": "string" |
| 3274 | + }, |
| 3275 | + "maxClusterNodeCount": { |
| 3276 | + "description": "Optional. Maximum number of nodes of any type in a cluster. If not specified the default limits apply.", |
| 3277 | + "format": "int32", |
| 3278 | + "type": "integer" |
| 3279 | + }, |
| 3280 | + "minClusterNodeCount": { |
| 3281 | + "description": "Optional. Minimum number of nodes of any type in a cluster. If not specified the default limits apply.", |
| 3282 | + "format": "int32", |
| 3283 | + "type": "integer" |
| 3284 | + } |
| 3285 | + }, |
| 3286 | + "type": "object" |
| 3287 | + }, |
3227 | 3288 | "Binding": {
|
3228 | 3289 | "description": "Associates `members`, or principals, with a `role`.",
|
3229 | 3290 | "id": "Binding",
|
|
3250 | 3311 | "description": "A cluster in a private cloud.",
|
3251 | 3312 | "id": "Cluster",
|
3252 | 3313 | "properties": {
|
| 3314 | + "autoscalingSettings": { |
| 3315 | + "$ref": "AutoscalingSettings", |
| 3316 | + "description": "Optional. Configuration of the autoscaling applied to this cluster." |
| 3317 | + }, |
3253 | 3318 | "createTime": {
|
3254 | 3319 | "description": "Output only. Creation time of this resource.",
|
3255 | 3320 | "format": "google-datetime",
|
|
5382 | 5447 | },
|
5383 | 5448 | "type": "object"
|
5384 | 5449 | },
|
| 5450 | + "Thresholds": { |
| 5451 | + "description": "Thresholds define the utilization of resources triggering scale-out and scale-in operations.", |
| 5452 | + "id": "Thresholds", |
| 5453 | + "properties": { |
| 5454 | + "scaleIn": { |
| 5455 | + "description": "Required. The utilization triggering the scale-in operation in percent.", |
| 5456 | + "format": "int32", |
| 5457 | + "type": "integer" |
| 5458 | + }, |
| 5459 | + "scaleOut": { |
| 5460 | + "description": "Required. The utilization triggering the scale-out operation in percent.", |
| 5461 | + "format": "int32", |
| 5462 | + "type": "integer" |
| 5463 | + } |
| 5464 | + }, |
| 5465 | + "type": "object" |
| 5466 | + }, |
5385 | 5467 | "UndeletePrivateCloudRequest": {
|
5386 | 5468 | "description": "Request message for VmwareEngine.UndeletePrivateCloud",
|
5387 | 5469 | "id": "UndeletePrivateCloudRequest",
|
|
0 commit comments