Class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams
- 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
Overview
Message storing SAML params to enable Google as IDP.
Instance Attribute Summary collapse
-
#certificate ⇒ String
SAML certificate Corresponds to the JSON property
certificate. -
#entity_id ⇒ String
Entity id URL Corresponds to the JSON property
entityId. -
#sso_uri ⇒ String
Single sign-on URL Corresponds to the JSON property
ssoUri. -
#user_email ⇒ String
Email address of the first admin users.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SamlParams
constructor
A new instance of SamlParams.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SamlParams
Returns a new instance of SamlParams.
652 653 654 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 652 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate ⇒ String
SAML certificate
Corresponds to the JSON property certificate
635 636 637 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 635 def certificate @certificate end |
#entity_id ⇒ String
Entity id URL
Corresponds to the JSON property entityId
640 641 642 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 640 def entity_id @entity_id end |
#sso_uri ⇒ String
Single sign-on URL
Corresponds to the JSON property ssoUri
645 646 647 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 645 def sso_uri @sso_uri end |
#user_email ⇒ String
Email address of the first admin users.
Corresponds to the JSON property userEmail
650 651 652 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 650 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
657 658 659 660 661 662 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 657 def update!(**args) @certificate = args[:certificate] if args.key?(:certificate) @entity_id = args[:entity_id] if args.key?(:entity_id) @sso_uri = args[:sso_uri] if args.key?(:sso_uri) @user_email = args[:user_email] if args.key?(:user_email) end |