Interface AttachedOidcConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AttachedOidcConfig
,AttachedOidcConfig.Builder
public interface AttachedOidcConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getIssuerUrl()
A JSON Web Token (JWT) issuer URI.com.google.protobuf.ByteString
getIssuerUrlBytes()
A JSON Web Token (JWT) issuer URI.com.google.protobuf.ByteString
getJwks()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIssuerUrl
String getIssuerUrl()
A JSON Web Token (JWT) issuer URI. `issuer` must start with `https://`.
string issuer_url = 1;
- Returns:
- The issuerUrl.
-
getIssuerUrlBytes
com.google.protobuf.ByteString getIssuerUrlBytes()
A JSON Web Token (JWT) issuer URI. `issuer` must start with `https://`.
string issuer_url = 1;
- Returns:
- The bytes for issuerUrl.
-
getJwks
com.google.protobuf.ByteString getJwks()
Optional. OIDC verification keys in JWKS format (RFC 7517). It contains a list of OIDC verification keys that can be used to verify OIDC JWTs. This field is required for cluster that doesn't have a publicly available discovery endpoint. When provided, it will be directly used to verify the OIDC JWT asserted by the IDP.
bytes jwks = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The jwks.
-
-