pulumi_wasm_providers_azure_mini::functions::compute::get_shared_image

Struct GetSharedImageResult

source
pub struct GetSharedImageResult {
Show 22 fields pub accelerated_network_support_enabled: Output<bool>, pub architecture: Output<String>, pub confidential_vm_enabled: Output<bool>, pub confidential_vm_supported: Output<bool>, pub description: Output<String>, pub eula: Output<String>, pub gallery_name: Output<String>, pub hibernation_enabled: Output<bool>, pub hyper_v_generation: Output<String>, pub id: Output<String>, pub identifiers: Output<Vec<GetSharedImageIdentifier>>, pub location: Output<String>, pub name: Output<String>, pub os_type: Output<String>, pub privacy_statement_uri: Output<String>, pub purchase_plans: Output<Vec<GetSharedImagePurchasePlan>>, pub release_note_uri: Output<String>, pub resource_group_name: Output<String>, pub specialized: Output<bool>, pub tags: Output<HashMap<String, String>>, pub trusted_launch_enabled: Output<bool>, pub trusted_launch_supported: Output<bool>,
}

Fields§

§accelerated_network_support_enabled: Output<bool>

Specifies if the Shared Image supports Accelerated Network.

§architecture: Output<String>§confidential_vm_enabled: Output<bool>

Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines.

§confidential_vm_supported: Output<bool>

Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image.

§description: Output<String>

The description of this Shared Image.

§eula: Output<String>

The End User Licence Agreement for the Shared Image.

§gallery_name: Output<String>§hibernation_enabled: Output<bool>

Specifies if the Shared Image supports hibernation.

§hyper_v_generation: Output<String>

The generation of HyperV that the Virtual Machine used to create the Shared Image is based on.

§id: Output<String>

The provider-assigned unique ID for this managed resource.

§identifiers: Output<Vec<GetSharedImageIdentifier>>

An identifier block as defined below.

§location: Output<String>

The supported Azure location where the Shared Image Gallery exists.

§name: Output<String>

(Required) The Purchase Plan Name for this Shared Image.

§os_type: Output<String>

The type of Operating System present in this Shared Image.

§privacy_statement_uri: Output<String>

The URI containing the Privacy Statement for this Shared Image.

§purchase_plans: Output<Vec<GetSharedImagePurchasePlan>>

(Optional) A purchase_plan block as defined below.

§release_note_uri: Output<String>

The URI containing the Release Notes for this Shared Image.

§resource_group_name: Output<String>§specialized: Output<bool>

Specifies that the Operating System used inside this Image has not been Generalized (for example, sysprep on Windows has not been run).

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

A mapping of tags assigned to the Shared Image.

§trusted_launch_enabled: Output<bool>

Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image.

§trusted_launch_supported: Output<bool>

Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image.

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.