Class: Google::Apis::ContainerV1beta1::GetJsonWebKeysResponse

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GetJsonWebKeysResponse

Returns a new instance of GetJsonWebKeysResponse.



2143
2144
2145
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2143

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

Instance Attribute Details

#cache_headerGoogle::Apis::ContainerV1beta1::HttpCacheControlResponseHeader

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



2136
2137
2138
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2136

def cache_header
  @cache_header
end

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

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



2141
2142
2143
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2141

def keys
  @keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2148
2149
2150
2151
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2148

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