#[non_exhaustive]pub struct WebhookAuthConfiguration {
pub allowed_ip_range: Option<String>,
pub secret_token: Option<String>,
}
Expand description
The authentication applied to incoming webhook trigger requests.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.allowed_ip_range: Option<String>
The property used to configure acceptance of webhooks in an IP address range. For IP, only the AllowedIPRange
property must be set. This property must be set to a valid CIDR range.
secret_token: Option<String>
The property used to configure GitHub authentication. For GITHUB_HMAC, only the SecretToken
property must be set.
Implementations§
source§impl WebhookAuthConfiguration
impl WebhookAuthConfiguration
sourcepub fn allowed_ip_range(&self) -> Option<&str>
pub fn allowed_ip_range(&self) -> Option<&str>
The property used to configure acceptance of webhooks in an IP address range. For IP, only the AllowedIPRange
property must be set. This property must be set to a valid CIDR range.
sourcepub fn secret_token(&self) -> Option<&str>
pub fn secret_token(&self) -> Option<&str>
The property used to configure GitHub authentication. For GITHUB_HMAC, only the SecretToken
property must be set.
source§impl WebhookAuthConfiguration
impl WebhookAuthConfiguration
sourcepub fn builder() -> WebhookAuthConfigurationBuilder
pub fn builder() -> WebhookAuthConfigurationBuilder
Creates a new builder-style object to manufacture WebhookAuthConfiguration
.
Trait Implementations§
source§impl Clone for WebhookAuthConfiguration
impl Clone for WebhookAuthConfiguration
source§fn clone(&self) -> WebhookAuthConfiguration
fn clone(&self) -> WebhookAuthConfiguration
Returns a copy 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 WebhookAuthConfiguration
impl Debug for WebhookAuthConfiguration
source§impl PartialEq for WebhookAuthConfiguration
impl PartialEq for WebhookAuthConfiguration
source§fn eq(&self, other: &WebhookAuthConfiguration) -> bool
fn eq(&self, other: &WebhookAuthConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WebhookAuthConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for WebhookAuthConfiguration
impl Send for WebhookAuthConfiguration
impl Sync for WebhookAuthConfiguration
impl Unpin for WebhookAuthConfiguration
impl UnwindSafe for WebhookAuthConfiguration
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.