pulumi_wasm_providers_gcp_mini::functions::compute::get_image

Struct GetImageResult

source
pub struct GetImageResult {
Show 21 fields pub archive_size_bytes: Output<i32>, pub creation_timestamp: Output<String>, pub description: Output<String>, pub disk_size_gb: Output<i32>, pub family: Output<String>, pub filter: Output<Option<String>>, pub id: Output<String>, pub image_encryption_key_sha256: Output<String>, pub image_id: Output<String>, pub label_fingerprint: Output<String>, pub labels: Output<HashMap<String, String>>, pub licenses: Output<Vec<String>>, pub most_recent: Output<Option<bool>>, pub name: Output<String>, pub project: Output<String>, pub self_link: Output<String>, pub source_disk: Output<String>, pub source_disk_encryption_key_sha256: Output<String>, pub source_disk_id: Output<String>, pub source_image_id: Output<String>, pub status: Output<String>,
}

Fields§

§archive_size_bytes: Output<i32>

The size of the image tar.gz archive stored in Google Cloud Storage in bytes.

§creation_timestamp: Output<String>

The creation timestamp in RFC3339 text format.

§description: Output<String>

An optional description of this image.

§disk_size_gb: Output<i32>

The size of the image when restored onto a persistent disk in gigabytes.

§family: Output<String>

The family name of the image.

§filter: Output<Option<String>>§id: Output<String>

The provider-assigned unique ID for this managed resource.

§image_encryption_key_sha256: Output<String>

The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this image.

§image_id: Output<String>

The unique identifier for the image.

§label_fingerprint: Output<String>

A fingerprint for the labels being applied to this image.

§labels: Output<HashMap<String, String>>

All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.

§licenses: Output<Vec<String>>

A list of applicable license URI.

§most_recent: Output<Option<bool>>§name: Output<String>

The name of the image.

§project: Output<String>§self_link: Output<String>

The URI of the image.

§source_disk: Output<String>

The URL of the source disk used to create this image.

§source_disk_encryption_key_sha256: Output<String>

The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this image.

§source_disk_id: Output<String>

The ID value of the disk used to create this image.

§source_image_id: Output<String>

The ID value of the image used to create this image.

§status: Output<String>

The status of the image. Possible values are FAILED, PENDING, or READY.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.