pulumi_wasm_providers_azure_mini::functions::compute::get_managed_disk

Struct GetManagedDiskResult

source
pub struct GetManagedDiskResult {
Show 19 fields pub create_option: Output<String>, pub disk_access_id: Output<String>, pub disk_encryption_set_id: Output<String>, pub disk_iops_read_write: Output<i32>, pub disk_mbps_read_write: Output<i32>, pub disk_size_gb: Output<i32>, pub encryption_settings: Output<Vec<GetManagedDiskEncryptionSetting>>, pub id: Output<String>, pub image_reference_id: Output<String>, pub name: Output<String>, pub network_access_policy: Output<String>, pub os_type: Output<String>, pub resource_group_name: Output<String>, pub source_resource_id: Output<String>, pub source_uri: Output<String>, pub storage_account_id: Output<String>, pub storage_account_type: Output<String>, pub tags: Output<HashMap<String, String>>, pub zones: Output<Vec<String>>,
}

Fields§

§create_option: Output<String>§disk_access_id: Output<String>

The ID of the disk access resource for using private endpoints on disks.

§disk_encryption_set_id: Output<String>

The ID of the Disk Encryption Set used to encrypt this Managed Disk.

§disk_iops_read_write: Output<i32>

The number of IOPS allowed for this disk, where one operation can transfer between 4k and 256k bytes.

§disk_mbps_read_write: Output<i32>

The bandwidth allowed for this disk.

§disk_size_gb: Output<i32>

The size of the Managed Disk in gigabytes.

§encryption_settings: Output<Vec<GetManagedDiskEncryptionSetting>>

A encryption_settings block as defined below.

§id: Output<String>

The provider-assigned unique ID for this managed resource.

§image_reference_id: Output<String>

The ID of the source image used for creating this Managed Disk.

§name: Output<String>§network_access_policy: Output<String>

Policy for accessing the disk via network.

§os_type: Output<String>

The operating system used for this Managed Disk.

§resource_group_name: Output<String>§source_resource_id: Output<String>

The ID of an existing Managed Disk which this Disk was created from.

§source_uri: Output<String>

The Source URI for this Managed Disk.

§storage_account_id: Output<String>

The ID of the Storage Account where the source_uri is located.

§storage_account_type: Output<String>

The storage account type for the Managed Disk.

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

A mapping of tags assigned to the resource.

§zones: Output<Vec<String>>

A list of Availability Zones where the Managed Disk exists.

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.