#[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 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 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
source§impl PartialEq<RelatedDeploymentsBuilder> for RelatedDeploymentsBuilder
impl PartialEq<RelatedDeploymentsBuilder> for RelatedDeploymentsBuilder
source§fn eq(&self, other: &RelatedDeploymentsBuilder) -> bool
fn eq(&self, other: &RelatedDeploymentsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RelatedDeploymentsBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more