pub struct RestorePointResult {
pub crash_consistency_mode_enabled: Output<Option<bool>>,
pub excluded_disks: Output<Option<Vec<String>>>,
pub name: Output<String>,
pub virtual_machine_restore_point_collection_id: Output<String>,
}
Fields§
§crash_consistency_mode_enabled: Output<Option<bool>>
Is Crash Consistent the Consistency Mode of the Virtual Machine Restore Point. Defaults to false
. Changing this forces a new resource to be created.
excluded_disks: Output<Option<Vec<String>>>
A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
name: Output<String>
Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
virtual_machine_restore_point_collection_id: Output<String>
Auto Trait Implementations§
impl Freeze for RestorePointResult
impl RefUnwindSafe for RestorePointResult
impl Send for RestorePointResult
impl Sync for RestorePointResult
impl Unpin for RestorePointResult
impl UnwindSafe for RestorePointResult
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