Class: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidc
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidc
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb
Overview
Represents an OpenId Connect 1.0 identity provider.
Instance Attribute Summary collapse
-
#client_id ⇒ String
Required.
-
#issuer_uri ⇒ String
Required.
-
#web_sso_config ⇒ Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
Configuration for web single sign-on for the OIDC provider.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIamAdminV1WorkforcePoolProviderOidc
constructor
A new instance of GoogleIamAdminV1WorkforcePoolProviderOidc.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleIamAdminV1WorkforcePoolProviderOidc
Returns a new instance of GoogleIamAdminV1WorkforcePoolProviderOidc.
584 585 586 |
# File 'lib/google/apis/iam_v1/classes.rb', line 584 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
Required. The client ID. Must match the audience claim of the JWT issued by
the identity provider.
Corresponds to the JSON property clientId
572 573 574 |
# File 'lib/google/apis/iam_v1/classes.rb', line 572 def client_id @client_id end |
#issuer_uri ⇒ String
Required. The OIDC issuer URI. Must be a valid URI using the 'https' scheme.
Corresponds to the JSON property issuerUri
577 578 579 |
# File 'lib/google/apis/iam_v1/classes.rb', line 577 def issuer_uri @issuer_uri end |
#web_sso_config ⇒ Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
Configuration for web single sign-on for the OIDC provider.
Corresponds to the JSON property webSsoConfig
582 583 584 |
# File 'lib/google/apis/iam_v1/classes.rb', line 582 def web_sso_config @web_sso_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
589 590 591 592 593 |
# File 'lib/google/apis/iam_v1/classes.rb', line 589 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri) @web_sso_config = args[:web_sso_config] if args.key?(:web_sso_config) end |