#[non_exhaustive]pub struct CreateConnectionAuthRequestParameters {
pub basic_auth_parameters: Option<CreateConnectionBasicAuthRequestParameters>,
pub o_auth_parameters: Option<CreateConnectionOAuthRequestParameters>,
pub api_key_auth_parameters: Option<CreateConnectionApiKeyAuthRequestParameters>,
pub invocation_http_parameters: Option<ConnectionHttpParameters>,
}
Expand description
Contains the authorization parameters for the connection.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.basic_auth_parameters: Option<CreateConnectionBasicAuthRequestParameters>
A CreateConnectionBasicAuthRequestParameters
object that contains the Basic authorization parameters to use for the connection.
o_auth_parameters: Option<CreateConnectionOAuthRequestParameters>
A CreateConnectionOAuthRequestParameters
object that contains the OAuth authorization parameters to use for the connection.
api_key_auth_parameters: Option<CreateConnectionApiKeyAuthRequestParameters>
A CreateConnectionApiKeyAuthRequestParameters
object that contains the API key authorization parameters to use for the connection.
invocation_http_parameters: Option<ConnectionHttpParameters>
A ConnectionHttpParameters
object that contains the API key authorization parameters to use for the connection. Note that if you include additional parameters for the target of a rule via HttpParameters
, including query strings, the parameters added for the connection take precedence.
Implementations§
source§impl CreateConnectionAuthRequestParameters
impl CreateConnectionAuthRequestParameters
sourcepub fn basic_auth_parameters(
&self
) -> Option<&CreateConnectionBasicAuthRequestParameters>
pub fn basic_auth_parameters( &self ) -> Option<&CreateConnectionBasicAuthRequestParameters>
A CreateConnectionBasicAuthRequestParameters
object that contains the Basic authorization parameters to use for the connection.
sourcepub fn o_auth_parameters(
&self
) -> Option<&CreateConnectionOAuthRequestParameters>
pub fn o_auth_parameters( &self ) -> Option<&CreateConnectionOAuthRequestParameters>
A CreateConnectionOAuthRequestParameters
object that contains the OAuth authorization parameters to use for the connection.
sourcepub fn api_key_auth_parameters(
&self
) -> Option<&CreateConnectionApiKeyAuthRequestParameters>
pub fn api_key_auth_parameters( &self ) -> Option<&CreateConnectionApiKeyAuthRequestParameters>
A CreateConnectionApiKeyAuthRequestParameters
object that contains the API key authorization parameters to use for the connection.
sourcepub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
pub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
A ConnectionHttpParameters
object that contains the API key authorization parameters to use for the connection. Note that if you include additional parameters for the target of a rule via HttpParameters
, including query strings, the parameters added for the connection take precedence.
source§impl CreateConnectionAuthRequestParameters
impl CreateConnectionAuthRequestParameters
sourcepub fn builder() -> CreateConnectionAuthRequestParametersBuilder
pub fn builder() -> CreateConnectionAuthRequestParametersBuilder
Creates a new builder-style object to manufacture CreateConnectionAuthRequestParameters
.
Trait Implementations§
source§impl Clone for CreateConnectionAuthRequestParameters
impl Clone for CreateConnectionAuthRequestParameters
source§fn clone(&self) -> CreateConnectionAuthRequestParameters
fn clone(&self) -> CreateConnectionAuthRequestParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateConnectionAuthRequestParameters
impl PartialEq for CreateConnectionAuthRequestParameters
source§fn eq(&self, other: &CreateConnectionAuthRequestParameters) -> bool
fn eq(&self, other: &CreateConnectionAuthRequestParameters) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateConnectionAuthRequestParameters
Auto Trait Implementations§
impl Freeze for CreateConnectionAuthRequestParameters
impl RefUnwindSafe for CreateConnectionAuthRequestParameters
impl Send for CreateConnectionAuthRequestParameters
impl Sync for CreateConnectionAuthRequestParameters
impl Unpin for CreateConnectionAuthRequestParameters
impl UnwindSafe for CreateConnectionAuthRequestParameters
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more