well_known_openid_configuration
Creates, updates, deletes, gets or lists a well_known_openid_configuration
resource.
Overview
Name | well_known_openid_configuration |
Type | Resource |
Id | google.container.well_known_openid_configuration |
Fields
Name | Datatype | Description |
---|---|---|
cacheHeader | object | RFC-2616: cache control support |
claims_supported | array | Supported claims. |
grant_types | array | Supported grant types. |
id_token_signing_alg_values_supported | array | supported ID Token signing Algorithms. |
issuer | string | OIDC Issuer. |
jwks_uri | string | JSON Web Key uri. |
response_types_supported | array | Supported response types. |
subject_types_supported | array | Supported subject types. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_clusters_well-known_get_openid-configuration | SELECT | clustersId, locationsId, projectsId | Gets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details. |
SELECT
examples
Gets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.
SELECT
cacheHeader,
claims_supported,
grant_types,
id_token_signing_alg_values_supported,
issuer,
jwks_uri,
response_types_supported,
subject_types_supported
FROM google.container.well_known_openid_configuration
WHERE clustersId = '{{ clustersId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';