pub struct ReleaseUpdateByPipelineInput {
pub version: Option<String>,
pub stage: Option<String>,
pub pipeline_id: Option<String>,
}Expand description
Input for updating a release by pipeline.
Fields§
§version: Option<String>The version of the release to update. If not provided, the latest started or latest planned release will be updated.
stage: Option<String>The stage name to set. First tries exact match, then falls back to case-insensitive matching with dashes/underscores treated as spaces.
pipeline_id: Option<String>The identifier of the pipeline.
Trait Implementations§
Source§impl Clone for ReleaseUpdateByPipelineInput
impl Clone for ReleaseUpdateByPipelineInput
Source§fn clone(&self) -> ReleaseUpdateByPipelineInput
fn clone(&self) -> ReleaseUpdateByPipelineInput
Returns a duplicate 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 ReleaseUpdateByPipelineInput
impl Debug for ReleaseUpdateByPipelineInput
Source§impl Default for ReleaseUpdateByPipelineInput
impl Default for ReleaseUpdateByPipelineInput
Source§fn default() -> ReleaseUpdateByPipelineInput
fn default() -> ReleaseUpdateByPipelineInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseUpdateByPipelineInput
impl<'de> Deserialize<'de> for ReleaseUpdateByPipelineInput
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
Auto Trait Implementations§
impl Freeze for ReleaseUpdateByPipelineInput
impl RefUnwindSafe for ReleaseUpdateByPipelineInput
impl Send for ReleaseUpdateByPipelineInput
impl Sync for ReleaseUpdateByPipelineInput
impl Unpin for ReleaseUpdateByPipelineInput
impl UnwindSafe for ReleaseUpdateByPipelineInput
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