Class: OCI::DatabaseManagement::Models::ExadataVmClusterSummary
- Inherits:
-
DbmResource
- Object
- DbmResource
- OCI::DatabaseManagement::Models::ExadataVmClusterSummary
- Defined in:
- lib/oci/database_management/models/exadata_vm_cluster_summary.rb
Overview
The VM Clusters of the Exadata infrastructure.
Constant Summary collapse
- 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
- DEPLOYMENT_TYPE_ENUM =
[ DEPLOYMENT_TYPE_EXADATA = 'EXADATA'.freeze, DEPLOYMENT_TYPE_EXADATA_CC = 'EXADATA_CC'.freeze, DEPLOYMENT_TYPE_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
The OCID of the compartment.
-
#deployment_type ⇒ String
The infrastructure deployment type.
-
#home_directory ⇒ String
The Oracle home directory.
-
#license_model ⇒ String
The Oracle license model that applies to the database management resources.
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 = {}) ⇒ ExadataVmClusterSummary
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 = {}) ⇒ ExadataVmClusterSummary
Initializes the object
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 108 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['resourceType'] = 'VM_CLUSTER_SUMMARY' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } 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.home_directory = attributes[:'homeDirectory'] if attributes[:'homeDirectory'] raise 'You cannot provide both :homeDirectory and :home_directory' if attributes.key?(:'homeDirectory') && attributes.key?(:'home_directory') self.home_directory = attributes[:'home_directory'] if attributes[:'home_directory'] self.deployment_type = attributes[:'deploymentType'] if attributes[:'deploymentType'] raise 'You cannot provide both :deploymentType and :deployment_type' if attributes.key?(:'deploymentType') && attributes.key?(:'deployment_type') self.deployment_type = attributes[:'deployment_type'] if attributes[:'deployment_type'] end |
Instance Attribute Details
#compartment_id ⇒ String
The OCID of the compartment.
27 28 29 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 27 def compartment_id @compartment_id end |
#deployment_type ⇒ String
The infrastructure deployment type.
40 41 42 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 40 def deployment_type @deployment_type end |
#home_directory ⇒ String
The Oracle home directory.
36 37 38 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 36 def home_directory @home_directory end |
#license_model ⇒ String
The Oracle license model that applies to the database management resources.
32 33 34 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 32 def license_model @license_model end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 43 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', 'compartment_id': :'compartmentId', 'license_model': :'licenseModel', 'home_directory': :'homeDirectory', 'deployment_type': :'deploymentType' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 66 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', 'compartment_id': :'String', 'license_model': :'String', 'home_directory': :'String', 'deployment_type': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 176 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 && compartment_id == other.compartment_id && license_model == other.license_model && home_directory == other.home_directory && deployment_type == other.deployment_type end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 220 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
200 201 202 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 200 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
209 210 211 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 209 def hash [id, display_name, version, internal_id, status, lifecycle_state, time_created, time_updated, lifecycle_details, additional_details, resource_type, compartment_id, license_model, home_directory, deployment_type].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
253 254 255 256 257 258 259 260 261 262 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 253 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
247 248 249 |
# File 'lib/oci/database_management/models/exadata_vm_cluster_summary.rb', line 247 def to_s to_hash.to_s end |