Gets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details. This API is not yet intended for general use, and is not available for all clusters.
HTTP request
GET https://container.googleapis.com/v1/{parent=projects/*/locations/*/clusters/*}/.well-known/openid-configuration
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
The cluster (project, location, cluster id) to get the discovery document for. Specified in the format |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.
JSON representation | |
---|---|
{
"issuer": string,
"jwks_uri": string,
"response_types_supported": [
string
],
"subject_types_supported": [
string
],
"id_token_signing_alg_values_supported": [
string
],
"claims_supported": [
string
],
"grant_types": [
string
],
"cacheHeader": {
object ( |
Fields | |
---|---|
issuer |
OIDC Issuer. |
jwks_uri |
JSON Web Key uri. |
response_types_supported[] |
Supported response types. |
subject_types_supported[] |
Supported subject types. |
id_token_signing_alg_values_supported[] |
supported ID Token signing Algorithms. |
claims_supported[] |
Supported claims. |
grant_types[] |
Supported grant types. |
cacheHeader |
OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header. |