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
The following fields are returned by SELECT
queries:
- projects_locations_clusters_well-known_get_openid-configuration
Successful response
Name | Datatype | Description |
---|---|---|
cacheHeader | object | For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header. (id: HttpCacheControlResponseHeader) |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_clusters_well-known_get_openid-configuration | select | projectsId , locationsId , clustersId | Gets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
clustersId | string | |
locationsId | string | |
projectsId | string |
SELECT
examples
- projects_locations_clusters_well-known_get_openid-configuration
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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND clustersId = '{{ clustersId }}' -- required;