Class: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
- 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
Configuration for web single sign-on for the OIDC provider.
Instance Attribute Summary collapse
-
#assertion_claims_behavior ⇒ String
Required.
-
#response_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
constructor
A new instance of GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
Returns a new instance of GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig.
612 613 614 |
# File 'lib/google/apis/iam_v1/classes.rb', line 612 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assertion_claims_behavior ⇒ String
Required. The behavior for how OIDC Claims are included in the assertion
object used for attribute mapping and attribute condition.
Corresponds to the JSON property assertionClaimsBehavior
604 605 606 |
# File 'lib/google/apis/iam_v1/classes.rb', line 604 def assertion_claims_behavior @assertion_claims_behavior end |
#response_type ⇒ String
Required. The Response Type to request for in the OIDC Authorization Request
for web sign-in.
Corresponds to the JSON property responseType
610 611 612 |
# File 'lib/google/apis/iam_v1/classes.rb', line 610 def response_type @response_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
617 618 619 620 |
# File 'lib/google/apis/iam_v1/classes.rb', line 617 def update!(**args) @assertion_claims_behavior = args[:assertion_claims_behavior] if args.key?(:assertion_claims_behavior) @response_type = args[:response_type] if args.key?(:response_type) end |