Class: OCI::DatabaseManagement::Models::CloudExadataInfrastructureSummary
- Inherits:
-
DbmResource
- Object
- DbmResource
- OCI::DatabaseManagement::Models::CloudExadataInfrastructureSummary
- Defined in:
- lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb
Overview
The Exadata infrastructure.
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, RACK_SIZE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- INFRASTRUCTURE_TYPE_ENUM =
[ INFRASTRUCTURE_TYPE_EXADATA = 'EXADATA'.freeze, INFRASTRUCTURE_TYPE_EXADATA_CC = 'EXADATA_CC'.freeze, INFRASTRUCTURE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LICENSE_MODEL_ENUM =
[ LICENSE_MODEL_LICENSE_INCLUDED = 'LICENSE_INCLUDED'.freeze, LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = 'BRING_YOUR_OWN_LICENSE'.freeze, LICENSE_MODEL_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Constants inherited from DbmResource
DbmResource::LIFECYCLE_STATE_ENUM, DbmResource::RESOURCE_TYPE_ENUM
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
[Required] The OCID of the compartment.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#grid_home_path ⇒ String
The Oracle grid home path.
-
#infrastructure_type ⇒ String
The type of the Exadata infrastructure.
-
#license_model ⇒ String
The Oracle license model that applies to the database management resources.
-
#rack_size ⇒ String
The rack size of the Exadata infrastructure.
-
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource.
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 = {}) ⇒ CloudExadataInfrastructureSummary
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 = {}) ⇒ CloudExadataInfrastructureSummary
Initializes the object
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 155 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['resourceType'] = 'CLOUD_INFRASTRUCTURE_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'] self.infrastructure_type = attributes[:'infrastructureType'] if attributes[:'infrastructureType'] raise 'You cannot provide both :infrastructureType and :infrastructure_type' if attributes.key?(:'infrastructureType') && attributes.key?(:'infrastructure_type') self.infrastructure_type = attributes[:'infrastructure_type'] if attributes[:'infrastructure_type'] self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] self.license_model = attributes[:'licenseModel'] if attributes[:'licenseModel'] raise 'You cannot provide both :licenseModel and :license_model' if attributes.key?(:'licenseModel') && attributes.key?(:'license_model') self.license_model = attributes[:'license_model'] if attributes[:'license_model'] self.grid_home_path = attributes[:'gridHomePath'] if attributes[:'gridHomePath'] raise 'You cannot provide both :gridHomePath and :grid_home_path' if attributes.key?(:'gridHomePath') && attributes.key?(:'grid_home_path') self.grid_home_path = attributes[:'grid_home_path'] if attributes[:'grid_home_path'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] self. = attributes[:'systemTags'] if attributes[:'systemTags'] raise 'You cannot provide both :systemTags and :system_tags' if attributes.key?(:'systemTags') && attributes.key?(:'system_tags') self. = attributes[:'system_tags'] if attributes[:'system_tags'] end |
Instance Attribute Details
#compartment_id ⇒ String
[Required] The OCID of the compartment.
43 44 45 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 43 def compartment_id @compartment_id end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {\"Operations\": {\"CostCenter\": \"42\"}}
66 67 68 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 66 def @defined_tags end |
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {\"Department\": \"Finance\"}
59 60 61 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 59 def @freeform_tags end |
#grid_home_path ⇒ String
The Oracle grid home path.
52 53 54 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 52 def grid_home_path @grid_home_path end |
#infrastructure_type ⇒ String
The type of the Exadata infrastructure.
39 40 41 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 39 def infrastructure_type @infrastructure_type end |
#license_model ⇒ String
The Oracle license model that applies to the database management resources.
48 49 50 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 48 def license_model @license_model end |
#rack_size ⇒ String
The rack size of the Exadata infrastructure.
35 36 37 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 35 def rack_size @rack_size end |
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system.
Example: {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}
75 76 77 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 75 def @system_tags end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 78 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', 'rack_size': :'rackSize', 'infrastructure_type': :'infrastructureType', 'compartment_id': :'compartmentId', 'license_model': :'licenseModel', 'grid_home_path': :'gridHomePath', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'system_tags': :'systemTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 105 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', 'rack_size': :'String', 'infrastructure_type': :'String', 'compartment_id': :'String', 'license_model': :'String', 'grid_home_path': :'String', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'system_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 260 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 && rack_size == other.rack_size && infrastructure_type == other.infrastructure_type && compartment_id == other.compartment_id && license_model == other.license_model && grid_home_path == other.grid_home_path && == other. && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 308 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
288 289 290 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 288 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
297 298 299 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 297 def hash [id, display_name, version, internal_id, status, lifecycle_state, time_created, time_updated, lifecycle_details, additional_details, resource_type, rack_size, infrastructure_type, compartment_id, license_model, grid_home_path, , , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
341 342 343 344 345 346 347 348 349 350 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 341 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
335 336 337 |
# File 'lib/oci/database_management/models/cloud_exadata_infrastructure_summary.rb', line 335 def to_s to_hash.to_s end |