pub struct ArtifactTriggerConfiguration {
pub is_trigger_supported: Option<bool>,
pub is_trigger_supported_only_in_hosted: Option<bool>,
pub is_webhook_supported_at_server_level: Option<bool>,
pub payload_hash_header_name: Option<String>,
pub resources: Option<Value>,
pub webhook_payload_mapping: Option<Value>,
}Fields§
§is_trigger_supported: Option<bool>Gets or sets the whether trigger is supported or not.
is_trigger_supported_only_in_hosted: Option<bool>Gets or sets the whether trigger is supported only on hosted environment.
is_webhook_supported_at_server_level: Option<bool>Gets or sets the whether webhook is supported at server level.
payload_hash_header_name: Option<String>Gets or sets the payload hash header name for the artifact trigger configuration.
resources: Option<Value>Gets or sets the resources for artifact trigger configuration.
webhook_payload_mapping: Option<Value>Gets or sets the webhook payload mapping for artifact trigger configuration.
Implementations§
Trait Implementations§
Source§impl Clone for ArtifactTriggerConfiguration
impl Clone for ArtifactTriggerConfiguration
Source§fn clone(&self) -> ArtifactTriggerConfiguration
fn clone(&self) -> ArtifactTriggerConfiguration
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 ArtifactTriggerConfiguration
impl Debug for ArtifactTriggerConfiguration
Source§impl Default for ArtifactTriggerConfiguration
impl Default for ArtifactTriggerConfiguration
Source§fn default() -> ArtifactTriggerConfiguration
fn default() -> ArtifactTriggerConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArtifactTriggerConfiguration
impl<'de> Deserialize<'de> for ArtifactTriggerConfiguration
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 ArtifactTriggerConfiguration
impl PartialEq for ArtifactTriggerConfiguration
Source§fn eq(&self, other: &ArtifactTriggerConfiguration) -> bool
fn eq(&self, other: &ArtifactTriggerConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArtifactTriggerConfiguration
Auto Trait Implementations§
impl Freeze for ArtifactTriggerConfiguration
impl RefUnwindSafe for ArtifactTriggerConfiguration
impl Send for ArtifactTriggerConfiguration
impl Sync for ArtifactTriggerConfiguration
impl Unpin for ArtifactTriggerConfiguration
impl UnwindSafe for ArtifactTriggerConfiguration
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more