Class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SamlParams

Returns a new instance of SamlParams.



780
781
782
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 780

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#authentication_contextsArray<String>

Additional contexts used for authentication. Corresponds to the JSON property authenticationContexts

Returns:

  • (Array<String>)


753
754
755
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 753

def authentication_contexts
  @authentication_contexts
end

#certificateString

SAML certificate Corresponds to the JSON property certificate

Returns:

  • (String)


758
759
760
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 758

def certificate
  @certificate
end

#email_mappingString

IdP field that maps to the user’s email address Corresponds to the JSON property emailMapping

Returns:

  • (String)


763
764
765
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 763

def email_mapping
  @email_mapping
end

#entity_idString

Entity id URL Corresponds to the JSON property entityId

Returns:

  • (String)


768
769
770
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 768

def entity_id
  @entity_id
end

#sso_uriString

Single sign-on URL Corresponds to the JSON property ssoUri

Returns:

  • (String)


773
774
775
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 773

def sso_uri
  @sso_uri
end

#user_emailString

Email address of the first admin users. Corresponds to the JSON property userEmail

Returns:

  • (String)


778
779
780
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 778

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



785
786
787
788
789
790
791
792
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 785

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