#[non_exhaustive]pub struct ModifyVerifiedAccessTrustProviderOidcOptionsBuilder { /* private fields */ }
Expand description
A builder for ModifyVerifiedAccessTrustProviderOidcOptions
.
Implementations§
source§impl ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
sourcepub fn set_issuer(self, input: Option<String>) -> Self
pub fn set_issuer(self, input: Option<String>) -> Self
The OIDC issuer.
sourcepub fn get_issuer(&self) -> &Option<String>
pub fn get_issuer(&self) -> &Option<String>
The OIDC issuer.
The OIDC authorization endpoint.
The OIDC authorization endpoint.
The OIDC authorization endpoint.
sourcepub fn token_endpoint(self, input: impl Into<String>) -> Self
pub fn token_endpoint(self, input: impl Into<String>) -> Self
The OIDC token endpoint.
sourcepub fn set_token_endpoint(self, input: Option<String>) -> Self
pub fn set_token_endpoint(self, input: Option<String>) -> Self
The OIDC token endpoint.
sourcepub fn get_token_endpoint(&self) -> &Option<String>
pub fn get_token_endpoint(&self) -> &Option<String>
The OIDC token endpoint.
sourcepub fn user_info_endpoint(self, input: impl Into<String>) -> Self
pub fn user_info_endpoint(self, input: impl Into<String>) -> Self
The OIDC user info endpoint.
sourcepub fn set_user_info_endpoint(self, input: Option<String>) -> Self
pub fn set_user_info_endpoint(self, input: Option<String>) -> Self
The OIDC user info endpoint.
sourcepub fn get_user_info_endpoint(&self) -> &Option<String>
pub fn get_user_info_endpoint(&self) -> &Option<String>
The OIDC user info endpoint.
sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
The client identifier.
sourcepub fn get_client_id(&self) -> &Option<String>
pub fn get_client_id(&self) -> &Option<String>
The client identifier.
sourcepub fn client_secret(self, input: impl Into<String>) -> Self
pub fn client_secret(self, input: impl Into<String>) -> Self
The client secret.
sourcepub fn set_client_secret(self, input: Option<String>) -> Self
pub fn set_client_secret(self, input: Option<String>) -> Self
The client secret.
sourcepub fn get_client_secret(&self) -> &Option<String>
pub fn get_client_secret(&self) -> &Option<String>
The client secret.
sourcepub fn scope(self, input: impl Into<String>) -> Self
pub fn scope(self, input: impl Into<String>) -> Self
OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.
sourcepub fn set_scope(self, input: Option<String>) -> Self
pub fn set_scope(self, input: Option<String>) -> Self
OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.
sourcepub fn get_scope(&self) -> &Option<String>
pub fn get_scope(&self) -> &Option<String>
OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.
sourcepub fn build(self) -> ModifyVerifiedAccessTrustProviderOidcOptions
pub fn build(self) -> ModifyVerifiedAccessTrustProviderOidcOptions
Consumes the builder and constructs a ModifyVerifiedAccessTrustProviderOidcOptions
.
Trait Implementations§
source§impl Clone for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl Clone for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
source§fn clone(&self) -> ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
fn clone(&self) -> ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl Default for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
source§fn default() -> ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
fn default() -> ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
source§impl PartialEq for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl PartialEq for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
source§fn eq(
&self,
other: &ModifyVerifiedAccessTrustProviderOidcOptionsBuilder,
) -> bool
fn eq( &self, other: &ModifyVerifiedAccessTrustProviderOidcOptionsBuilder, ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
Auto Trait Implementations§
impl Freeze for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl RefUnwindSafe for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl Send for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl Sync for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl Unpin for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
impl UnwindSafe for ModifyVerifiedAccessTrustProviderOidcOptionsBuilder
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