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.



690
691
692
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 690

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

Instance Attribute Details

#certString

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

Returns:

  • (String)


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

def cert
  @cert
end

#email_mappingString

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

Returns:

  • (String)


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

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)


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

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)


688
689
690
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 688

def 
  @login_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



695
696
697
698
699
700
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 695

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