Struct google_compute1::Image
source · pub struct Image {Show 24 fields
pub status: 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_image: Option<String>,
pub licenses: Option<Vec<String>>,
pub creation_timestamp: Option<String>,
pub id: Option<String>,
pub source_type: Option<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 self_link: Option<String>,
}Expand description
An Image resource. (== 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).
- delete images (none)
- insert images (request)
- get images (response)
- get from family images (response)
- set labels images (none)
- deprecate images (none)
- list images (none)
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_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.
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>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_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.
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.
source_type: Option<String>The type of the image used to create this disk. The default and only value is RAW
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? 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.
self_link: Option<String>[Output Only] Server-defined URL for the resource.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Image
impl<'de> Deserialize<'de> for Image
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for Image
impl Resource for Image
impl ResponseResult for Image
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more