pub struct GetNetworkArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetNetworkArgsBuilder<S>
impl<S: State> GetNetworkArgsBuilder<S>
sourcepub fn build_struct(self) -> GetNetworkArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetNetworkArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn name(
self,
value: impl Into<Output<String>>,
) -> GetNetworkArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<String>>,
) -> GetNetworkArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Required.
The name of the network.
sourcepub fn network_profile(
self,
value: impl Into<Output<Option<String>>>,
) -> GetNetworkArgsBuilder<SetNetworkProfile<S>>where
S::NetworkProfile: IsUnset,
pub fn network_profile(
self,
value: impl Into<Output<Option<String>>>,
) -> GetNetworkArgsBuilder<SetNetworkProfile<S>>where
S::NetworkProfile: IsUnset,
sourcepub fn maybe_network_profile(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetNetworkArgsBuilder<SetNetworkProfile<S>>where
S::NetworkProfile: IsUnset,
pub fn maybe_network_profile(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetNetworkArgsBuilder<SetNetworkProfile<S>>where
S::NetworkProfile: IsUnset,
sourcepub fn project(
self,
value: impl Into<Output<Option<String>>>,
) -> GetNetworkArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
pub fn project(
self,
value: impl Into<Output<Option<String>>>,
) -> GetNetworkArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
sourcepub fn maybe_project(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetNetworkArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
pub fn maybe_project(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> GetNetworkArgsBuilder<SetProject<S>>where
S::Project: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetNetworkArgsBuilder<S>
impl<S> RefUnwindSafe for GetNetworkArgsBuilder<S>
impl<S> Send for GetNetworkArgsBuilder<S>
impl<S> Sync for GetNetworkArgsBuilder<S>
impl<S> Unpin for GetNetworkArgsBuilder<S>
impl<S> UnwindSafe for GetNetworkArgsBuilder<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