Class: OCI::DatabaseManagement::Models::ExternalExadataInfrastructureDiscoverySummary
- Inherits:
-
EntityDiscovered
- Object
- EntityDiscovered
- OCI::DatabaseManagement::Models::ExternalExadataInfrastructureDiscoverySummary
- Defined in:
- lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb
Overview
The summary of the Exadata system infrastructure discovery.
Constant Summary collapse
- RACK_SIZE_ENUM =
[ RACK_SIZE_FULL = 'FULL'.freeze, RACK_SIZE_HALF = 'HALF'.freeze, RACK_SIZE_QUARTER = 'QUARTER'.freeze, RACK_SIZE_EIGHTH = 'EIGHTH'.freeze ].freeze
Constants inherited from EntityDiscovered
OCI::DatabaseManagement::Models::EntityDiscovered::DISCOVER_STATUS_ENUM, OCI::DatabaseManagement::Models::EntityDiscovered::ENTITY_TYPE_ENUM
Instance Attribute Summary collapse
-
#rack_size ⇒ String
The size of the Exadata infrastructure.
Attributes inherited from EntityDiscovered
#agent_id, #connector_id, #discover_error_code, #discover_error_msg, #discover_status, #display_name, #entity_type, #id, #internal_id, #status, #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 = {}) ⇒ ExternalExadataInfrastructureDiscoverySummary
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 EntityDiscovered
Constructor Details
#initialize(attributes = {}) ⇒ ExternalExadataInfrastructureDiscoverySummary
Initializes the object
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 80 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['entityType'] = 'INFRASTRUCTURE_DISCOVER_SUMMARY' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.rack_size = attributes[:'rackSize'] if attributes[:'rackSize'] raise 'You cannot provide both :rackSize and :rack_size' if attributes.key?(:'rackSize') && attributes.key?(:'rack_size') self.rack_size = attributes[:'rack_size'] if attributes[:'rack_size'] end |
Instance Attribute Details
#rack_size ⇒ String
The size of the Exadata infrastructure.
21 22 23 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 21 def rack_size @rack_size end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 24 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'agent_id': :'agentId', 'connector_id': :'connectorId', 'display_name': :'displayName', 'version': :'version', 'internal_id': :'internalId', 'status': :'status', 'discover_status': :'discoverStatus', 'discover_error_code': :'discoverErrorCode', 'discover_error_msg': :'discoverErrorMsg', 'entity_type': :'entityType', 'rack_size': :'rackSize' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 44 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'agent_id': :'String', 'connector_id': :'String', 'display_name': :'String', 'version': :'String', 'internal_id': :'String', 'status': :'String', 'discover_status': :'String', 'discover_error_code': :'String', 'discover_error_msg': :'String', 'entity_type': :'String', 'rack_size': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
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_infrastructure_discovery_summary.rb', line 112 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && agent_id == other.agent_id && connector_id == other.connector_id && display_name == other.display_name && version == other.version && internal_id == other.internal_id && status == other.status && discover_status == other.discover_status && discover_error_code == other.discover_error_code && discover_error_msg == other.discover_error_msg && entity_type == other.entity_type && rack_size == other.rack_size end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 153 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
133 134 135 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 133 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
142 143 144 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 142 def hash [id, agent_id, connector_id, display_name, version, internal_id, status, discover_status, discover_error_code, discover_error_msg, entity_type, rack_size].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
186 187 188 189 190 191 192 193 194 195 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 186 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
180 181 182 |
# File 'lib/oci/database_management/models/external_exadata_infrastructure_discovery_summary.rb', line 180 def to_s to_hash.to_s end |