Class: Google::Apis::ContainerV1beta1::GetOpenIdConfigResponse

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

GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GetOpenIdConfigResponse

Returns a new instance of GetOpenIdConfigResponse.



3087
3088
3089
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3087

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



3050
3051
3052
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3050

def cache_header
  @cache_header
end

#claims_supportedArray<String>

Supported claims. Corresponds to the JSON property claims_supported

Returns:

  • (Array<String>)


3055
3056
3057
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3055

def claims_supported
  @claims_supported
end

#grant_typesArray<String>

Supported grant types. Corresponds to the JSON property grant_types

Returns:

  • (Array<String>)


3060
3061
3062
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3060

def grant_types
  @grant_types
end

#id_token_signing_alg_values_supportedArray<String>

supported ID Token signing Algorithms. Corresponds to the JSON property id_token_signing_alg_values_supported

Returns:

  • (Array<String>)


3065
3066
3067
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3065

def id_token_signing_alg_values_supported
  @id_token_signing_alg_values_supported
end

#issuerString

OIDC Issuer. Corresponds to the JSON property issuer

Returns:

  • (String)


3070
3071
3072
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3070

def issuer
  @issuer
end

#jwks_uriString

JSON Web Key uri. Corresponds to the JSON property jwks_uri

Returns:

  • (String)


3075
3076
3077
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3075

def jwks_uri
  @jwks_uri
end

#response_types_supportedArray<String>

Supported response types. Corresponds to the JSON property response_types_supported

Returns:

  • (Array<String>)


3080
3081
3082
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3080

def response_types_supported
  @response_types_supported
end

#subject_types_supportedArray<String>

Supported subject types. Corresponds to the JSON property subject_types_supported

Returns:

  • (Array<String>)


3085
3086
3087
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3085

def subject_types_supported
  @subject_types_supported
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3092

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