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.



535
536
537
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 535

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

Instance Attribute Details

#certificateString

SAML certificate Corresponds to the JSON property certificate

Returns:

  • (String)


518
519
520
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 518

def certificate
  @certificate
end

#entity_idString

Entity id URL Corresponds to the JSON property entityId

Returns:

  • (String)


523
524
525
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 523

def entity_id
  @entity_id
end

#sso_uriString

Single sign-on URL Corresponds to the JSON property ssoUri

Returns:

  • (String)


528
529
530
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 528

def sso_uri
  @sso_uri
end

#user_emailString

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

Returns:

  • (String)


533
534
535
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 533

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



540
541
542
543
544
545
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 540

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