Class: OCI::DatabaseManagement::Models::ExternalExadataStorageConnector
- Inherits:
-
DbmResource
- Object
- DbmResource
- OCI::DatabaseManagement::Models::ExternalExadataStorageConnector
- Defined in:
- lib/oci/database_management/models/external_exadata_storage_connector.rb
Overview
The details of the Exadata storage server connector.
Constant Summary
Constants inherited from DbmResource
DbmResource::LIFECYCLE_STATE_ENUM, DbmResource::RESOURCE_TYPE_ENUM
Instance Attribute Summary collapse
-
#agent_id ⇒ String
The OCID of the agent for the Exadata storage server.
-
#connection_uri ⇒ String
The unique string of the connection.
-
#exadata_infrastructure_id ⇒ String
The OCID of the Exadata infrastructure.
-
#storage_server_id ⇒ String
The OCID of the Exadata storage server.
Attributes inherited from DbmResource
#additional_details, #display_name, #id, #internal_id, #lifecycle_details, #lifecycle_state, #resource_type, #status, #time_created, #time_updated, #version
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 = {}) ⇒ ExternalExadataStorageConnector
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.
Methods inherited from DbmResource
Constructor Details
#initialize(attributes = {}) ⇒ ExternalExadataStorageConnector
Initializes the object
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 95 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['resourceType'] = 'STORAGE_CONNECTOR' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.exadata_infrastructure_id = attributes[:'exadataInfrastructureId'] if attributes[:'exadataInfrastructureId'] raise 'You cannot provide both :exadataInfrastructureId and :exadata_infrastructure_id' if attributes.key?(:'exadataInfrastructureId') && attributes.key?(:'exadata_infrastructure_id') self.exadata_infrastructure_id = attributes[:'exadata_infrastructure_id'] if attributes[:'exadata_infrastructure_id'] self.agent_id = attributes[:'agentId'] if attributes[:'agentId'] raise 'You cannot provide both :agentId and :agent_id' if attributes.key?(:'agentId') && attributes.key?(:'agent_id') self.agent_id = attributes[:'agent_id'] if attributes[:'agent_id'] self.connection_uri = attributes[:'connectionUri'] if attributes[:'connectionUri'] raise 'You cannot provide both :connectionUri and :connection_uri' if attributes.key?(:'connectionUri') && attributes.key?(:'connection_uri') self.connection_uri = attributes[:'connection_uri'] if attributes[:'connection_uri'] self.storage_server_id = attributes[:'storageServerId'] if attributes[:'storageServerId'] raise 'You cannot provide both :storageServerId and :storage_server_id' if attributes.key?(:'storageServerId') && attributes.key?(:'storage_server_id') self.storage_server_id = attributes[:'storage_server_id'] if attributes[:'storage_server_id'] end |
Instance Attribute Details
#agent_id ⇒ String
The OCID of the agent for the Exadata storage server.
19 20 21 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 19 def agent_id @agent_id end |
#connection_uri ⇒ String
The unique string of the connection. For example, "
Returns:
23 24 25 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 23 def connection_uri @connection_uri end |
#exadata_infrastructure_id ⇒ String
The OCID of the Exadata infrastructure.
15 16 17 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 15 def exadata_infrastructure_id @exadata_infrastructure_id end |
#storage_server_id ⇒ String
The OCID of the Exadata storage server.
27 28 29 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 27 def storage_server_id @storage_server_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 30 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'display_name': :'displayName', 'version': :'version', 'internal_id': :'internalId', 'status': :'status', 'lifecycle_state': :'lifecycleState', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'lifecycle_details': :'lifecycleDetails', 'additional_details': :'additionalDetails', 'resource_type': :'resourceType', 'exadata_infrastructure_id': :'exadataInfrastructureId', 'agent_id': :'agentId', 'connection_uri': :'connectionUri', 'storage_server_id': :'storageServerId' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 53 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'display_name': :'String', 'version': :'String', 'internal_id': :'String', 'status': :'String', 'lifecycle_state': :'String', 'time_created': :'DateTime', 'time_updated': :'DateTime', 'lifecycle_details': :'String', 'additional_details': :'Hash<String, String>', 'resource_type': :'String', 'exadata_infrastructure_id': :'String', 'agent_id': :'String', 'connection_uri': :'String', 'storage_server_id': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 137 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && display_name == other.display_name && version == other.version && internal_id == other.internal_id && status == other.status && lifecycle_state == other.lifecycle_state && time_created == other.time_created && time_updated == other.time_updated && lifecycle_details == other.lifecycle_details && additional_details == other.additional_details && resource_type == other.resource_type && exadata_infrastructure_id == other.exadata_infrastructure_id && agent_id == other.agent_id && connection_uri == other.connection_uri && storage_server_id == other.storage_server_id end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 181 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
161 162 163 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 161 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
170 171 172 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 170 def hash [id, display_name, version, internal_id, status, lifecycle_state, time_created, time_updated, lifecycle_details, additional_details, resource_type, exadata_infrastructure_id, agent_id, connection_uri, storage_server_id].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
214 215 216 217 218 219 220 221 222 223 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 214 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
208 209 210 |
# File 'lib/oci/database_management/models/external_exadata_storage_connector.rb', line 208 def to_s to_hash.to_s end |