- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- IAM Permissions
- Try it!
Updates a managed instance group using the information that you specify in the request. This operation is marked as DONE when the group is patched even if the instances in the group are still in the process of being patched. You must separately verify the status of the individual instances with the listmanagedinstances method. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.
If you update your group to specify a new template or instance configuration, it's possible that your intended specification for each VM in the group is different from the current state of that VM. To learn how to apply an updated configuration to the VMs in a MIG, see Updating instances in a MIG.
HTTP request
PATCH https://compute.googleapis.com/compute/beta/projects/{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}
The URL uses gRPC Transcoding syntax. To know more about valid error responses that can be thrown by this HTTP request, please refer to the service error catalog
Path parameters
| Parameters | |
|---|---|
project |
Project ID for this request. |
region |
Name of the region scoping this request. |
instanceGroupManager |
The name of the instance group manager. Authorization requires one or more of the following IAM permissions on the specified resource
|
Query parameters
| Parameters | |
|---|---|
requestId |
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( |
Request body
The request body contains data with the following structure:
| JSON representation |
|---|
{ "kind": string, "id": string, "creationTimestamp": string, "name": string, "description": string, "zone": string, "region": string, "distributionPolicy": { "zones": [ { "zone": string } ], "targetShape": enum }, "instanceTemplate": string, "versions": [ { "name": string, "instanceTemplate": string, "targetSize": { "fixed": integer, "percent": integer, "calculated": integer } } ], "allInstancesConfig": { "properties": { "metadata": { string: string, ... }, "labels": { string: string, ... } } }, "instanceGroup": string, "targetPools": [ string ], "baseInstanceName": string, "fingerprint": string, "currentActions": { "none": integer, "creating": integer, "creatingWithoutRetries": integer, "verifying": integer, "recreating": integer, "deleting": integer, "abandoning": integer, "restarting": integer, "refreshing": integer, "suspending": integer, "resuming": integer, "stopping": integer, "starting": integer }, "status": { "isStable": boolean, "allInstancesConfig": { "effective": boolean, "currentRevision": string }, "versionTarget": { "isReached": boolean }, "stateful": { "isStateful": boolean, "hasStatefulConfig": boolean, "perInstanceConfigs": { "allEffective": boolean } }, "autoscaler": string, "bulkInstanceOperation": { "inProgress": boolean, "lastProgressCheck": { "timestamp": string, "error": { "errors": [ { "code": string, "location": string, "message": string, "errorDetails": [ { // Union field |
| Fields | |
|---|---|
kind |
[Output Only] The resource type, which is always |
id |
[Output Only] A unique identifier for this resource type. The server generates this identifier. |
creationTimestamp |
[Output Only] The creation timestamp for this managed instance group in RFC3339 text format. |
name |
The name of the managed instance group. The name must be 1-63 characters long, and comply with RFC1035. |
description |
An optional description of this resource. |
zone |
[Output Only] The URL of a zone where the managed instance group is located (for zonal resources). |
region |
[Output Only] The URL of the region where the managed instance group resides (for regional resources). |
distributionPolicy |
Policy specifying the intended distribution of managed instances across zones in a regional managed instance group. |
distributionPolicy.zones[] |
Zones where the regional managed instance group will create and manage its instances. |
distributionPolicy.zones[].zone |
The URL of the zone. The zone must exist in the region where the managed instance group is located. |
distributionPolicy.targetShape |
The distribution shape to which the group converges either proactively or on resize events (depending on the value set in |
instanceTemplate |
The URL of the instance template that is specified for this managed instance group. The group uses this template to create all new instances in the managed instance group. The templates for existing instances in the group do not change unless you run Authorization requires one or more of the following IAM permissions on the specified resource
|
versions[] |
Specifies the instance templates used by this managed instance group to create instances. Each version is defined by an |
versions[].name |
Name of the version. Unique among all versions in the scope of this managed instance group. |
versions[].instanceTemplate |
The URL of the instance template that is specified for this managed instance group. The group uses this template to create new instances in the managed instance group until the Authorization requires one or more of the following IAM permissions on the specified resource
|
versions[].targetSize |
Specifies the intended number of instances to be created from the
version. Read Starting a canary update for more information.
|
versions[].targetSize.fixed |
Specifies a fixed number of VM instances. This must be a positive integer. |
versions[].targetSize.percent |
Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify |
versions[].targetSize.calculated |
[Output Only] Absolute value of VM instances calculated based on the specific mode.
|
allInstancesConfig |
Specifies configuration that overrides the instance template configuration for the group. |
allInstancesConfig.properties |
Properties to set on all instances in the group. You can add or modify properties using the |
allInstancesConfig.properties.metadata |
The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata. |
allInstancesConfig.properties.labels |
The label key-value pairs that you want to patch onto the instance. |
instanceGroup |
[Output Only] The URL of the Instance Group resource. |
targetPools[] |
The URLs for all TargetPool resources to which instances in the Authorization requires the following IAM permission on the specified resource
|
baseInstanceName |
The base instance name is a prefix that you want to attach to the names of all VMs in a MIG. The maximum character length is 58 and the name must comply with RFC1035 format. When a VM is created in the group, the MIG appends a hyphen and a random four-character string to the base instance name. If you want the MIG to assign sequential numbers instead of a random string, then end the base instance name with a hyphen followed by one or more hash symbols. The hash symbols indicate the number of digits. For example, a base instance name of "vm-###" results in "vm-001" as a VM name. @pattern [a-z](([-a-z0-9]{0,57})|([-a-z0-9]{0,51}-#{1,10}(\[[0-9]{1,10}\])?)) |
fingerprint |
Fingerprint of this resource. This field may be used in optimistic locking. It will be ignored when inserting an InstanceGroupManager. An up-to-date fingerprint must be provided in order to update the InstanceGroupManager, otherwise the request will fail with error To see the latest fingerprint, make a A base64-encoded string. |
currentActions |
[Output Only] The list of instance actions and the number of instances in this managed instance group that are scheduled for each of those actions. |
currentActions.none |
[Output Only] The number of instances in the managed instance group that are running and have no scheduled actions. |
currentActions.creating |
[Output Only] The number of instances in the managed instance group that are scheduled to be created or are currently being created. If the group fails to create any of these instances, it tries again until it creates the instance successfully. If you have disabled creation retries, this field will not be populated; instead, the |
currentActions.creatingWithoutRetries |
[Output Only] The number of instances that the managed instance group will attempt to create. The group attempts to create each instance only once. If the group fails to create any of these instances, it decreases the group's |
currentActions.verifying |
[Output Only] The number of instances in the managed instance group that are being verified. See the |
currentActions.recreating |
[Output Only] The number of instances in the managed instance group that are scheduled to be recreated or are currently being being recreated. Recreating an instance deletes the existing root persistent disk and creates a new disk from the image that is defined in the instance template. |
currentActions.deleting |
[Output Only] The number of instances in the managed instance group that are scheduled to be deleted or are currently being deleted. |
currentActions.abandoning |
[Output Only] The total number of instances in the managed instance group that are scheduled to be abandoned. Abandoning an instance removes it from the managed instance group without deleting it. |
currentActions.restarting |
[Output Only] The number of instances in the managed instance group that are scheduled to be restarted or are currently being restarted. |
currentActions.refreshing |
[Output Only] The number of instances in the managed instance group that are being reconfigured with properties that do not require a restart or a recreate action. For example, setting or removing target pools for the instance. |
currentActions.suspending |
[Output Only] The number of instances in the managed instance group that are scheduled to be suspended or are currently being suspended. |
currentActions.resuming |
[Output Only] The number of instances in the managed instance group that are scheduled to be resumed or are currently being resumed. |
currentActions.stopping |
[Output Only] The number of instances in the managed instance group that are scheduled to be stopped or are currently being stopped. |
currentActions.starting |
[Output Only] The number of instances in the managed instance group that are scheduled to be started or are currently being started. |
status |
[Output Only] The status of this managed instance group. |
status.isStable |
[Output Only] A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified. |
status.allInstancesConfig |
[Output only] Status of all-instances configuration on the group. |
status.allInstancesConfig.effective |
[Output Only] A bit indicating whether this configuration has been applied to all managed instances in the group. |
status.allInstancesConfig.currentRevision |
[Output Only] Current all-instances configuration revision. This value is in RFC3339 text format. |
status.versionTarget |
[Output Only] A status of consistency of Instances' versions with their target version specified by |
status.versionTarget.isReached |
[Output Only] A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by |
status.stateful |
[Output Only] Stateful status of the given Instance Group Manager. |
status.stateful.isStateful |
[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of hasStatefulConfig. |
status.stateful.hasStatefulConfig |
[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. |
status.stateful.perInstanceConfigs |
[Output Only] Status of per-instance configurations on the instances. |
status.stateful.perInstanceConfigs.allEffective |
A bit indicating if all of the group's per-instance configurations (listed in the output of a listPerInstanceConfigs API call) have status |
status.autoscaler |
[Output Only] The URL of the Autoscaler that targets this instance group manager. |
status.bulkInstanceOperation |
[Output Only] The status of bulk instance operation. |
status.bulkInstanceOperation.inProgress |
[Output Only] Informs whether bulk instance operation is in progress. |
status.bulkInstanceOperation.lastProgressCheck |
[Output Only] Information from the last progress check of bulk instance operation. |
status.bulkInstanceOperation.lastProgressCheck.timestamp |
[Output Only] Timestamp of the last progress check of bulk instance operation. Timestamp is in RFC3339 text format. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
status.bulkInstanceOperation.lastProgressCheck.error |
[Output Only] Errors encountered during bulk instance operation. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[] |
[Output Only] The array of errors encountered while processing this operation. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].code |
[Output Only] The error type identifier for this error. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].location |
[Output Only] Indicates the field in the request that caused the error. This property is optional. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].message |
[Output Only] An optional, human-readable error message. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[] |
[Output Only] An optional list of messages that contain the error details. There is a set of defined message types to use for providing details.The syntax depends on the error code. For example, QuotaExceededInfo will have details when the error code is QUOTA_EXCEEDED. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].errorInfo |
|
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].errorInfo.reason |
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors. This should be at most 63 characters and match a regular expression of |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].errorInfo.domain |
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com". If the error is generated by some common infrastructure, the error domain must be a globally unique value that identifies the infrastructure. For Google API infrastructure, the error domain is "googleapis.com". |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].errorInfo.metadatas |
Additional structured details about this error. Keys must match a regular expression of |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo |
|
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo.metricName |
The Compute Engine quota metric name. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo.limitName |
The name of the quota limit. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo.dimensions |
The map holding related quota dimensions. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo.limit |
Current effective quota limit. The limit's unit depends on the quota type or metric. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo.futureLimit |
Future quota limit being rolled out. The limit's unit depends on the quota type or metric. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].quotaInfo.rolloutStatus |
Rollout status of the future quota limit. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].help |
|
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].help.links[] |
URL(s) pointing to additional information on handling the current error. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].help.links[].description |
Describes what the link offers. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].help.links[].url |
The URL of the link. |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].localizedMessage |
|
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].localizedMessage.locale |
The locale used following the specification defined at https://www.rfc-editor.org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX" |
status.bulkInstanceOperation.lastProgressCheck.error.errors[].errorDetails[].localizedMessage.message |
The localized error message in the above locale. |
targetSize |
The target number of running instances for this managed instance group. You can reduce this number by using the instanceGroupManager deleteInstances or abandonInstances methods. Resizing the group also changes this number. |
targetSizePolicy |
The policy that specifies how the MIG creates its VMs to achieve the target size. |
targetSizePolicy.mode |
The mode of target size policy based on which the MIG creates its VMs individually or all at once. |
instanceFlexibilityPolicy |
Instance flexibility allowing MIG to create VMs from multiple types of machines. Instance flexibility configuration on MIG overrides instance template configuration. |
instanceFlexibilityPolicy.instanceSelections[] |
Named instance selections configuring properties that the group will use when creating new VMs. |
instanceFlexibilityPolicy.instanceSelections[].machineTypes[] |
Full machine-type names, e.g. "n1-standard-16". |
instanceFlexibilityPolicy.instanceSelections[].rank |
Preference of this instance selection. Lower number means higher preference. MIG will first try to create a VM based on the machine-type with lowest rank and fallback to next rank based on availability. Machine types and instance selections with the same rank have the same preference. |
instanceFlexibilityPolicy.instanceSelections[].minCpuPlatform |
Name of the minimum CPU platform to be used by this instance selection. e.g. 'Intel Ice Lake'. |
instanceFlexibilityPolicy.instanceSelections[].disks[] |
regionInstanceGroupManagers.list of disks to be attached to the instances created from this selection. |
instanceFlexibilityPolicy.instanceSelections[].disks[].kind |
[Output Only] Type of the resource. Always |
instanceFlexibilityPolicy.instanceSelections[].disks[].type |
Specifies the type of the disk, either |
instanceFlexibilityPolicy.instanceSelections[].disks[].mode |
The mode in which to attach this disk, either |
instanceFlexibilityPolicy.instanceSelections[].disks[].savedState |
For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this field is set to |
instanceFlexibilityPolicy.instanceSelections[].disks[].source |
Specifies a valid partial or full URL to an existing Persistent Disk resource. When creating a new instance boot disk, one of If desired, you can also attach existing non-root persistent disks using this property. This field is only applicable for persistent disks. Note that for InstanceTemplate, specify the disk name for zonal disk, and the URL for regional disk. |
instanceFlexibilityPolicy.instanceSelections[].disks[].deviceName |
Specifies a unique device name of your choice that is reflected into the If not specified, the server chooses a default device name to apply to this disk, in the form |
instanceFlexibilityPolicy.instanceSelections[].disks[].index |
[Output Only] A zero-based index to this disk, where 0 is reserved for the boot disk. If you have many disks attached to an instance, each disk would have a unique index number. |
instanceFlexibilityPolicy.instanceSelections[].disks[].boot |
Indicates that this is a boot disk. The virtual machine will use the first partition of the disk for its root filesystem. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams |
[Input Only] Specifies the parameters for a new disk that will be created alongside the new instance. Use initialization parameters to create boot disks or local SSDs attached to the new instance. This property is mutually exclusive with the |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.diskName |
Specifies the disk name. If not specified, the default is to use the name of the instance. If a disk with the same name already exists in the given region, the existing disk is attached to the new instance and the new disk is not created. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImage |
The source image to create this disk. When creating a new instance boot disk, one of To create a disk with one of the public operating system images, specify the image by its family name. For example, specify
Alternatively, use a specific version of a public operating system image:
To create a disk with a custom image that you created, specify the image name in the following format:
You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with
If the source image is deleted later, this field will not be set. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.diskSizeGb |
Specifies the size of the disk in base-2 GB. The size must be at least 10 GB. If you specify a |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.diskType |
Specifies the disk type to use to create the instance. If not specified, the default is
For a full list of acceptable values, see Persistent disk types. If you specify this field when creating a VM, you can provide either the full or partial URL. For example, the following values are valid:
pd-standard.
|
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImageEncryptionKey |
The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key. InstanceTemplate and InstancePropertiesPatch do not store customer-supplied encryption keys, so you cannot create disks for instances in a managed instance group if the source images are encrypted with your own keys. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImageEncryptionKey.rawKey |
Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0=" |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImageEncryptionKey.rsaEncryptedKey |
Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImageEncryptionKey.kmsKeyName |
The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/ kms_project_id/locations/ region/keyRings/ key_region/cryptoKeys/key "kmsKeyName": "projects/ kms_project_id/locations/ region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1 |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImageEncryptionKey.sha256 |
[Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceImageEncryptionKey.kmsKeyServiceAccount |
The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@ projectId.iam.gserviceaccount.com/ |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.labels |
Labels to apply to this disk. These can be later modified by the |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshot |
The source snapshot to create this disk. When creating a new instance boot disk, one of To create a disk with a snapshot that you created, specify the snapshot name in the following format:
If the source snapshot is deleted later, this field will not be set. Note: You cannot create VMs in bulk using a snapshot as the source. Use an image instead when you create VMs using the bulk insert method. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceInstantSnapshot |
The source instant-snapshot to create this disk. When creating a new instance boot disk, one of To create a disk with a snapshot that you created, specify the snapshot name in the following format:
If the source instant-snapshot is deleted later, this field will not be set. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshotEncryptionKey |
The customer-supplied encryption key of the source snapshot. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshotEncryptionKey.rawKey |
Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0=" |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshotEncryptionKey.rsaEncryptedKey |
Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshotEncryptionKey.kmsKeyName |
The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/ kms_project_id/locations/ region/keyRings/ key_region/cryptoKeys/key "kmsKeyName": "projects/ kms_project_id/locations/ region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1 |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshotEncryptionKey.sha256 |
[Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.sourceSnapshotEncryptionKey.kmsKeyServiceAccount |
The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@ projectId.iam.gserviceaccount.com/ |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.description |
An optional description. Provide this property when creating the disk. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.replicaZones[] |
Required for each regional disk associated with the instance. Specify the URLs of the zones where the disk should be replicated to. You must provide exactly two replica zones, and one zone must be the same as the instance zone. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.guestOsFeatures[] |
A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options. Guest OS features are applied by merging |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.guestOsFeatures[].type |
The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values:
|
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.resourcePolicies[] |
Resource policies applied to this disk for automatic snapshot creations. Specified using the full or partial URL. For instance template, specify only the resource policy name. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.onUpdateAction |
Specifies which action to take on instance update with this disk. Default is to use the existing disk. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.provisionedIops |
Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.multiWriter |
Indicates whether or not the disk can be read/write attached to more than one instance. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.licenses[] |
A list of publicly visible licenses. Reserved for Google's use. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.architecture |
The architecture of the attached disk. Valid values are arm64 or x86_64. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.resourceManagerTags |
Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.provisionedThroughput |
Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must greater than or equal to 1. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.enableConfidentialCompute |
Whether this disk is using confidential compute mode. |
instanceFlexibilityPolicy.instanceSelections[].disks[].initializeParams.storagePool |
The storage pool in which the new disk is created. You can provide this as a partial or full URL to the resource. For example, the following are valid values:
|
instanceFlexibilityPolicy.instanceSelections[].disks[].autoDelete |
Specifies whether the disk will be auto-deleted when the instance is deleted (but not when the disk is detached from the instance). |
instanceFlexibilityPolicy.instanceSelections[].disks[].licenses[] |
[Output Only] Any valid publicly visible licenses. |
instanceFlexibilityPolicy.instanceSelections[].disks[].interface |
Specifies the disk interface to use for attaching this disk, which is either |
instanceFlexibilityPolicy.instanceSelections[].disks[].guestOsFeatures[] |
A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options. |
instanceFlexibilityPolicy.instanceSelections[].disks[].guestOsFeatures[].type |
The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values:
|
instanceFlexibilityPolicy.instanceSelections[].disks[].diskEncryptionKey |
Encrypts or decrypts a disk using a customer-supplied encryption key. If you are creating a new disk, this field encrypts the new disk using an encryption key that you provide. If you are attaching an existing disk that is already encrypted, this field decrypts the disk using the customer-supplied encryption key. If you encrypt a disk using a customer-supplied key, you must provide the same key again when you attempt to use this resource at a later time. For example, you must provide the key when you create a snapshot or an image from the disk or when you attach the disk to a virtual machine instance. If you do not provide an encryption key, then the disk will be encrypted using an automatically generated key and you do not need to provide a key to use the disk later. Note: Instance templates do not store customer-supplied encryption keys, so you cannot use your own keys to encrypt disks in a managed instance group. You cannot create VMs that have disks with customer-supplied keys using the bulk insert method. |
instanceFlexibilityPolicy.instanceSelections[].disks[].diskEncryptionKey.rawKey |
Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0=" |
instanceFlexibilityPolicy.instanceSelections[].disks[].diskEncryptionKey.rsaEncryptedKey |
Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe=="
https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem |
instanceFlexibilityPolicy.instanceSelections[].disks[].diskEncryptionKey.kmsKeyName |
The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/ kms_project_id/locations/ region/keyRings/ key_region/cryptoKeys/key "kmsKeyName": "projects/ kms_project_id/locations/ region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1 |
instanceFlexibilityPolicy.instanceSelections[].disks[].diskEncryptionKey.sha256 |
[Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource. |
instanceFlexibilityPolicy.instanceSelections[].disks[].diskEncryptionKey.kmsKeyServiceAccount |
The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@ projectId.iam.gserviceaccount.com/ |
instanceFlexibilityPolicy.instanceSelections[].disks[].diskSizeGb |
The size of the disk in GB. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState |
[Output Only] shielded vm initial state stored on disk |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.pk |
The Platform Key (PK). |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.pk.content |
The raw content in the secure keys file. A base64-encoded string. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.pk.fileType |
The file type of source file. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.keks[] |
The Key Exchange Key (KEK). |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.keks[].content |
The raw content in the secure keys file. A base64-encoded string. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.keks[].fileType |
The file type of source file. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.dbs[] |
The Key Database (db). |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.dbs[].content |
The raw content in the secure keys file. A base64-encoded string. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.dbs[].fileType |
The file type of source file. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.dbxs[] |
The forbidden key database (dbx). |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.dbxs[].content |
The raw content in the secure keys file. A base64-encoded string. |
instanceFlexibilityPolicy.instanceSelections[].disks[].shieldedInstanceInitialState.dbxs[].fileType |
The file type of source file. |
instanceFlexibilityPolicy.instanceSelections[].disks[].userLicenses[] |
[Output Only] A list of user provided licenses. It represents a list of URLs to the license resource. Unlike regular licenses, user provided licenses can be modified after the disk is created. |
instanceFlexibilityPolicy.instanceSelections[].disks[].forceAttach |
[Input Only] Whether to force attach the regional disk even if it's currently attached to another instance. If you try to force attach a zonal disk to an instance, you will receive an error. |
instanceFlexibilityPolicy.instanceSelections[].disks[].locked |
[Output Only] Whether to indicate the attached disk is locked. The locked disk is not allowed to be detached from the instance, or to be used as the source of the snapshot creation, and the image creation. The instance with at least one locked attached disk is not allow to be used as source of machine image creation, instant snapshot creation, and not allowed to be deleted with --keep-disk parameter set to true for locked disks. |
instanceFlexibilityPolicy.instanceSelections[].disks[].architecture |
[Output Only] The architecture of the attached disk. Valid values are ARM64 or X86_64. |
instanceFlexibilityPolicy.provisioningModelMix |
Provisioning model configuration used by this managed instance group to create instances. |
instanceFlexibilityPolicy.provisioningModelMix.standardCapacityBase |
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity user needs. MIG will create only Standard VMs until it reaches standardCapacityBase and only then will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. |
instanceFlexibilityPolicy.provisioningModelMix.standardCapacityPercentAboveBase |
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. |
targetStoppedSize |
The target number of stopped instances for this managed instance group. This number changes when you:
|
targetSuspendedSize |
The target number of suspended instances for this managed instance group. This number changes when you:
|
listManagedInstancesResults |
Pagination behavior of the |
standbyPolicy |
Standby policy for stopped and suspended instances. |
standbyPolicy.initialDelaySec |
Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0. |
standbyPolicy.mode |
Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. The default mode is |
selfLink |
[Output Only] The URL for this managed instance group. The server defines this URL. |
autoHealingPolicies[] |
The autohealing policy for this managed instance group. You can specify only one value. |
autoHealingPolicies[].healthCheck |
The URL for the health check that signals autohealing. Authorization requires one or more of the following IAM permissions on the specified resource
|
autoHealingPolicies[].initialDelaySec |
The initial delay is the number of seconds that a new VM takes to initialize and run its startup script. During a VM's initial delay period, the MIG ignores unsuccessful health checks because the VM might be in the startup process. This prevents the MIG from prematurely recreating a VM. If the health check receives a healthy response during the initial delay, it indicates that the startup process is complete and the VM is ready. The value of initial delay must be between 0 and 3600 seconds. The default value is 0. |
updatePolicy |
The update policy for this managed instance group. |
updatePolicy.type |
The type of update process. You can specify either |
updatePolicy.instanceRedistributionType |
The instance redistribution policy for regional managed instance groups. Valid values are:
|
updatePolicy.minimalAction |
Minimal action to be taken on an instance. Use this option to minimize disruption as much as possible or to apply a more disruptive action than is necessary.
|
updatePolicy.mostDisruptiveAllowedAction |
Most disruptive action that is allowed to be taken on an instance. You can specify either |
updatePolicy.maxSurge |
The maximum number of instances that can be created above the specified At least one of either |
updatePolicy.maxSurge.fixed |
Specifies a fixed number of VM instances. This must be a positive integer. |
updatePolicy.maxSurge.percent |
Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify |
updatePolicy.maxSurge.calculated |
[Output Only] Absolute value of VM instances calculated based on the specific mode.
|
updatePolicy.maxUnavailable |
The maximum number of instances that can be unavailable during the update process. An instance is considered available if all of the following conditions are satisfied:
This value can be either a fixed number or, if the group has 10 or more instances, a percentage. If you set a percentage, the number of instances is rounded if necessary. The default value for At least one of either |
updatePolicy.maxUnavailable.fixed |
Specifies a fixed number of VM instances. This must be a positive integer. |
updatePolicy.maxUnavailable.percent |
Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify |
updatePolicy.maxUnavailable.calculated |
[Output Only] Absolute value of VM instances calculated based on the specific mode.
|
updatePolicy.minReadySec |
Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]. |
updatePolicy.replacementMethod |
What action should be used to replace instances. See minimalAction.REPLACE |
namedPorts[] |
[Output Only] Named ports configured on the Instance Groups complementary to this Instance Group Manager. |
namedPorts[].name |
The name for this named port. The name must be 1-63 characters long, and comply with RFC1035. |
namedPorts[].port |
The port number, which can be a value between 1 and 65535. |
serviceAccount |
The service account to be used as credentials for all operations performed by the managed instance group on instances. The service accounts needs all permissions required to create and delete instances. By default, the service account {projectNumber}@cloudservices.gserviceaccount.com is used. |
failoverAction |
The action to perform in case of zone failure. Only one value is supported, |
statefulPolicy |
Stateful configuration for this Instanced Group Manager |
statefulPolicy.preservedState |
|
statefulPolicy.preservedState.disks[] |
Disks created on the instances that will be preserved on instance delete, update, etc. This map is keyed with the device names of the disks. |
statefulPolicy.preservedState.disks[].autoDelete |
These stateful disks will never be deleted during autohealing, update or VM instance recreate operations. This flag is used to configure if the disk should be deleted after it is no longer used by the group, e.g. when the given instance or the whole group is deleted. Note: disks attached in |
statefulPolicy.preservedState.internalIPs[] |
Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Authorization requires one or more of the following IAM permissions on the specified resource
|
statefulPolicy.preservedState.internalIPs[].autoDelete |
These stateful IPs will never be released during autohealing, update or VM instance recreate operations. This flag is used to configure if the IP reservation should be deleted after it is no longer used by the group, e.g. when the given instance or the whole group is deleted. |
statefulPolicy.preservedState.externalIPs[] |
External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Authorization requires one or more of the following IAM permissions on the specified resource
|
statefulPolicy.preservedState.externalIPs[].autoDelete |
These stateful IPs will never be released during autohealing, update or VM instance recreate operations. This flag is used to configure if the IP reservation should be deleted after it is no longer used by the group, e.g. when the given instance or the whole group is deleted. |
instanceLifecyclePolicy |
The repair policy for this managed instance group. |
instanceLifecyclePolicy.forceUpdateOnRepair |
A bit indicating whether to forcefully apply the group's latest configuration when repairing a VM. Valid options are:
|
instanceLifecyclePolicy.defaultActionOnFailure |
The action that a MIG performs on a failed VM. If the value of the onFailedHealthCheck field is |
instanceLifecyclePolicy.onFailedHealthCheck |
The action that a MIG performs on an unhealthy VM. A VM is marked as unhealthy when the application running on that VM fails a health check. Valid values are:
|
instanceLifecyclePolicy.onRepair |
Configuration for VM repairs in the MIG. |
instanceLifecyclePolicy.onRepair.allowChangingZone |
Specifies whether the MIG can change a VM's zone during a repair. Valid values are:
|
params |
Input only. Additional params passed with the request, but not persisted as part of resource payload. |
params.resourceManagerTags |
Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources. |
satisfiesPzi |
[Output Only] Reserved for future use. |
satisfiesPzs |
[Output Only] Reserved for future use. |
resourcePolicies |
Resource policies for this managed instance group. |
resourcePolicies.workloadPolicy |
The URL of the workload policy that is specified for this managed instance group. It can be a full or partial URL. For example, the following are all valid URLs to a workload policy:
|
multiMig |
URL to the multi-MIG that this Managed Instance Group belongs to. |
Response body
Represents an Operation resource.
Google Compute Engine has three Operation resources:
You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses.
Operations can be global, regional or zonal.
- For global operations, use the
globalOperationsresource. - For regional operations, use the
regionOperationsresource. - For zonal operations, use the
zoneOperationsresource.
For more information, read Global, Regional, and Zonal Resources.
Note that completed Operation resources have a limited retention period.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{ "kind": string, "id": string, "creationTimestamp": string, "name": string, "zone": string, "clientOperationId": string, "operationType": string, "targetLink": string, "targetId": string, "status": enum, "statusMessage": string, "user": string, "progress": integer, "insertTime": string, "startTime": string, "endTime": string, "error": { "errors": [ { "code": string, "location": string, "message": string, "errorDetails": [ { "errorInfo": { "reason": string, "domain": string, "metadatas": { string: string, ... } }, "quotaInfo": { "metricName": string, "limitName": string, "dimensions": { string: string, ... }, "limit": number, "futureLimit": number, "rolloutStatus": enum }, "help": { "links": [ { "description": string, "url": string } ] }, "localizedMessage": { "locale": string, "message": string } } ] } ] }, "warnings": [ { "code": enum, "message": string, "data": [ { "key": string, "value": string } ] } ], "httpErrorStatusCode": integer, "httpErrorMessage": string, "selfLink": string, "region": string, "description": string, "operationGroupId": string, // Union field |
| Fields | |
|---|---|
kind |
[Output Only] Type of the resource. Always |
id |
[Output Only] The unique identifier for the operation. This identifier is defined by the server. |
creationTimestamp |
[Deprecated] This field is deprecated. |
name |
[Output Only] Name of the operation. |
zone |
[Output Only] The URL of the zone where the operation resides. Only applicable when performing per-zone operations. |
clientOperationId |
[Output Only] The value of |
operationType |
[Output Only] The type of operation, such as |
targetLink |
[Output Only] The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the disk that the snapshot was created from. |
targetId |
[Output Only] The unique target ID, which identifies a specific incarnation of the target resource. |
status |
[Output Only] The status of the operation, which can be one of the following: |
statusMessage |
[Output Only] An optional textual description of the current status of the operation. |
user |
[Output Only] User who requested the operation, for example: |
progress |
[Output Only] An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses. |
insertTime |
[Output Only] The time that this operation was requested. This value is in RFC3339 text format. |
startTime |
[Output Only] The time that this operation was started by the server. This value is in RFC3339 text format. |
endTime |
[Output Only] The time that this operation was completed. This value is in RFC3339 text format. |
error |
[Output Only] If errors are generated during processing of the operation, this field will be populated. |
error.errors[] |
[Output Only] The array of errors encountered while processing this operation. |
error.errors[].code |
[Output Only] The error type identifier for this error. |
error.errors[].location |
[Output Only] Indicates the field in the request that caused the error. This property is optional. |
error.errors[].message |
[Output Only] An optional, human-readable error message. |
error.errors[].errorDetails[] |
[Output Only] An optional list of messages that contain the error details. There is a set of defined message types to use for providing details.The syntax depends on the error code. For example, QuotaExceededInfo will have details when the error code is QUOTA_EXCEEDED. |
error.errors[].errorDetails[].errorInfo |
|
error.errors[].errorDetails[].errorInfo.reason |
The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors. This should be at most 63 characters and match a regular expression of |
error.errors[].errorDetails[].errorInfo.domain |
The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com". If the error is generated by some common infrastructure, the error domain must be a globally unique value that identifies the infrastructure. For Google API infrastructure, the error domain is "googleapis.com". |
error.errors[].errorDetails[].errorInfo.metadatas |
Additional structured details about this error. Keys must match a regular expression of |
error.errors[].errorDetails[].quotaInfo |
|
error.errors[].errorDetails[].quotaInfo.metricName |
The Compute Engine quota metric name. |
error.errors[].errorDetails[].quotaInfo.limitName |
The name of the quota limit. |
error.errors[].errorDetails[].quotaInfo.dimensions |
The map holding related quota dimensions. |
error.errors[].errorDetails[].quotaInfo.limit |
Current effective quota limit. The limit's unit depends on the quota type or metric. |
error.errors[].errorDetails[].quotaInfo.futureLimit |
Future quota limit being rolled out. The limit's unit depends on the quota type or metric. |
error.errors[].errorDetails[].quotaInfo.rolloutStatus |
Rollout status of the future quota limit. |
error.errors[].errorDetails[].help |
|
error.errors[].errorDetails[].help.links[] |
URL(s) pointing to additional information on handling the current error. |
error.errors[].errorDetails[].help.links[].description |
Describes what the link offers. |
error.errors[].errorDetails[].help.links[].url |
The URL of the link. |
error.errors[].errorDetails[].localizedMessage |
|
error.errors[].errorDetails[].localizedMessage.locale |
The locale used following the specification defined at https://www.rfc-editor.org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX" |
error.errors[].errorDetails[].localizedMessage.message |
The localized error message in the above locale. |
warnings[] |
[Output Only] If warning messages are generated during processing of the operation, this field will be populated. |
warnings[].code |
[Output Only] A warning code, if applicable. For example, Compute Engine returns |
warnings[].message |
[Output Only] A human-readable description of the warning code. |
warnings[].data[] |
[Output Only] Metadata about this warning in "data": [ { "key": "scope", "value": "zones/us-east1-d" } |
warnings[].data[].key |
[Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be |
warnings[].data[].value |
[Output Only] A warning data value corresponding to the key. |
httpErrorStatusCode |
[Output Only] If the operation fails, this field contains the HTTP error status code that was returned. For example, a |
httpErrorMessage |
[Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as |
selfLink |
[Output Only] Server-defined URL for the resource. |
region |
[Output Only] The URL of the region where the operation resides. Only applicable when performing regional operations. |
description |
[Output Only] A textual description of the operation, which is set when the operation is created. |
operationGroupId |
[Output Only] An ID that represents a group of operations, such as when a group of operations results from a |
Union field metadata. [Output Only] Service-specific metadata attached to this operation. metadata can be only one of the following: |
|
setCommonInstanceMetadataOperationMetadata |
[Output Only] If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state. |
setCommonInstanceMetadataOperationMetadata.clientOperationId |
[Output Only] The client operation id. |
setCommonInstanceMetadataOperationMetadata.perLocationOperations[] |
[Output Only] Status information per location (location name is key). Example key: zones/us-central1-a |
setCommonInstanceMetadataOperationMetadata.perLocationOperations[].state |
[Output Only] Status of the action, which can be one of the following: |
setCommonInstanceMetadataOperationMetadata.perLocationOperations[].error |
[Output Only] If state is |
setCommonInstanceMetadataOperationMetadata.perLocationOperations[].error.code |
The status code, which should be an enum value of |
setCommonInstanceMetadataOperationMetadata.perLocationOperations[].error.message |
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the |
setCommonInstanceMetadataOperationMetadata.perLocationOperations[].error.details[] |
A list of messages that carry the error details. There is a common set of message types for APIs to use. An object containing fields of an arbitrary type. An additional field |
instancesBulkInsertOperationMetadata |
|
instancesBulkInsertOperationMetadata.perLocationStatus[] |
Status information per location (location name is key). Example key: zones/us-central1-a |
instancesBulkInsertOperationMetadata.perLocationStatus[].status |
[Output Only] Creation status of BulkInsert operation - information if the flow is rolling forward or rolling back. |
instancesBulkInsertOperationMetadata.perLocationStatus[].targetVmCount |
[Output Only] Count of VMs originally planned to be created. |
instancesBulkInsertOperationMetadata.perLocationStatus[].createdVmCount |
[Output Only] Count of VMs successfully created so far. |
instancesBulkInsertOperationMetadata.perLocationStatus[].failedToCreateVmCount |
[Output Only] Count of VMs that started creating but encountered an error. |
instancesBulkInsertOperationMetadata.perLocationStatus[].deletedVmCount |
[Output Only] Count of VMs that got deleted during rollback. |
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/computehttps://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
IAM Permissions
In addition to any permissions specified on the fields above, authorization requires one or more of the following IAM permissions:
compute.disks.createcompute.images.useReadOnlycompute.instances.createcompute.instances.setMetadatacompute.subnetworks.use
To find predefined roles that contain those permissions, see Compute Engine IAM Roles.