Preserved state for a given instance.
JSON representation |
---|
{ "disks": { string: { object ( |
Fields | |
---|---|
disks |
Preserved disks defined for this instance. This map is keyed with the device names of the disks. |
metadata |
Preserved metadata defined for this instance. |
internal |
Preserved internal IPs defined for this instance. This map is keyed with the name of the network interface. |
external |
Preserved external IPs defined for this instance. This map is keyed with the name of the network interface. |
PreservedDisk
JSON representation |
---|
{ "source": string, "mode": enum ( |
Fields | |
---|---|
source |
The URL of the disk resource that is stateful and should be attached to the VM instance. |
mode |
The mode in which to attach this disk, either
or
. If not specified, the default is to attach the disk in
mode. |
auto |
These stateful disks will never be deleted during autohealing, update, 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 MIG is deleted. Note: disks attached in
mode cannot be auto-deleted. |
DiskMode
Whether the disk will be attached in
READ_WRITE
or
READ_ONLY
mode.
Enums | |
---|---|
READ_WRITE |
[Default] Attaches this disk in
mode. Only one VM instance at a time can be attached to a disk in
mode. |
READ_ONLY |
Attaches this disk in read-only mode. Multiple VM instances can use a disk in
mode at a time. |
PreservedNetworkIp
JSON representation |
---|
{ "autoDelete": enum ( |
Fields | |
---|---|
auto |
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. |
ip |
Ip address representation |
IpAddress
JSON representation |
---|
{ "literal": string, "address": string } |
Fields | |
---|---|
literal |
An IPv4 internal network address to assign to the instance for this network interface. |
address |
The URL of the reservation for this IP address. |