#[non_exhaustive]pub struct RelatedDeploymentsBuilder { /* private fields */ }
Expand description
A builder for RelatedDeployments
.
Implementations§
source§impl RelatedDeploymentsBuilder
impl RelatedDeploymentsBuilder
sourcepub fn auto_update_outdated_instances_root_deployment_id(
self,
input: impl Into<String>,
) -> Self
pub fn auto_update_outdated_instances_root_deployment_id( self, input: impl Into<String>, ) -> Self
The deployment ID of the root deployment that triggered this deployment.
sourcepub fn set_auto_update_outdated_instances_root_deployment_id(
self,
input: Option<String>,
) -> Self
pub fn set_auto_update_outdated_instances_root_deployment_id( self, input: Option<String>, ) -> Self
The deployment ID of the root deployment that triggered this deployment.
sourcepub fn get_auto_update_outdated_instances_root_deployment_id(
&self,
) -> &Option<String>
pub fn get_auto_update_outdated_instances_root_deployment_id( &self, ) -> &Option<String>
The deployment ID of the root deployment that triggered this deployment.
sourcepub fn auto_update_outdated_instances_deployment_ids(
self,
input: impl Into<String>,
) -> Self
pub fn auto_update_outdated_instances_deployment_ids( self, input: impl Into<String>, ) -> Self
Appends an item to auto_update_outdated_instances_deployment_ids
.
To override the contents of this collection use set_auto_update_outdated_instances_deployment_ids
.
The deployment IDs of 'auto-update outdated instances' deployments triggered by this deployment.
sourcepub fn set_auto_update_outdated_instances_deployment_ids(
self,
input: Option<Vec<String>>,
) -> Self
pub fn set_auto_update_outdated_instances_deployment_ids( self, input: Option<Vec<String>>, ) -> Self
The deployment IDs of 'auto-update outdated instances' deployments triggered by this deployment.
sourcepub fn get_auto_update_outdated_instances_deployment_ids(
&self,
) -> &Option<Vec<String>>
pub fn get_auto_update_outdated_instances_deployment_ids( &self, ) -> &Option<Vec<String>>
The deployment IDs of 'auto-update outdated instances' deployments triggered by this deployment.
sourcepub fn build(self) -> RelatedDeployments
pub fn build(self) -> RelatedDeployments
Consumes the builder and constructs a RelatedDeployments
.
Trait Implementations§
source§impl Clone for RelatedDeploymentsBuilder
impl Clone for RelatedDeploymentsBuilder
source§fn clone(&self) -> RelatedDeploymentsBuilder
fn clone(&self) -> RelatedDeploymentsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RelatedDeploymentsBuilder
impl Debug for RelatedDeploymentsBuilder
source§impl Default for RelatedDeploymentsBuilder
impl Default for RelatedDeploymentsBuilder
source§fn default() -> RelatedDeploymentsBuilder
fn default() -> RelatedDeploymentsBuilder
source§impl PartialEq for RelatedDeploymentsBuilder
impl PartialEq for RelatedDeploymentsBuilder
source§fn eq(&self, other: &RelatedDeploymentsBuilder) -> bool
fn eq(&self, other: &RelatedDeploymentsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RelatedDeploymentsBuilder
Auto Trait Implementations§
impl Freeze for RelatedDeploymentsBuilder
impl RefUnwindSafe for RelatedDeploymentsBuilder
impl Send for RelatedDeploymentsBuilder
impl Sync for RelatedDeploymentsBuilder
impl Unpin for RelatedDeploymentsBuilder
impl UnwindSafe for RelatedDeploymentsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more