pub struct GalleryApplicationArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GalleryApplicationArgsBuilder<S>
impl<S: State> GalleryApplicationArgsBuilder<S>
sourcepub fn build_struct(self) -> GalleryApplicationArgswhere
S: IsComplete,
pub fn build_struct(self) -> GalleryApplicationArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn end_of_life_date(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetEndOfLifeDate<S>>where
S::EndOfLifeDate: IsUnset,
pub fn end_of_life_date(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetEndOfLifeDate<S>>where
S::EndOfLifeDate: IsUnset,
sourcepub fn maybe_end_of_life_date(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetEndOfLifeDate<S>>where
S::EndOfLifeDate: IsUnset,
pub fn maybe_end_of_life_date(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetEndOfLifeDate<S>>where
S::EndOfLifeDate: IsUnset,
sourcepub fn eula(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetEula<S>>where
S::Eula: IsUnset,
pub fn eula(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetEula<S>>where
S::Eula: IsUnset,
sourcepub fn maybe_eula(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetEula<S>>where
S::Eula: IsUnset,
pub fn maybe_eula(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetEula<S>>where
S::Eula: IsUnset,
sourcepub fn gallery_id(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationArgsBuilder<SetGalleryId<S>>where
S::GalleryId: IsUnset,
pub fn gallery_id(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationArgsBuilder<SetGalleryId<S>>where
S::GalleryId: IsUnset,
Required.
The ID of the Shared Image Gallery. Changing this forces a new resource to be created.
sourcepub fn location(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetLocation<S>>where
S::Location: IsUnset,
pub fn location(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetLocation<S>>where
S::Location: IsUnset,
sourcepub fn maybe_location(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetLocation<S>>where
S::Location: IsUnset,
pub fn maybe_location(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetLocation<S>>where
S::Location: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn privacy_statement_uri(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetPrivacyStatementUri<S>>where
S::PrivacyStatementUri: IsUnset,
pub fn privacy_statement_uri(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetPrivacyStatementUri<S>>where
S::PrivacyStatementUri: IsUnset,
sourcepub fn maybe_privacy_statement_uri(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetPrivacyStatementUri<S>>where
S::PrivacyStatementUri: IsUnset,
pub fn maybe_privacy_statement_uri(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetPrivacyStatementUri<S>>where
S::PrivacyStatementUri: IsUnset,
sourcepub fn release_note_uri(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetReleaseNoteUri<S>>where
S::ReleaseNoteUri: IsUnset,
pub fn release_note_uri(
self,
value: impl Into<Output<Option<String>>>,
) -> GalleryApplicationArgsBuilder<SetReleaseNoteUri<S>>where
S::ReleaseNoteUri: IsUnset,
sourcepub fn maybe_release_note_uri(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetReleaseNoteUri<S>>where
S::ReleaseNoteUri: IsUnset,
pub fn maybe_release_note_uri(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GalleryApplicationArgsBuilder<SetReleaseNoteUri<S>>where
S::ReleaseNoteUri: IsUnset,
sourcepub fn supported_os_type(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationArgsBuilder<SetSupportedOsType<S>>where
S::SupportedOsType: IsUnset,
pub fn supported_os_type(
self,
value: impl Into<Output<String>>,
) -> GalleryApplicationArgsBuilder<SetSupportedOsType<S>>where
S::SupportedOsType: IsUnset,
Required.
The type of the Operating System supported for the Gallery Application. Possible values are Linux
and Windows
. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl<S> Freeze for GalleryApplicationArgsBuilder<S>
impl<S> RefUnwindSafe for GalleryApplicationArgsBuilder<S>
impl<S> Send for GalleryApplicationArgsBuilder<S>
impl<S> Sync for GalleryApplicationArgsBuilder<S>
impl<S> Unpin for GalleryApplicationArgsBuilder<S>
impl<S> UnwindSafe for GalleryApplicationArgsBuilder<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