#[non_exhaustive]pub struct ExperimentTemplateActionBuilder { /* private fields */ }Expand description
A builder for ExperimentTemplateAction.
Implementations§
source§impl ExperimentTemplateActionBuilder
impl ExperimentTemplateActionBuilder
sourcepub fn set_action_id(self, input: Option<String>) -> Self
pub fn set_action_id(self, input: Option<String>) -> Self
The ID of the action.
sourcepub fn get_action_id(&self) -> &Option<String>
pub fn get_action_id(&self) -> &Option<String>
The ID of the action.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description for the action.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description for the action.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description for the action.
sourcepub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to parameters.
To override the contents of this collection use set_parameters.
The parameters for the action.
sourcepub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
The parameters for the action.
sourcepub fn get_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_parameters(&self) -> &Option<HashMap<String, String>>
The parameters for the action.
sourcepub fn targets(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn targets(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to targets.
To override the contents of this collection use set_targets.
The targets for the action.
sourcepub fn set_targets(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_targets(self, input: Option<HashMap<String, String>>) -> Self
The targets for the action.
sourcepub fn start_after(self, input: impl Into<String>) -> Self
pub fn start_after(self, input: impl Into<String>) -> Self
Appends an item to start_after.
To override the contents of this collection use set_start_after.
The name of the action that must be completed before the current action starts.
sourcepub fn set_start_after(self, input: Option<Vec<String>>) -> Self
pub fn set_start_after(self, input: Option<Vec<String>>) -> Self
The name of the action that must be completed before the current action starts.
sourcepub fn get_start_after(&self) -> &Option<Vec<String>>
pub fn get_start_after(&self) -> &Option<Vec<String>>
The name of the action that must be completed before the current action starts.
sourcepub fn build(self) -> ExperimentTemplateAction
pub fn build(self) -> ExperimentTemplateAction
Consumes the builder and constructs a ExperimentTemplateAction.
Trait Implementations§
source§impl Clone for ExperimentTemplateActionBuilder
impl Clone for ExperimentTemplateActionBuilder
source§fn clone(&self) -> ExperimentTemplateActionBuilder
fn clone(&self) -> ExperimentTemplateActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ExperimentTemplateActionBuilder
impl Default for ExperimentTemplateActionBuilder
source§fn default() -> ExperimentTemplateActionBuilder
fn default() -> ExperimentTemplateActionBuilder
source§impl PartialEq for ExperimentTemplateActionBuilder
impl PartialEq for ExperimentTemplateActionBuilder
source§fn eq(&self, other: &ExperimentTemplateActionBuilder) -> bool
fn eq(&self, other: &ExperimentTemplateActionBuilder) -> bool
self and other values to be equal, and is used
by ==.