Class: OCI::Oda::Models::CreateServiceCloudChannelDetails

Inherits:
CreateChannelDetails show all
Defined in:
lib/oci/oda/models/create_service_cloud_channel_details.rb

Overview

Properties required to create an Service Cloud channel.

Constant Summary collapse

CLIENT_TYPE_ENUM =
[
  CLIENT_TYPE_WSDL = 'WSDL'.freeze,
  CLIENT_TYPE_REST = 'REST'.freeze
].freeze

Constants inherited from CreateChannelDetails

OCI::Oda::Models::CreateChannelDetails::TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from CreateChannelDetails

#defined_tags, #description, #freeform_tags, #name, #session_expiry_duration_in_milliseconds, #type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CreateChannelDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ CreateServiceCloudChannelDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :name (String)

    The value to assign to the #name proprety

  • :description (String)

    The value to assign to the #description proprety

  • :session_expiry_duration_in_milliseconds (Integer)

    The value to assign to the #session_expiry_duration_in_milliseconds proprety

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags proprety

  • :defined_tags (Hash<String, Hash<String, Object>>)

    The value to assign to the #defined_tags proprety

  • :domain_name (String)

    The value to assign to the #domain_name property

  • :host_name_prefix (String)

    The value to assign to the #host_name_prefix property

  • :user_name (String)

    The value to assign to the #user_name property

  • :password (String)

    The value to assign to the #password property

  • :client_type (String)

    The value to assign to the #client_type property



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 107

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['type'] = 'SERVICECLOUD'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.domain_name = attributes[:'domainName'] if attributes[:'domainName']

  raise 'You cannot provide both :domainName and :domain_name' if attributes.key?(:'domainName') && attributes.key?(:'domain_name')

  self.domain_name = attributes[:'domain_name'] if attributes[:'domain_name']

  self.host_name_prefix = attributes[:'hostNamePrefix'] if attributes[:'hostNamePrefix']

  raise 'You cannot provide both :hostNamePrefix and :host_name_prefix' if attributes.key?(:'hostNamePrefix') && attributes.key?(:'host_name_prefix')

  self.host_name_prefix = attributes[:'host_name_prefix'] if attributes[:'host_name_prefix']

  self.user_name = attributes[:'userName'] if attributes[:'userName']

  raise 'You cannot provide both :userName and :user_name' if attributes.key?(:'userName') && attributes.key?(:'user_name')

  self.user_name = attributes[:'user_name'] if attributes[:'user_name']

  self.password = attributes[:'password'] if attributes[:'password']

  self.client_type = attributes[:'clientType'] if attributes[:'clientType']

  raise 'You cannot provide both :clientType and :client_type' if attributes.key?(:'clientType') && attributes.key?(:'client_type')

  self.client_type = attributes[:'client_type'] if attributes[:'client_type']
end

Instance Attribute Details

#client_typeString

[Required] The type of Service Cloud client.

Returns:

  • (String)


51
52
53
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 51

def client_type
  @client_type
end

#domain_nameString

[Required] The domain name.

If you have access to Oracle B2C Service, you can derive this value from the URL that you use to launch the Agent Browser User Interface. For example, if the URL is sitename.exampledomain.com, then the host name prefix is sitename and the domain name is exampledomain.com.

If the channel is connecting to Oracle B2C Service version 19A or later, and you have multiple interfaces, then you must include the interface ID in the host (site) name . For example, for the interface that has an ID of 2, you would use something like sitename-2.exampledomain.com.

Returns:

  • (String)


27
28
29
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 27

def domain_name
  @domain_name
end

#host_name_prefixString

[Required] The host prefix.

If you have access to Oracle B2C Service, you can derive this value from the URL that you use to launch the Agent Browser User Interface. For example, if the URL is sitename.exampledomain.com, then the host name prefix is sitename and the domain name is exampledomain.com.

If the channel is connecting to Oracle B2C Service version 19A or later, and you have multiple interfaces, then you must include the interface ID in the host (site) name . For example, for the interface that has an ID of 2, you would use something like sitename-2.exampledomain.com.

Returns:

  • (String)


39
40
41
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 39

def host_name_prefix
  @host_name_prefix
end

#passwordString

[Required] The password for the Oracle B2C Service staff member who has the necessary profile permissions.

Returns:

  • (String)


47
48
49
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 47

def password
  @password
end

#user_nameString

[Required] The user name for an Oracle B2C Service staff member who has the necessary profile permissions.

Returns:

  • (String)


43
44
45
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 43

def user_name
  @user_name
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 54

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'description': :'description',
    'type': :'type',
    'session_expiry_duration_in_milliseconds': :'sessionExpiryDurationInMilliseconds',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'domain_name': :'domainName',
    'host_name_prefix': :'hostNamePrefix',
    'user_name': :'userName',
    'password': :'password',
    'client_type': :'clientType'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 73

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'description': :'String',
    'type': :'String',
    'session_expiry_duration_in_milliseconds': :'Integer',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'domain_name': :'String',
    'host_name_prefix': :'String',
    'user_name': :'String',
    'password': :'String',
    'client_type': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 159

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    name == other.name &&
    description == other.description &&
    type == other.type &&
    session_expiry_duration_in_milliseconds == other.session_expiry_duration_in_milliseconds &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    domain_name == other.domain_name &&
    host_name_prefix == other.host_name_prefix &&
    user_name == other.user_name &&
    password == other.password &&
    client_type == other.client_type
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 199

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


179
180
181
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 179

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



188
189
190
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 188

def hash
  [name, description, type, session_expiry_duration_in_milliseconds, freeform_tags, defined_tags, domain_name, host_name_prefix, user_name, password, client_type].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



232
233
234
235
236
237
238
239
240
241
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 232

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



226
227
228
# File 'lib/oci/oda/models/create_service_cloud_channel_details.rb', line 226

def to_s
  to_hash.to_s
end