Class: Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter
- 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 describing ContactCenter object
Instance Attribute Summary collapse
-
#ccaip_managed_users ⇒ Boolean
(also: #ccaip_managed_users?)
Optional.
-
#create_time ⇒ String
Output only.
-
#customer_domain_prefix ⇒ String
Required.
-
#display_name ⇒ String
Required.
-
#instance_config ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig
Message storing the instance configuration.
-
#labels ⇒ Hash<String,String>
Labels as key value pairs Corresponds to the JSON property
labels. -
#name ⇒ String
name of resource Corresponds to the JSON property
name. -
#saml_params ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams
Message storing SAML params to enable Google as IDP.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#uris ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::UrIs
Message storing the URIs of the ContactCenter.
-
#user_email ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContactCenter
constructor
A new instance of ContactCenter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ContactCenter
Returns a new instance of ContactCenter.
105 106 107 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 105 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ccaip_managed_users ⇒ Boolean Also known as: ccaip_managed_users?
Optional. Whether to enable users to be created in the CCAIP-instance
concurrently to having users in Cloud identity
Corresponds to the JSON property ccaipManagedUsers
46 47 48 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 46 def ccaip_managed_users @ccaip_managed_users end |
#create_time ⇒ String
Output only. [Output only] Create time stamp
Corresponds to the JSON property createTime
52 53 54 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 52 def create_time @create_time end |
#customer_domain_prefix ⇒ String
Required. Immutable. At least 2 and max 16 char long, must conform to RFC
1035.
Corresponds to the JSON property customerDomainPrefix
58 59 60 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 58 def customer_domain_prefix @customer_domain_prefix end |
#display_name ⇒ String
Required. A user friendly name for the ContactCenter.
Corresponds to the JSON property displayName
63 64 65 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 63 def display_name @display_name end |
#instance_config ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig
Message storing the instance configuration.
Corresponds to the JSON property instanceConfig
68 69 70 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 68 def instance_config @instance_config end |
#labels ⇒ Hash<String,String>
Labels as key value pairs
Corresponds to the JSON property labels
73 74 75 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 73 def labels @labels end |
#name ⇒ String
name of resource
Corresponds to the JSON property name
78 79 80 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 78 def name @name end |
#saml_params ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams
Message storing SAML params to enable Google as IDP.
Corresponds to the JSON property samlParams
83 84 85 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 83 def saml_params @saml_params end |
#state ⇒ String
Output only. The state of this contact center.
Corresponds to the JSON property state
88 89 90 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 88 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp
Corresponds to the JSON property updateTime
93 94 95 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 93 def update_time @update_time end |
#uris ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::UrIs
Message storing the URIs of the ContactCenter.
Corresponds to the JSON property uris
98 99 100 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 98 def uris @uris end |
#user_email ⇒ String
Optional. Email address of the first admin users.
Corresponds to the JSON property userEmail
103 104 105 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 103 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 110 def update!(**args) @ccaip_managed_users = args[:ccaip_managed_users] if args.key?(:ccaip_managed_users) @create_time = args[:create_time] if args.key?(:create_time) @customer_domain_prefix = args[:customer_domain_prefix] if args.key?(:customer_domain_prefix) @display_name = args[:display_name] if args.key?(:display_name) @instance_config = args[:instance_config] if args.key?(:instance_config) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @saml_params = args[:saml_params] if args.key?(:saml_params) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) @uris = args[:uris] if args.key?(:uris) @user_email = args[:user_email] if args.key?(:user_email) end |