class Google::Apis::ContainerV1::GetJsonWebKeysResponse

GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517

Attributes

cache_header[RW]

RFC-2616: cache control support Corresponds to the JSON property `cacheHeader` @return [Google::Apis::ContainerV1::HttpCacheControlResponseHeader]

keys[RW]

The public component of the keys used by the cluster to sign token requests. Corresponds to the JSON property `keys` @return [Array<Google::Apis::ContainerV1::Jwk>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1/classes.rb, line 1558
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1/classes.rb, line 1563
def update!(**args)
  @cache_header = args[:cache_header] if args.key?(:cache_header)
  @keys = args[:keys] if args.key?(:keys)
end