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
- 
  
    
      #authentication_contexts  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional contexts used for authentication. 
- 
  
    
      #certificate  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    SAML certificate Corresponds to the JSON property certificate.
- 
  
    
      #email_mapping  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    IdP field that maps to the user’s email address Corresponds to the JSON property emailMapping.
- 
  
    
      #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.
| 776 777 778 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 776 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#authentication_contexts ⇒ Array<String>
Additional contexts used for authentication.
Corresponds to the JSON property authenticationContexts
| 749 750 751 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 749 def authentication_contexts @authentication_contexts end | 
#certificate ⇒ String
SAML certificate
Corresponds to the JSON property certificate
| 754 755 756 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 754 def certificate @certificate end | 
#email_mapping ⇒ String
IdP field that maps to the user’s email address
Corresponds to the JSON property emailMapping
| 759 760 761 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 759 def email_mapping @email_mapping end | 
#entity_id ⇒ String
Entity id URL
Corresponds to the JSON property entityId
| 764 765 766 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 764 def entity_id @entity_id end | 
#sso_uri ⇒ String
Single sign-on URL
Corresponds to the JSON property ssoUri
| 769 770 771 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 769 def sso_uri @sso_uri end | 
#user_email ⇒ String
Email address of the first admin users.
Corresponds to the JSON property userEmail
| 774 775 776 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 774 def user_email @user_email end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 781 782 783 784 785 786 787 788 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 781 def update!(**args) @authentication_contexts = args[:authentication_contexts] if args.key?(:authentication_contexts) @certificate = args[:certificate] if args.key?(:certificate) @email_mapping = args[:email_mapping] if args.key?(:email_mapping) @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 |