Class: Google::Apis::ContainerV1::GetJsonWebKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::GetJsonWebKeysResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517
Instance Attribute Summary collapse
-
#cache_header ⇒ Google::Apis::ContainerV1::HttpCacheControlResponseHeader
RFC-2616: cache control support Corresponds to the JSON property
cacheHeader
. -
#keys ⇒ Array<Google::Apis::ContainerV1::Jwk>
The public component of the keys used by the cluster to sign token requests.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GetJsonWebKeysResponse
constructor
A new instance of GetJsonWebKeysResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GetJsonWebKeysResponse
Returns a new instance of GetJsonWebKeysResponse.
2879 2880 2881 |
# File 'lib/google/apis/container_v1/classes.rb', line 2879 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cache_header ⇒ Google::Apis::ContainerV1::HttpCacheControlResponseHeader
RFC-2616: cache control support
Corresponds to the JSON property cacheHeader
2872 2873 2874 |
# File 'lib/google/apis/container_v1/classes.rb', line 2872 def cache_header @cache_header end |
#keys ⇒ Array<Google::Apis::ContainerV1::Jwk>
The public component of the keys used by the cluster to sign token requests.
Corresponds to the JSON property keys
2877 2878 2879 |
# File 'lib/google/apis/container_v1/classes.rb', line 2877 def keys @keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2884 2885 2886 2887 |
# File 'lib/google/apis/container_v1/classes.rb', line 2884 def update!(**args) @cache_header = args[:cache_header] if args.key?(:cache_header) @keys = args[:keys] if args.key?(:keys) end |