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

NameDatatypeDescription
cacheHeaderobjectRFC-2616: cache control support
keysarrayThe public component of the keys used by the cluster to sign token requests.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_clusters_get_jwksSELECTclustersId, locationsId, projectsIdGets 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 }}';