Class: OCI::IdentityDomains::Models::CloudGateExtServers

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/identity_domains/models/cloud_gate_ext_servers.rb

Overview

A list of Server Blocks on this Cloud Gate

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CloudGateExtServers

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :server_id (String)

    The value to assign to the #server_id property

  • :host_name (String)

    The value to assign to the #host_name property

  • :port (Integer)

    The value to assign to the #port property

  • :ssl (BOOLEAN)

    The value to assign to the #ssl property

  • :nginx_settings (String)

    The value to assign to the #nginx_settings property



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
143
144
145
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 118

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

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

  self.server_id = attributes[:'serverId'] if attributes[:'serverId']

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

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

  self.host_name = attributes[:'hostName'] if attributes[:'hostName']

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

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

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

  self.ssl = attributes[:'ssl'] unless attributes[:'ssl'].nil?

  self.nginx_settings = attributes[:'nginxSettings'] if attributes[:'nginxSettings']

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

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

Instance Attribute Details

#host_nameString

[Required] Hostname for the Server block

SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readOnly - required: true - returned: default - type: string - uniqueness: none

Returns:

  • (String)


37
38
39
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 37

def host_name
  @host_name
end

#nginx_settingsString

More nginx Settings. JSON encoded text block

SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none

Returns:

  • (String)


79
80
81
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 79

def nginx_settings
  @nginx_settings
end

#portInteger

[Required] Port for the Server Block

SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readOnly - required: true - returned: default - type: integer - uniqueness: none

Returns:

  • (Integer)


51
52
53
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 51

def port
  @port
end

#server_idString

Server Name for the Server Block

SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none

Returns:

  • (String)


23
24
25
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 23

def server_id
  @server_id
end

#sslBOOLEAN

[Required] SSL flag for the Server Block

SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readOnly - required: true - returned: default - type: boolean - uniqueness: none

Returns:

  • (BOOLEAN)


65
66
67
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 65

def ssl
  @ssl
end

Class Method Details

.attribute_mapObject

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



82
83
84
85
86
87
88
89
90
91
92
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 82

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'server_id': :'serverId',
    'host_name': :'hostName',
    'port': :'port',
    'ssl': :'ssl',
    'nginx_settings': :'nginxSettings'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



95
96
97
98
99
100
101
102
103
104
105
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 95

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'server_id': :'String',
    'host_name': :'String',
    'port': :'Integer',
    'ssl': :'BOOLEAN',
    'nginx_settings': :'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



154
155
156
157
158
159
160
161
162
163
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 154

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

  self.class == other.class &&
    server_id == other.server_id &&
    host_name == other.host_name &&
    port == other.port &&
    ssl == other.ssl &&
    nginx_settings == other.nginx_settings
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



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 188

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


168
169
170
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 168

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



177
178
179
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 177

def hash
  [server_id, host_name, port, ssl, nginx_settings].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



221
222
223
224
225
226
227
228
229
230
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 221

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



215
216
217
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 215

def to_s
  to_hash.to_s
end