Class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#certString

X.509 public certificate for IdP Corresponds to the JSON property cert

Returns:

  • (String)


666
667
668
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 666

def cert
  @cert
end

#email_mappingString

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

Returns:

  • (String)


671
672
673
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 671

def email_mapping
  @email_mapping
end

#entity_idString

The entity ID for the identity provider. Example: https://[IDP Domain]/saml/ metadata Corresponds to the JSON property entityId

Returns:

  • (String)


677
678
679
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 677

def entity_id
  @entity_id
end

#login_uriString

The sso login url. Example: https://[IDP Domain]/saml/sso/login Corresponds to the JSON property loginUri

Returns:

  • (String)


682
683
684
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 682

def 
  @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