pub struct GalleryApplicationAssignmentResult {
pub configuration_blob_uri: Output<Option<String>>,
pub gallery_application_version_id: Output<String>,
pub order: Output<Option<i32>>,
pub tag: Output<Option<String>>,
pub virtual_machine_id: Output<String>,
}
Fields§
§configuration_blob_uri: Output<Option<String>>
Specifies the URI to an Azure Blob that will replace the default configuration for the package if provided. Changing this forces a new resource to be created.
gallery_application_version_id: Output<String>
The ID of the Gallery Application Version. Changing this forces a new resource to be created.
order: Output<Option<i32>>
Specifies the order in which the packages have to be installed. Possible values are between 0
and 2147483647
. Defaults to 0
.
tag: Output<Option<String>>
Specifies a passthrough value for more generic context. This field can be any valid string
value. Changing this forces a new resource to be created.
virtual_machine_id: Output<String>
The ID of the Virtual Machine. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl Freeze for GalleryApplicationAssignmentResult
impl RefUnwindSafe for GalleryApplicationAssignmentResult
impl Send for GalleryApplicationAssignmentResult
impl Sync for GalleryApplicationAssignmentResult
impl Unpin for GalleryApplicationAssignmentResult
impl UnwindSafe for GalleryApplicationAssignmentResult
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