Class: OCI::IdentityDomains::Models::CloudGateExtServers
- Inherits:
-
Object
- Object
- OCI::IdentityDomains::Models::CloudGateExtServers
- 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
-
#host_name ⇒ String
[Required] Hostname for the Server block.
-
#nginx_settings ⇒ String
More nginx Settings.
-
#port ⇒ Integer
[Required] Port for the Server Block.
-
#server_id ⇒ String
Server Name for the Server Block.
-
#ssl ⇒ BOOLEAN
[Required] SSL flag for the Server Block.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ CloudGateExtServers
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ CloudGateExtServers
Initializes the object
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_name ⇒ String
[Required] Hostname for the Server block
SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readOnly - required: true - returned: default - type: string - uniqueness: none
37 38 39 |
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 37 def host_name @host_name end |
#nginx_settings ⇒ String
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
79 80 81 |
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 79 def nginx_settings @nginx_settings end |
#port ⇒ Integer
[Required] Port for the Server Block
SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readOnly - required: true - returned: default - type: integer - uniqueness: none
51 52 53 |
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 51 def port @port end |
#server_id ⇒ String
Server Name for the Server Block
SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
23 24 25 |
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 23 def server_id @server_id end |
#ssl ⇒ BOOLEAN
[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
65 66 67 |
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 65 def ssl @ssl end |
Class Method Details
.attribute_map ⇒ Object
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_types ⇒ Object
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.
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
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
168 169 170 |
# File 'lib/oci/identity_domains/models/cloud_gate_ext_servers.rb', line 168 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
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_hash ⇒ 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_s ⇒ String
Returns the string representation 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 |