Class: Google::Apis::ContainerV1beta1::GetJsonWebKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::GetJsonWebKeysResponse
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/representations.rb
Overview
GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517
Instance Attribute Summary collapse
-
#cache_header ⇒ Google::Apis::ContainerV1beta1::HttpCacheControlResponseHeader
RFC-2616: cache control support Corresponds to the JSON property
cacheHeader
. -
#keys ⇒ Array<Google::Apis::ContainerV1beta1::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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GetJsonWebKeysResponse
Returns a new instance of GetJsonWebKeysResponse
1295 1296 1297 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1295 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cache_header ⇒ Google::Apis::ContainerV1beta1::HttpCacheControlResponseHeader
RFC-2616: cache control support
Corresponds to the JSON property cacheHeader
1287 1288 1289 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1287 def cache_header @cache_header end |
#keys ⇒ Array<Google::Apis::ContainerV1beta1::Jwk>
The public component of the keys used by the cluster to sign token
requests.
Corresponds to the JSON property keys
1293 1294 1295 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1293 def keys @keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1300 1301 1302 1303 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1300 def update!(**args) @cache_header = args[:cache_header] if args.key?(:cache_header) @keys = args[:keys] if args.key?(:keys) end |