Class Image (0.6.0)

Image(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represents an Image resource.

You can use images to create boot disks for your VM instances. For more information, read Images. (== resource_for {$api_version}.images ==)

Attributes

NameDescription
archive_size_bytes int
Size of the image tar.gz archive stored in Google Cloud Storage (in bytes).
creation_timestamp str
[Output Only] Creation timestamp in RFC3339 text format.
deprecated google.cloud.compute_v1.types.DeprecationStatus
The deprecation status associated with this image.
description str
An optional description of this resource. Provide this property when you create the resource.
disk_size_gb int
Size of the image when restored onto a persistent disk (in GB).
family str
The name of the image family to which this image belongs. You can create disks by specifying an image family instead of a specific image name. The image family always returns its latest image that is not deprecated. The name of the image family must comply with RFC1035.
guest_os_features Sequence[google.cloud.compute_v1.types.GuestOsFeature]
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.
id int
[Output Only] The unique identifier for the resource. This identifier is defined by the server.
image_encryption_key google.cloud.compute_v1.types.CustomerEncryptionKey
Encrypts the image using a customer-supplied encryption key. After you encrypt an image with a customer- supplied key, you must provide the same key if you use the image later (e.g. to create a disk from the image). Customer-supplied encryption keys do not protect access to metadata of the disk. If you do not provide an encryption key when creating the image, then the disk will be encrypted using an automatically generated key and you do not need to provide a key to use the image later.
kind str
[Output Only] Type of the resource. Always compute#image for images.
label_fingerprint str
A fingerprint for the labels being applied to this image, which is essentially a hash of the labels used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up- to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an image.
labels Sequence[google.cloud.compute_v1.types.Image.LabelsEntry]
Labels to apply to this image. These can be later modified by the setLabels method.
license_codes Sequence[int]
Integer license codes indicating which licenses are attached to this image.
licenses Sequence[str]
Any applicable license URI.
name str
Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
raw_disk google.cloud.compute_v1.types.RawDisk
The parameters of the raw disk image.
satisfies_pzs bool
[Output Only] Reserved for future use.
self_link str
[Output Only] Server-defined URL for the resource.
shielded_instance_initial_state google.cloud.compute_v1.types.InitialStateConfig
Set the secure boot keys of shielded instance.
source_disk str
URL of the source disk used to create this image. This can be a full or valid partial URL. You must provide either this property or the rawDisk.source property but not both to create an image. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
source_disk_encryption_key google.cloud.compute_v1.types.CustomerEncryptionKey
The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.
source_disk_id str
[Output Only] The ID value of the disk used to create this image. This value may be used to determine whether the image was taken from the current or a previous instance of a given disk name.
source_image str
URL of the source image used to create this image. In order to create an image, you must provide the full or partial URL of one of the following: - The selfLink URL - This property - The rawDisk.source URL - The sourceDisk URL
source_image_encryption_key google.cloud.compute_v1.types.CustomerEncryptionKey
The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
source_image_id str
[Output Only] The ID value of the image used to create this image. This value may be used to determine whether the image was taken from the current or a previous instance of a given image name.
source_snapshot str
URL of the source snapshot used to create this image. In order to create an image, you must provide the full or partial URL of one of the following: - The selfLink URL - This property - The sourceImage URL - The rawDisk.source URL - The sourceDisk URL
source_snapshot_encryption_key google.cloud.compute_v1.types.CustomerEncryptionKey
The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
source_snapshot_id str
[Output Only] The ID value of the snapshot used to create this image. This value may be used to determine whether the snapshot was taken from the current or a previous instance of a given snapshot name.
source_type google.cloud.compute_v1.types.Image.SourceType
The type of the image used to create this disk. The default and only value is RAW
status google.cloud.compute_v1.types.Image.Status
[Output Only] The status of the image. An image can be used to create other resources, such as instances, only after the image has been successfully created and the status is set to READY. Possible values are FAILED, PENDING, or READY.
storage_locations Sequence[str]
Cloud Storage bucket storage location of the image (regional or multi-regional).

Classes

LabelsEntry

LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, .Message]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.

SourceType

SourceType(value)

The type of the image used to create this disk. The default and only value is RAW

Status

Status(value)

[Output Only] The status of the image. An image can be used to create other resources, such as instances, only after the image has been successfully created and the status is set to READY. Possible values are FAILED, PENDING, or READY.