Class: Google::Apis::ContainerV1::GetOpenIdConfigResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::GetOpenIdConfigResponse
- 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
GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.
Instance Attribute Summary collapse
-
#cache_header ⇒ Google::Apis::ContainerV1::HttpCacheControlResponseHeader
RFC-2616: cache control support Corresponds to the JSON property
cacheHeader. -
#claims_supported ⇒ Array<String>
Supported claims.
-
#grant_types ⇒ Array<String>
Supported grant types.
-
#id_token_signing_alg_values_supported ⇒ Array<String>
supported ID Token signing Algorithms.
-
#issuer ⇒ String
OIDC Issuer.
-
#jwks_uri ⇒ String
JSON Web Key uri.
-
#response_types_supported ⇒ Array<String>
Supported response types.
-
#subject_types_supported ⇒ Array<String>
Supported subject types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GetOpenIdConfigResponse
constructor
A new instance of GetOpenIdConfigResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GetOpenIdConfigResponse
Returns a new instance of GetOpenIdConfigResponse.
1626 1627 1628 |
# File 'lib/google/apis/container_v1/classes.rb', line 1626 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
1589 1590 1591 |
# File 'lib/google/apis/container_v1/classes.rb', line 1589 def cache_header @cache_header end |
#claims_supported ⇒ Array<String>
Supported claims.
Corresponds to the JSON property claims_supported
1594 1595 1596 |
# File 'lib/google/apis/container_v1/classes.rb', line 1594 def claims_supported @claims_supported end |
#grant_types ⇒ Array<String>
Supported grant types.
Corresponds to the JSON property grant_types
1599 1600 1601 |
# File 'lib/google/apis/container_v1/classes.rb', line 1599 def grant_types @grant_types end |
#id_token_signing_alg_values_supported ⇒ Array<String>
supported ID Token signing Algorithms.
Corresponds to the JSON property id_token_signing_alg_values_supported
1604 1605 1606 |
# File 'lib/google/apis/container_v1/classes.rb', line 1604 def id_token_signing_alg_values_supported @id_token_signing_alg_values_supported end |
#issuer ⇒ String
OIDC Issuer.
Corresponds to the JSON property issuer
1609 1610 1611 |
# File 'lib/google/apis/container_v1/classes.rb', line 1609 def issuer @issuer end |
#jwks_uri ⇒ String
JSON Web Key uri.
Corresponds to the JSON property jwks_uri
1614 1615 1616 |
# File 'lib/google/apis/container_v1/classes.rb', line 1614 def jwks_uri @jwks_uri end |
#response_types_supported ⇒ Array<String>
Supported response types.
Corresponds to the JSON property response_types_supported
1619 1620 1621 |
# File 'lib/google/apis/container_v1/classes.rb', line 1619 def response_types_supported @response_types_supported end |
#subject_types_supported ⇒ Array<String>
Supported subject types.
Corresponds to the JSON property subject_types_supported
1624 1625 1626 |
# File 'lib/google/apis/container_v1/classes.rb', line 1624 def subject_types_supported @subject_types_supported end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 |
# File 'lib/google/apis/container_v1/classes.rb', line 1631 def update!(**args) @cache_header = args[:cache_header] if args.key?(:cache_header) @claims_supported = args[:claims_supported] if args.key?(:claims_supported) @grant_types = args[:grant_types] if args.key?(:grant_types) @id_token_signing_alg_values_supported = args[:id_token_signing_alg_values_supported] if args.key?(:id_token_signing_alg_values_supported) @issuer = args[:issuer] if args.key?(:issuer) @jwks_uri = args[:jwks_uri] if args.key?(:jwks_uri) @response_types_supported = args[:response_types_supported] if args.key?(:response_types_supported) @subject_types_supported = args[:subject_types_supported] if args.key?(:subject_types_supported) end |