Struct gapi_grpc::google::iam::v1beta::workload_identity_pool_provider::Oidc[][src]

pub struct Oidc {
    pub issuer_uri: String,
    pub allowed_audiences: Vec<String>,
}

Represents an OpenId Connect 1.0 identity provider.

Fields

issuer_uri: String

Required. The OIDC issuer URL.

allowed_audiences: Vec<String>

Acceptable values for the aud field (audience) in the OIDC token. Token exchange requests are rejected if the token audience does not match one of the configured values. Each audience may be at most 256 characters. A maximum of 10 audiences may be configured.

If this list is empty, the OIDC token audience must be equal to the full canonical resource name of the WorkloadIdentityPoolProvider, with or without the HTTPS prefix. For example:

//iam.googleapis.com/projects/<project-number>/locations/<location>/workloadIdentityPools/<pool-id>/providers/<provider-id>
https://iam.googleapis.com/projects/<project-number>/locations/<location>/workloadIdentityPools/<pool-id>/providers/<provider-id>

Trait Implementations

impl Clone for Oidc[src]

impl Debug for Oidc[src]

impl Default for Oidc[src]

impl Message for Oidc[src]

impl PartialEq<Oidc> for Oidc[src]

impl StructuralPartialEq for Oidc[src]

Auto Trait Implementations

impl RefUnwindSafe for Oidc

impl Send for Oidc

impl Sync for Oidc

impl Unpin for Oidc

impl UnwindSafe for Oidc

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]