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

pub struct WebHookTrigger {
    pub allow_env: Option<bool>,
    pub secret: Option<String>,
    pub secret_reference: Option<SecretLocalReference>,
}

WebHookTrigger is a trigger that gets invoked using a webhook type of post

Fields

allow_env: Option<bool>

allowEnv determines whether the webhook can set environment variables; can only be set to true for GenericWebHook.

secret: Option<String>

secret used to validate requests. Deprecated: use SecretReference instead.

secret_reference: Option<SecretLocalReference>

secretReference is a reference to a secret in the same namespace, containing the value to be validated when the webhook is invoked. The secret being referenced must contain a key named "WebHookSecretKey", the value of which will be checked against the value supplied in the webhook invocation.

Trait Implementations

impl Clone for WebHookTrigger[src]

impl Debug for WebHookTrigger[src]

impl Default for WebHookTrigger[src]

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

impl PartialEq<WebHookTrigger> for WebHookTrigger[src]

impl Serialize for WebHookTrigger[src]

impl StructuralPartialEq for WebHookTrigger[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.