pub struct RunPipelineParameters {
pub preview_run: Option<bool>,
pub resources: Option<RunResourcesParameters>,
pub stages_to_skip: Vec<String>,
pub template_parameters: Option<Value>,
pub variables: Option<Value>,
pub yaml_override: Option<String>,
}
Expand description
Settings which influence pipeline runs.
Fields§
§preview_run: Option<bool>
If true, don’t actually create a new run. Instead, return the final YAML document after parsing templates.
resources: Option<RunResourcesParameters>
§stages_to_skip: Vec<String>
§template_parameters: Option<Value>
§variables: Option<Value>
§yaml_override: Option<String>
If you use the preview run option, you may optionally supply different YAML. This allows you to preview the final YAML document without committing a changed file.
Implementations§
Trait Implementations§
source§impl Clone for RunPipelineParameters
impl Clone for RunPipelineParameters
source§fn clone(&self) -> RunPipelineParameters
fn clone(&self) -> RunPipelineParameters
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 RunPipelineParameters
impl Debug for RunPipelineParameters
source§impl Default for RunPipelineParameters
impl Default for RunPipelineParameters
source§fn default() -> RunPipelineParameters
fn default() -> RunPipelineParameters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RunPipelineParameters
impl<'de> Deserialize<'de> for RunPipelineParameters
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for RunPipelineParameters
impl PartialEq for RunPipelineParameters
source§fn eq(&self, other: &RunPipelineParameters) -> bool
fn eq(&self, other: &RunPipelineParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for RunPipelineParameters
impl Serialize for RunPipelineParameters
impl StructuralPartialEq for RunPipelineParameters
Auto Trait Implementations§
impl RefUnwindSafe for RunPipelineParameters
impl Send for RunPipelineParameters
impl Sync for RunPipelineParameters
impl Unpin for RunPipelineParameters
impl UnwindSafe for RunPipelineParameters
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