pub struct ReleasePipelineCreateInput {
pub id: MaybeUndefined<String>,
pub name: String,
pub slug_id: MaybeUndefined<String>,
pub type: MaybeUndefined<ReleasePipelineType>,
pub is_production: MaybeUndefined<bool>,
pub include_path_patterns: MaybeUndefined<Vec<String>>,
pub team_ids: MaybeUndefined<Vec<String>>,
}Expand description
Input for creating a new release pipeline.
Fields§
§id: MaybeUndefined<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
name: StringThe name of the pipeline.
slug_id: MaybeUndefined<String>The pipeline’s unique slug identifier. If not provided, it will be auto-generated.
type: MaybeUndefined<ReleasePipelineType>The type of the pipeline.
is_production: MaybeUndefined<bool>Whether this pipeline targets a production environment. Default to true.
include_path_patterns: MaybeUndefined<Vec<String>>Glob patterns to include commits affecting matching file paths.
team_ids: MaybeUndefined<Vec<String>>The identifiers of the teams this pipeline is associated with.
Trait Implementations§
Source§impl Clone for ReleasePipelineCreateInput
impl Clone for ReleasePipelineCreateInput
Source§fn clone(&self) -> ReleasePipelineCreateInput
fn clone(&self) -> ReleasePipelineCreateInput
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 ReleasePipelineCreateInput
impl Debug for ReleasePipelineCreateInput
Source§impl Default for ReleasePipelineCreateInput
impl Default for ReleasePipelineCreateInput
Source§fn default() -> ReleasePipelineCreateInput
fn default() -> ReleasePipelineCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleasePipelineCreateInput
impl<'de> Deserialize<'de> for ReleasePipelineCreateInput
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 ReleasePipelineCreateInput
impl RefUnwindSafe for ReleasePipelineCreateInput
impl Send for ReleasePipelineCreateInput
impl Sync for ReleasePipelineCreateInput
impl Unpin for ReleasePipelineCreateInput
impl UnsafeUnpin for ReleasePipelineCreateInput
impl UnwindSafe for ReleasePipelineCreateInput
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