Skip to main content

clusters_jwks

Creates, updates, deletes, gets or lists a clusters_jwks resource.

Overview

Nameclusters_jwks
TypeResource
Idgoogle.container.clusters_jwks

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
cacheHeaderobjectFor HTTP requests, this field is automatically extracted into the Cache-Control HTTP header. (id: HttpCacheControlResponseHeader)
keysarrayThe public component of the keys used by the cluster to sign token requests.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_clusters_get_jwksselectprojectsId, locationsId, clustersIdGets 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.

NameDatatypeDescription
clustersIdstring
locationsIdstring
projectsIdstring

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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND clustersId = '{{ clustersId }}' -- required;