pub struct GalleryApplicationAssignmentArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GalleryApplicationAssignmentArgsBuilder<S>
impl<S: State> GalleryApplicationAssignmentArgsBuilder<S>
sourcepub fn build_struct(self) -> GalleryApplicationAssignmentArgswhere
S: IsComplete,
pub fn build_struct(self) -> GalleryApplicationAssignmentArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn configuration_blob_uri(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetConfigurationBlobUri<S>>where
S::ConfigurationBlobUri: IsUnset,
pub fn configuration_blob_uri(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetConfigurationBlobUri<S>>where
S::ConfigurationBlobUri: IsUnset,
sourcepub fn maybe_configuration_blob_uri(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetConfigurationBlobUri<S>>where
S::ConfigurationBlobUri: IsUnset,
pub fn maybe_configuration_blob_uri(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetConfigurationBlobUri<S>>where
S::ConfigurationBlobUri: IsUnset,
sourcepub fn gallery_application_version_id(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetGalleryApplicationVersionId<S>>where
S::GalleryApplicationVersionId: IsUnset,
pub fn gallery_application_version_id(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetGalleryApplicationVersionId<S>>where
S::GalleryApplicationVersionId: IsUnset,
Required.
The ID of the Gallery Application Version. Changing this forces a new resource to be created.
sourcepub fn order(
self,
value: impl Into<Output<Option<i32>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn order(
self,
value: impl Into<Output<Option<i32>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetOrder<S>>where
S::Order: IsUnset,
sourcepub fn maybe_order(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn maybe_order(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetOrder<S>>where
S::Order: IsUnset,
sourcepub fn tag(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetTag<S>>where
S::Tag: IsUnset,
pub fn tag(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetTag<S>>where
S::Tag: IsUnset,
sourcepub fn maybe_tag(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetTag<S>>where
S::Tag: IsUnset,
pub fn maybe_tag(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetTag<S>>where
S::Tag: IsUnset,
sourcepub fn virtual_machine_id(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetVirtualMachineId<S>>where
S::VirtualMachineId: IsUnset,
pub fn virtual_machine_id(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationAssignmentArgsBuilder<SetVirtualMachineId<S>>where
S::VirtualMachineId: IsUnset,
Required.
The ID of the Virtual Machine. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl<S> Freeze for GalleryApplicationAssignmentArgsBuilder<S>
impl<S> RefUnwindSafe for GalleryApplicationAssignmentArgsBuilder<S>
impl<S> Send for GalleryApplicationAssignmentArgsBuilder<S>
impl<S> Sync for GalleryApplicationAssignmentArgsBuilder<S>
impl<S> Unpin for GalleryApplicationAssignmentArgsBuilder<S>
impl<S> UnwindSafe for GalleryApplicationAssignmentArgsBuilder<S>
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