[][src]Struct openshift_openapi::api::build::v1::JenkinsPipelineBuildStrategy

pub struct JenkinsPipelineBuildStrategy {
    pub env: Option<Vec<EnvVar>>,
    pub jenkinsfile: Option<String>,
    pub jenkinsfile_path: Option<String>,
}

JenkinsPipelineBuildStrategy holds parameters specific to a Jenkins Pipeline build.

Fields

env: Option<Vec<EnvVar>>

env contains additional environment variables you want to pass into a build pipeline.

jenkinsfile: Option<String>

Jenkinsfile defines the optional raw contents of a Jenkinsfile which defines a Jenkins pipeline build.

jenkinsfile_path: Option<String>

JenkinsfilePath is the optional path of the Jenkinsfile that will be used to configure the pipeline relative to the root of the context (contextDir). If both JenkinsfilePath & Jenkinsfile are both not specified, this defaults to Jenkinsfile in the root of the specified contextDir.

Trait Implementations

impl Clone for JenkinsPipelineBuildStrategy[src]

impl Debug for JenkinsPipelineBuildStrategy[src]

impl Default for JenkinsPipelineBuildStrategy[src]

impl<'de> Deserialize<'de> for JenkinsPipelineBuildStrategy[src]

impl PartialEq<JenkinsPipelineBuildStrategy> for JenkinsPipelineBuildStrategy[src]

impl Serialize for JenkinsPipelineBuildStrategy[src]

impl StructuralPartialEq for JenkinsPipelineBuildStrategy[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.