Class: OCI::IdentityDomains::Models::CloudGateMapping
- Inherits:
-
Object
- Object
- OCI::IdentityDomains::Models::CloudGateMapping
- Defined in:
- lib/oci/identity_domains/models/cloud_gate_mapping.rb
Overview
Resource representing a Cloud Gate mapping
Constant Summary collapse
- IDCS_PREVENTED_OPERATIONS_ENUM =
[ IDCS_PREVENTED_OPERATIONS_REPLACE = 'replace'.freeze, IDCS_PREVENTED_OPERATIONS_UPDATE = 'update'.freeze, IDCS_PREVENTED_OPERATIONS_DELETE = 'delete'.freeze, IDCS_PREVENTED_OPERATIONS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#cloud_gate ⇒ OCI::IdentityDomains::Models::CloudGateMappingCloudGate
This attribute is required.
-
#compartment_ocid ⇒ String
OCI Compartment Id (ocid) in which the resource lives.
-
#delete_in_progress ⇒ BOOLEAN
A boolean flag indicating this resource in the process of being deleted.
-
#description ⇒ String
Brief description for this Cloud Gate.
-
#domain_ocid ⇒ String
OCI Domain Id (ocid) in which the resource lives.
-
#gateway_app ⇒ OCI::IdentityDomains::Models::CloudGateMappingGatewayApp
This attribute is required.
-
#id ⇒ String
Unique identifier for the SCIM Resource as defined by the Service Provider.
- #idcs_created_by ⇒ OCI::IdentityDomains::Models::IdcsCreatedBy
- #idcs_last_modified_by ⇒ OCI::IdentityDomains::Models::IdcsLastModifiedBy
-
#idcs_last_upgraded_in_release ⇒ String
The release number when the resource was upgraded.
-
#idcs_prevented_operations ⇒ Array<String>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
-
#is_opc_service ⇒ BOOLEAN
Indicates whether this resource was created by OPC.
- #meta ⇒ OCI::IdentityDomains::Models::Meta
-
#nginx_settings ⇒ String
More NGINX Settings.
-
#ocid ⇒ String
Unique OCI identifier for the SCIM Resource.
-
#policy_name ⇒ String
[Required] The Web Tier policy name used for the App that is mapped to the owning Cloud Gate.
-
#proxy_pass ⇒ String
NGINX ProxyPass entry for this Mapping.
-
#resource_prefix ⇒ String
[Required] Resource prefix for this mapping.
-
#schemas ⇒ Array<String>
[Required] REQUIRED.
-
#server ⇒ OCI::IdentityDomains::Models::CloudGateMappingServer
This attribute is required.
-
#tags ⇒ Array<OCI::IdentityDomains::Models::Tags>
A list of tags on this resource.
-
#tenancy_ocid ⇒ String
OCI Tenant Id (ocid) in which the resource lives.
- #upstream_server_group ⇒ OCI::IdentityDomains::Models::CloudGateMappingUpstreamServerGroup
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 = {}) ⇒ CloudGateMapping
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 = {}) ⇒ CloudGateMapping
Initializes the object
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 359 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.id = attributes[:'id'] if attributes[:'id'] self.ocid = attributes[:'ocid'] if attributes[:'ocid'] self.schemas = attributes[:'schemas'] if attributes[:'schemas'] self. = attributes[:'meta'] if attributes[:'meta'] self.idcs_created_by = attributes[:'idcsCreatedBy'] if attributes[:'idcsCreatedBy'] raise 'You cannot provide both :idcsCreatedBy and :idcs_created_by' if attributes.key?(:'idcsCreatedBy') && attributes.key?(:'idcs_created_by') self.idcs_created_by = attributes[:'idcs_created_by'] if attributes[:'idcs_created_by'] self.idcs_last_modified_by = attributes[:'idcsLastModifiedBy'] if attributes[:'idcsLastModifiedBy'] raise 'You cannot provide both :idcsLastModifiedBy and :idcs_last_modified_by' if attributes.key?(:'idcsLastModifiedBy') && attributes.key?(:'idcs_last_modified_by') self.idcs_last_modified_by = attributes[:'idcs_last_modified_by'] if attributes[:'idcs_last_modified_by'] self.idcs_prevented_operations = attributes[:'idcsPreventedOperations'] if attributes[:'idcsPreventedOperations'] raise 'You cannot provide both :idcsPreventedOperations and :idcs_prevented_operations' if attributes.key?(:'idcsPreventedOperations') && attributes.key?(:'idcs_prevented_operations') self.idcs_prevented_operations = attributes[:'idcs_prevented_operations'] if attributes[:'idcs_prevented_operations'] self. = attributes[:'tags'] if attributes[:'tags'] self.delete_in_progress = attributes[:'deleteInProgress'] unless attributes[:'deleteInProgress'].nil? raise 'You cannot provide both :deleteInProgress and :delete_in_progress' if attributes.key?(:'deleteInProgress') && attributes.key?(:'delete_in_progress') self.delete_in_progress = attributes[:'delete_in_progress'] unless attributes[:'delete_in_progress'].nil? self.idcs_last_upgraded_in_release = attributes[:'idcsLastUpgradedInRelease'] if attributes[:'idcsLastUpgradedInRelease'] raise 'You cannot provide both :idcsLastUpgradedInRelease and :idcs_last_upgraded_in_release' if attributes.key?(:'idcsLastUpgradedInRelease') && attributes.key?(:'idcs_last_upgraded_in_release') self.idcs_last_upgraded_in_release = attributes[:'idcs_last_upgraded_in_release'] if attributes[:'idcs_last_upgraded_in_release'] self.domain_ocid = attributes[:'domainOcid'] if attributes[:'domainOcid'] raise 'You cannot provide both :domainOcid and :domain_ocid' if attributes.key?(:'domainOcid') && attributes.key?(:'domain_ocid') self.domain_ocid = attributes[:'domain_ocid'] if attributes[:'domain_ocid'] self.compartment_ocid = attributes[:'compartmentOcid'] if attributes[:'compartmentOcid'] raise 'You cannot provide both :compartmentOcid and :compartment_ocid' if attributes.key?(:'compartmentOcid') && attributes.key?(:'compartment_ocid') self.compartment_ocid = attributes[:'compartment_ocid'] if attributes[:'compartment_ocid'] self.tenancy_ocid = attributes[:'tenancyOcid'] if attributes[:'tenancyOcid'] raise 'You cannot provide both :tenancyOcid and :tenancy_ocid' if attributes.key?(:'tenancyOcid') && attributes.key?(:'tenancy_ocid') self.tenancy_ocid = attributes[:'tenancy_ocid'] if attributes[:'tenancy_ocid'] self.is_opc_service = attributes[:'isOPCService'] unless attributes[:'isOPCService'].nil? raise 'You cannot provide both :isOPCService and :is_opc_service' if attributes.key?(:'isOPCService') && attributes.key?(:'is_opc_service') self.is_opc_service = attributes[:'is_opc_service'] unless attributes[:'is_opc_service'].nil? self.description = attributes[:'description'] if attributes[:'description'] self.resource_prefix = attributes[:'resourcePrefix'] if attributes[:'resourcePrefix'] raise 'You cannot provide both :resourcePrefix and :resource_prefix' if attributes.key?(:'resourcePrefix') && attributes.key?(:'resource_prefix') self.resource_prefix = attributes[:'resource_prefix'] if attributes[:'resource_prefix'] self.proxy_pass = attributes[:'proxyPass'] if attributes[:'proxyPass'] raise 'You cannot provide both :proxyPass and :proxy_pass' if attributes.key?(:'proxyPass') && attributes.key?(:'proxy_pass') self.proxy_pass = attributes[:'proxy_pass'] if attributes[:'proxy_pass'] 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'] self.policy_name = attributes[:'policyName'] if attributes[:'policyName'] raise 'You cannot provide both :policyName and :policy_name' if attributes.key?(:'policyName') && attributes.key?(:'policy_name') self.policy_name = attributes[:'policy_name'] if attributes[:'policy_name'] self.upstream_server_group = attributes[:'upstreamServerGroup'] if attributes[:'upstreamServerGroup'] raise 'You cannot provide both :upstreamServerGroup and :upstream_server_group' if attributes.key?(:'upstreamServerGroup') && attributes.key?(:'upstream_server_group') self.upstream_server_group = attributes[:'upstream_server_group'] if attributes[:'upstream_server_group'] self.server = attributes[:'server'] if attributes[:'server'] self.gateway_app = attributes[:'gatewayApp'] if attributes[:'gatewayApp'] raise 'You cannot provide both :gatewayApp and :gateway_app' if attributes.key?(:'gatewayApp') && attributes.key?(:'gateway_app') self.gateway_app = attributes[:'gateway_app'] if attributes[:'gateway_app'] self.cloud_gate = attributes[:'cloudGate'] if attributes[:'cloudGate'] raise 'You cannot provide both :cloudGate and :cloud_gate' if attributes.key?(:'cloudGate') && attributes.key?(:'cloud_gate') self.cloud_gate = attributes[:'cloud_gate'] if attributes[:'cloud_gate'] end |
Instance Attribute Details
#cloud_gate ⇒ OCI::IdentityDomains::Models::CloudGateMappingCloudGate
This attribute is required.
266 267 268 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 266 def cloud_gate @cloud_gate end |
#compartment_ocid ⇒ String
OCI Compartment Id (ocid) in which the resource lives.
SCIM++ Properties: - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
151 152 153 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 151 def compartment_ocid @compartment_ocid end |
#delete_in_progress ⇒ BOOLEAN
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties: - caseExact: false - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: default - type: boolean - uniqueness: none
109 110 111 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 109 def delete_in_progress @delete_in_progress end |
#description ⇒ String
Brief description for this Cloud Gate
SCIM++ Properties: - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none
195 196 197 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 195 def description @description end |
#domain_ocid ⇒ String
OCI Domain Id (ocid) in which the resource lives.
SCIM++ Properties: - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
137 138 139 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 137 def domain_ocid @domain_ocid end |
#gateway_app ⇒ OCI::IdentityDomains::Models::CloudGateMappingGatewayApp
This attribute is required.
262 263 264 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 262 def gateway_app @gateway_app end |
#id ⇒ String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
SCIM++ Properties: - caseExact: false - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: always - type: string - uniqueness: global
31 32 33 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 31 def id @id end |
#idcs_created_by ⇒ OCI::IdentityDomains::Models::IdcsCreatedBy
65 66 67 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 65 def idcs_created_by @idcs_created_by end |
#idcs_last_modified_by ⇒ OCI::IdentityDomains::Models::IdcsLastModifiedBy
68 69 70 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 68 def idcs_last_modified_by @idcs_last_modified_by end |
#idcs_last_upgraded_in_release ⇒ String
The release number when the resource was upgraded.
SCIM++ Properties: - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: request - type: string - uniqueness: none
123 124 125 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 123 def idcs_last_upgraded_in_release @idcs_last_upgraded_in_release end |
#idcs_prevented_operations ⇒ Array<String>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties: - idcsSearchable: false - multiValued: true - mutability: readOnly - required: false - returned: request - type: string - uniqueness: none
81 82 83 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 81 def idcs_prevented_operations @idcs_prevented_operations end |
#is_opc_service ⇒ BOOLEAN
Indicates whether this resource was created by OPC
Added In: 19.3.3
SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: always - type: boolean - uniqueness: none
181 182 183 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 181 def is_opc_service @is_opc_service end |
#meta ⇒ OCI::IdentityDomains::Models::Meta
62 63 64 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 62 def @meta end |
#nginx_settings ⇒ String
More NGINX Settings. JSON encoded key value pairs similar to WTP encoding
SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none
237 238 239 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 237 def nginx_settings @nginx_settings end |
#ocid ⇒ String
Unique OCI identifier for the SCIM Resource.
SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: immutable - required: false - returned: default - type: string - uniqueness: global
45 46 47 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 45 def ocid @ocid end |
#policy_name ⇒ String
[Required] The Web Tier policy name used for the App that is mapped to the owning Cloud Gate
SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readWrite - required: true - returned: default - type: string - uniqueness: none
251 252 253 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 251 def policy_name @policy_name end |
#proxy_pass ⇒ String
NGINX ProxyPass entry for this Mapping
SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none
223 224 225 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 223 def proxy_pass @proxy_pass end |
#resource_prefix ⇒ String
[Required] Resource prefix for this mapping. This will be used to define the location block
SCIM++ Properties: - caseExact: true - idcsSearchable: false - multiValued: false - mutability: readWrite - required: true - returned: default - type: string - uniqueness: none
209 210 211 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 209 def resource_prefix @resource_prefix end |
#schemas ⇒ Array<String>
[Required] REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \“enterprise\” extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
SCIM++ Properties: - caseExact: false - idcsSearchable: false - multiValued: true - mutability: readWrite - required: true - returned: default - type: string - uniqueness: none
59 60 61 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 59 def schemas @schemas end |
#server ⇒ OCI::IdentityDomains::Models::CloudGateMappingServer
This attribute is required.
258 259 260 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 258 def server @server end |
#tags ⇒ Array<OCI::IdentityDomains::Models::Tags>
A list of tags on this resource.
SCIM++ Properties: - idcsCompositeKey: [key, value] - idcsSearchable: true - multiValued: true - mutability: readWrite - required: false - returned: request - type: complex - uniqueness: none
95 96 97 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 95 def @tags end |
#tenancy_ocid ⇒ String
OCI Tenant Id (ocid) in which the resource lives.
SCIM++ Properties: - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: string - uniqueness: none
165 166 167 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 165 def tenancy_ocid @tenancy_ocid end |
#upstream_server_group ⇒ OCI::IdentityDomains::Models::CloudGateMappingUpstreamServerGroup
254 255 256 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 254 def upstream_server_group @upstream_server_group end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 269 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'ocid': :'ocid', 'schemas': :'schemas', 'meta': :'meta', 'idcs_created_by': :'idcsCreatedBy', 'idcs_last_modified_by': :'idcsLastModifiedBy', 'idcs_prevented_operations': :'idcsPreventedOperations', 'tags': :'tags', 'delete_in_progress': :'deleteInProgress', 'idcs_last_upgraded_in_release': :'idcsLastUpgradedInRelease', 'domain_ocid': :'domainOcid', 'compartment_ocid': :'compartmentOcid', 'tenancy_ocid': :'tenancyOcid', 'is_opc_service': :'isOPCService', 'description': :'description', 'resource_prefix': :'resourcePrefix', 'proxy_pass': :'proxyPass', 'nginx_settings': :'nginxSettings', 'policy_name': :'policyName', 'upstream_server_group': :'upstreamServerGroup', 'server': :'server', 'gateway_app': :'gatewayApp', 'cloud_gate': :'cloudGate' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 300 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'ocid': :'String', 'schemas': :'Array<String>', 'meta': :'OCI::IdentityDomains::Models::Meta', 'idcs_created_by': :'OCI::IdentityDomains::Models::IdcsCreatedBy', 'idcs_last_modified_by': :'OCI::IdentityDomains::Models::IdcsLastModifiedBy', 'idcs_prevented_operations': :'Array<String>', 'tags': :'Array<OCI::IdentityDomains::Models::Tags>', 'delete_in_progress': :'BOOLEAN', 'idcs_last_upgraded_in_release': :'String', 'domain_ocid': :'String', 'compartment_ocid': :'String', 'tenancy_ocid': :'String', 'is_opc_service': :'BOOLEAN', 'description': :'String', 'resource_prefix': :'String', 'proxy_pass': :'String', 'nginx_settings': :'String', 'policy_name': :'String', 'upstream_server_group': :'OCI::IdentityDomains::Models::CloudGateMappingUpstreamServerGroup', 'server': :'OCI::IdentityDomains::Models::CloudGateMappingServer', 'gateway_app': :'OCI::IdentityDomains::Models::CloudGateMappingGatewayApp', 'cloud_gate': :'OCI::IdentityDomains::Models::CloudGateMappingCloudGate' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 503 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && ocid == other.ocid && schemas == other.schemas && == other. && idcs_created_by == other.idcs_created_by && idcs_last_modified_by == other.idcs_last_modified_by && idcs_prevented_operations == other.idcs_prevented_operations && == other. && delete_in_progress == other.delete_in_progress && idcs_last_upgraded_in_release == other.idcs_last_upgraded_in_release && domain_ocid == other.domain_ocid && compartment_ocid == other.compartment_ocid && tenancy_ocid == other.tenancy_ocid && is_opc_service == other.is_opc_service && description == other.description && resource_prefix == other.resource_prefix && proxy_pass == other.proxy_pass && nginx_settings == other.nginx_settings && policy_name == other.policy_name && upstream_server_group == other.upstream_server_group && server == other.server && gateway_app == other.gateway_app && cloud_gate == other.cloud_gate end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 555 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
535 536 537 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 535 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
544 545 546 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 544 def hash [id, ocid, schemas, , idcs_created_by, idcs_last_modified_by, idcs_prevented_operations, , delete_in_progress, idcs_last_upgraded_in_release, domain_ocid, compartment_ocid, tenancy_ocid, is_opc_service, description, resource_prefix, proxy_pass, nginx_settings, policy_name, upstream_server_group, server, gateway_app, cloud_gate].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
588 589 590 591 592 593 594 595 596 597 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 588 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
582 583 584 |
# File 'lib/oci/identity_domains/models/cloud_gate_mapping.rb', line 582 def to_s to_hash.to_s end |