Class: Google::Apis::ContainerV1::GetJsonWebKeysResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GetJsonWebKeysResponse

Returns a new instance of GetJsonWebKeysResponse



1016
1017
1018
# File 'generated/google/apis/container_v1/classes.rb', line 1016

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cache_headerGoogle::Apis::ContainerV1::HttpCacheControlResponseHeader

RFC-2616: cache control support Corresponds to the JSON property cacheHeader



1008
1009
1010
# File 'generated/google/apis/container_v1/classes.rb', line 1008

def cache_header
  @cache_header
end

#keysArray<Google::Apis::ContainerV1::Jwk>

The public component of the keys used by the cluster to sign token requests. Corresponds to the JSON property keys

Returns:



1014
1015
1016
# File 'generated/google/apis/container_v1/classes.rb', line 1014

def keys
  @keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1021
1022
1023
1024
# File 'generated/google/apis/container_v1/classes.rb', line 1021

def update!(**args)
  @cache_header = args[:cache_header] if args.key?(:cache_header)
  @keys = args[:keys] if args.key?(:keys)
end