pub struct GetImageResult {
pub data_disks: Output<Vec<GetImageDataDisk>>,
pub id: Output<String>,
pub location: Output<String>,
pub name: Output<Option<String>>,
pub name_regex: Output<Option<String>>,
pub os_disks: Output<Vec<GetImageOsDisk>>,
pub resource_group_name: Output<String>,
pub sort_descending: Output<Option<bool>>,
pub tags: Output<HashMap<String, String>>,
pub zone_resilient: Output<bool>,
}
Fields§
§data_disks: Output<Vec<GetImageDataDisk>>
a collection of data_disk
blocks as defined below.
id: Output<String>
The provider-assigned unique ID for this managed resource.
location: Output<String>
the Azure Location where this Image exists.
name: Output<Option<String>>
the name of the Image.
name_regex: Output<Option<String>>
§os_disks: Output<Vec<GetImageOsDisk>>
a os_disk
block as defined below.
resource_group_name: Output<String>
§sort_descending: Output<Option<bool>>
a mapping of tags to assigned to the resource.
zone_resilient: Output<bool>
is zone resiliency enabled?
Auto Trait Implementations§
impl Freeze for GetImageResult
impl RefUnwindSafe for GetImageResult
impl Send for GetImageResult
impl Sync for GetImageResult
impl Unpin for GetImageResult
impl UnwindSafe for GetImageResult
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
Mutably borrows from an owned value. Read more