[][src]Struct google_compute1::Image

pub struct Image {
    pub status: Option<String>,
    pub source_snapshot: Option<String>,
    pub source_image_encryption_key: Option<CustomerEncryptionKey>,
    pub source_disk_encryption_key: Option<CustomerEncryptionKey>,
    pub description: Option<String>,
    pub family: Option<String>,
    pub label_fingerprint: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub archive_size_bytes: Option<String>,
    pub source_disk_id: Option<String>,
    pub guest_os_features: Option<Vec<GuestOsFeature>>,
    pub source_snapshot_id: Option<String>,
    pub source_image: Option<String>,
    pub licenses: Option<Vec<String>>,
    pub source_type: Option<String>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub license_codes: Option<Vec<String>>,
    pub source_image_id: Option<String>,
    pub kind: Option<String>,
    pub raw_disk: Option<ImageRawDisk>,
    pub source_disk: Option<String>,
    pub deprecated: Option<DeprecationStatus>,
    pub name: Option<String>,
    pub disk_size_gb: Option<String>,
    pub image_encryption_key: Option<CustomerEncryptionKey>,
    pub source_snapshot_encryption_key: Option<CustomerEncryptionKey>,
    pub self_link: Option<String>,
}

Represents an Image resource.

You can use images to create boot disks for your VM instances. For more information, read Images. (== resource_for beta.images ==) (== resource_for v1.images ==)

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<String>

[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.

source_snapshot: Option<String>

URL of the source snapshot used to create this image. This can be a full or valid partial URL. You must provide exactly one of:

  • this property, or
  • the sourceImage property, or
  • the rawDisk.source property, or
  • the sourceDisk property in order to create an image.
source_image_encryption_key: Option<CustomerEncryptionKey>

The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.

source_disk_encryption_key: Option<CustomerEncryptionKey>

The customer-supplied encryption key of the source disk. Required if the source disk is protected by a customer-supplied encryption key.

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

family: Option<String>

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.

label_fingerprint: Option<String>

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: Option<HashMap<String, String>>

Labels to apply to this image. These can be later modified by the setLabels method.

archive_size_bytes: Option<String>

Size of the image tar.gz archive stored in Google Cloud Storage (in bytes).

source_disk_id: Option<String>

[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.

guest_os_features: Option<Vec<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.

source_snapshot_id: Option<String>

[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_image: Option<String>

URL of the source image used to create this image. This can be a full or valid partial URL. You must provide exactly one of:

  • this property, or
  • the rawDisk.source property, or
  • the sourceDisk property in order to create an image.
licenses: Option<Vec<String>>

Any applicable license URI.

source_type: Option<String>

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

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

id: Option<String>

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

license_codes: Option<Vec<String>>

Integer license codes indicating which licenses are attached to this image.

source_image_id: Option<String>

[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.

kind: Option<String>

[Output Only] Type of the resource. Always compute#image for images.

raw_disk: Option<ImageRawDisk>

The parameters of the raw disk image.

source_disk: Option<String>

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
deprecated: Option<DeprecationStatus>

The deprecation status associated with this image.

name: Option<String>

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.

disk_size_gb: Option<String>

Size of the image when restored onto a persistent disk (in GB).

image_encryption_key: Option<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.

source_snapshot_encryption_key: Option<CustomerEncryptionKey>

The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.

self_link: Option<String>

[Output Only] Server-defined URL for the resource.

Trait Implementations

impl Resource for Image[src]

impl ResponseResult for Image[src]

impl RequestValue for Image[src]

impl Default for Image[src]

impl Clone for Image[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Image[src]

impl Serialize for Image[src]

impl<'de> Deserialize<'de> for Image[src]

Auto Trait Implementations

impl Send for Image

impl Unpin for Image

impl Sync for Image

impl UnwindSafe for Image

impl RefUnwindSafe for Image

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]