pub struct GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client {
pub attributes_type: Option<String>,
pub client_id: Option<String>,
pub client_secret: Option<GoogleIamAdminV1WorkforcePoolProviderOidcClientSecret>,
pub issuer_uri: Option<String>,
pub query_parameters: Option<GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2ClientQueryParameters>,
}
Expand description
Represents the OAuth 2.0 client credential configuration for retrieving additional user attributes that are not present in the initial authentication credentials from the identity provider, e.g. groups. See https://datatracker.ietf.org/doc/html/rfc6749#section-4.4 for more details on client credentials grant flow.
This type is not used in any activity, and only used as part of another schema.
Fields§
§attributes_type: Option<String>
Required. Represents the IdP and type of claims that should be fetched.
client_id: Option<String>
Required. The OAuth 2.0 client ID for retrieving extra attributes from the identity provider. Required to get the Access Token using client credentials grant flow.
client_secret: Option<GoogleIamAdminV1WorkforcePoolProviderOidcClientSecret>
Required. The OAuth 2.0 client secret for retrieving extra attributes from the identity provider. Required to get the Access Token using client credentials grant flow.
issuer_uri: Option<String>
Required. The OIDC identity provider’s issuer URI. Must be a valid URI using the https
scheme. Required to get the OIDC discovery document.
query_parameters: Option<GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2ClientQueryParameters>
Optional. Represents the parameters to control which claims are fetched from an IdP.
Trait Implementations§
Source§impl Clone for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl Clone for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
Source§fn clone(
&self,
) -> GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
fn clone( &self, ) -> GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl Default for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
Source§fn default() -> GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
fn default() -> GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
Source§impl<'de> Deserialize<'de> for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl<'de> Deserialize<'de> for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
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>,
impl Part for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
Auto Trait Implementations§
impl Freeze for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl RefUnwindSafe for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl Send for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl Sync for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl Unpin for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
impl UnwindSafe for GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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