clusters_jwks
Creates, updates, deletes, gets or lists a clusters_jwks
resource.
Overview
Name | clusters_jwks |
Type | Resource |
Id | google.container.clusters_jwks |
Fields
Name | Datatype | Description |
---|---|---|
cacheHeader | object | RFC-2616: cache control support |
keys | array | The public component of the keys used by the cluster to sign token requests. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_clusters_get_jwks | SELECT | clustersId, locationsId, projectsId | Gets the public component of the cluster signing keys in JSON Web Key format. |
SELECT
examples
Gets the public component of the cluster signing keys in JSON Web Key format.
SELECT
cacheHeader,
keys
FROM google.container.clusters_jwks
WHERE clustersId = '{{ clustersId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';