Class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenteraiplatformV1alpha1::SamlConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb,
lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb,
lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb
Instance Attribute Summary collapse
-
#cert ⇒ String
X.509 public certificate for IdP Corresponds to the JSON property
cert. -
#email_mapping ⇒ String
IdP field that maps to the user’s email address Corresponds to the JSON property
emailMapping. -
#entity_id ⇒ String
The entity ID for the identity provider.
-
#login_uri ⇒ String
The sso login url.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SamlConfig
constructor
A new instance of SamlConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SamlConfig
Returns a new instance of SamlConfig.
684 685 686 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 684 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert ⇒ String
X.509 public certificate for IdP
Corresponds to the JSON property cert
666 667 668 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 666 def cert @cert end |
#email_mapping ⇒ String
IdP field that maps to the user’s email address
Corresponds to the JSON property emailMapping
671 672 673 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 671 def email_mapping @email_mapping end |
#entity_id ⇒ String
The entity ID for the identity provider. Example: https://[IDP Domain]/saml/
metadata
Corresponds to the JSON property entityId
677 678 679 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 677 def entity_id @entity_id end |
#login_uri ⇒ String
The sso login url. Example: https://[IDP Domain]/saml/sso/login
Corresponds to the JSON property loginUri
682 683 684 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 682 def login_uri @login_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
689 690 691 692 693 694 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 689 def update!(**args) @cert = args[:cert] if args.key?(:cert) @email_mapping = args[:email_mapping] if args.key?(:email_mapping) @entity_id = args[:entity_id] if args.key?(:entity_id) @login_uri = args[:login_uri] if args.key?(:login_uri) end |