clusters_jwks
Creates, updates, deletes, gets or lists a clusters_jwks
resource.
Overview
Name | clusters_jwks |
Type | Resource |
Id | google.container.clusters_jwks |
Fields
The following fields are returned by SELECT
queries:
- projects_locations_clusters_get_jwks
Successful response
Name | Datatype | Description |
---|---|---|
cacheHeader | object | For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header. (id: HttpCacheControlResponseHeader) |
keys | array | The public component of the keys used by the cluster to sign token requests. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_clusters_get_jwks | select | projectsId , locationsId , clustersId | Gets the public component of the cluster signing keys in JSON Web Key format. |
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_get_jwks
Gets the public component of the cluster signing keys in JSON Web Key format.
SELECT
cacheHeader,
keys
FROM google.container.clusters_jwks
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND clustersId = '{{ clustersId }}' -- required;