Class: OCI::Database::Models::UpdateCloudVmClusterDetails
- Inherits:
-
Object
- Object
- OCI::Database::Models::UpdateCloudVmClusterDetails
- Defined in:
- lib/oci/database/models/update_cloud_vm_cluster_details.rb
Overview
Details for updating the cloud VM cluster. Applies to Exadata Cloud Service instances only.
Constant Summary collapse
- LICENSE_MODEL_ENUM =
[ LICENSE_MODEL_LICENSE_INCLUDED = 'LICENSE_INCLUDED'.freeze, LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = 'BRING_YOUR_OWN_LICENSE'.freeze ].freeze
- VM_BACKUP_STORAGE_TYPE_ENUM =
[ VM_BACKUP_STORAGE_TYPE_LOCAL = 'LOCAL'.freeze, VM_BACKUP_STORAGE_TYPE_EXASCALE = 'EXASCALE'.freeze ].freeze
Instance Attribute Summary collapse
-
#backup_network_nsg_ids ⇒ Array<String>
A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to.
- #cloud_automation_update_details ⇒ OCI::Database::Models::CloudAutomationUpdateDetails
-
#compute_nodes ⇒ Array<String>
The list of compute servers to be added to the cloud VM cluster.
-
#cpu_core_count ⇒ Integer
For fixed shapes, this is the total number of OCPUs to enable across the VM cluster.
- #data_collection_options ⇒ OCI::Database::Models::DataCollectionOptions
-
#data_storage_percentage ⇒ Integer
The percentage assigned to DATA storage (user data and database files).
-
#data_storage_size_in_tbs ⇒ Float
The data disk group size to be allocated in TBs.
-
#db_node_storage_size_in_gbs ⇒ Integer
The local node storage to be allocated in GBs.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#display_name ⇒ String
The user-friendly name for the cloud VM cluster.
-
#file_system_configuration_details ⇒ Array<OCI::Database::Models::FileSystemConfigurationDetail>
Details of the file system configuration of the VM cluster.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#is_local_backup_enabled ⇒ BOOLEAN
If true, database backup on local Exadata storage is configured for the cloud VM cluster.
-
#is_sparse_diskgroup_enabled ⇒ BOOLEAN
If true, sparse disk group is configured for the cloud VM cluster.
-
#license_model ⇒ String
The Oracle license model that applies to the cloud VM cluster.
-
#memory_size_in_gbs ⇒ Integer
The memory to be allocated in GBs.
-
#nsg_ids ⇒ Array<String>
The list of OCIDs for the network security groups (NSGs) to which this resource belongs.
-
#ocpu_count ⇒ Float
The number of OCPU cores to enable for a cloud VM cluster.
-
#reco_storage_percentage ⇒ Integer
The percentage assigned to RECO storage (database redo logs, archive logs, and recovery manager backups).
-
#security_attributes ⇒ Hash<String, Hash<String, Object>>
Security Attributes for this resource.
-
#sparse_storage_percentage ⇒ Integer
The percentage assigned to SPARSE storage (Exadata snapshots).
-
#ssh_public_keys ⇒ Array<String>
The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
-
#storage_size_in_gbs ⇒ Integer
The disk group size to be allocated in GBs.
- #update_details ⇒ OCI::Database::Models::UpdateDetails
-
#vm_backup_storage_type ⇒ String
Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE.
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 = {}) ⇒ UpdateCloudVmClusterDetails
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 = {}) ⇒ UpdateCloudVmClusterDetails
Initializes the object
262 263 264 265 266 267 268 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 298 299 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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 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 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 262 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.display_name = attributes[:'displayName'] if attributes[:'displayName'] raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] if attributes[:'display_name'] self.cpu_core_count = attributes[:'cpuCoreCount'] if attributes[:'cpuCoreCount'] raise 'You cannot provide both :cpuCoreCount and :cpu_core_count' if attributes.key?(:'cpuCoreCount') && attributes.key?(:'cpu_core_count') self.cpu_core_count = attributes[:'cpu_core_count'] if attributes[:'cpu_core_count'] self.ocpu_count = attributes[:'ocpuCount'] if attributes[:'ocpuCount'] raise 'You cannot provide both :ocpuCount and :ocpu_count' if attributes.key?(:'ocpuCount') && attributes.key?(:'ocpu_count') self.ocpu_count = attributes[:'ocpu_count'] if attributes[:'ocpu_count'] self.memory_size_in_gbs = attributes[:'memorySizeInGBs'] if attributes[:'memorySizeInGBs'] raise 'You cannot provide both :memorySizeInGBs and :memory_size_in_gbs' if attributes.key?(:'memorySizeInGBs') && attributes.key?(:'memory_size_in_gbs') self.memory_size_in_gbs = attributes[:'memory_size_in_gbs'] if attributes[:'memory_size_in_gbs'] self.db_node_storage_size_in_gbs = attributes[:'dbNodeStorageSizeInGBs'] if attributes[:'dbNodeStorageSizeInGBs'] raise 'You cannot provide both :dbNodeStorageSizeInGBs and :db_node_storage_size_in_gbs' if attributes.key?(:'dbNodeStorageSizeInGBs') && attributes.key?(:'db_node_storage_size_in_gbs') self.db_node_storage_size_in_gbs = attributes[:'db_node_storage_size_in_gbs'] if attributes[:'db_node_storage_size_in_gbs'] self.data_storage_size_in_tbs = attributes[:'dataStorageSizeInTBs'] if attributes[:'dataStorageSizeInTBs'] raise 'You cannot provide both :dataStorageSizeInTBs and :data_storage_size_in_tbs' if attributes.key?(:'dataStorageSizeInTBs') && attributes.key?(:'data_storage_size_in_tbs') self.data_storage_size_in_tbs = attributes[:'data_storage_size_in_tbs'] if attributes[:'data_storage_size_in_tbs'] 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.ssh_public_keys = attributes[:'sshPublicKeys'] if attributes[:'sshPublicKeys'] raise 'You cannot provide both :sshPublicKeys and :ssh_public_keys' if attributes.key?(:'sshPublicKeys') && attributes.key?(:'ssh_public_keys') self.ssh_public_keys = attributes[:'ssh_public_keys'] if attributes[:'ssh_public_keys'] self.update_details = attributes[:'updateDetails'] if attributes[:'updateDetails'] raise 'You cannot provide both :updateDetails and :update_details' if attributes.key?(:'updateDetails') && attributes.key?(:'update_details') self.update_details = attributes[:'update_details'] if attributes[:'update_details'] self.nsg_ids = attributes[:'nsgIds'] if attributes[:'nsgIds'] raise 'You cannot provide both :nsgIds and :nsg_ids' if attributes.key?(:'nsgIds') && attributes.key?(:'nsg_ids') self.nsg_ids = attributes[:'nsg_ids'] if attributes[:'nsg_ids'] self.backup_network_nsg_ids = attributes[:'backupNetworkNsgIds'] if attributes[:'backupNetworkNsgIds'] raise 'You cannot provide both :backupNetworkNsgIds and :backup_network_nsg_ids' if attributes.key?(:'backupNetworkNsgIds') && attributes.key?(:'backup_network_nsg_ids') self.backup_network_nsg_ids = attributes[:'backup_network_nsg_ids'] if attributes[:'backup_network_nsg_ids'] self.compute_nodes = attributes[:'computeNodes'] if attributes[:'computeNodes'] raise 'You cannot provide both :computeNodes and :compute_nodes' if attributes.key?(:'computeNodes') && attributes.key?(:'compute_nodes') self.compute_nodes = attributes[:'compute_nodes'] if attributes[:'compute_nodes'] self.storage_size_in_gbs = attributes[:'storageSizeInGBs'] if attributes[:'storageSizeInGBs'] raise 'You cannot provide both :storageSizeInGBs and :storage_size_in_gbs' if attributes.key?(:'storageSizeInGBs') && attributes.key?(:'storage_size_in_gbs') self.storage_size_in_gbs = attributes[:'storage_size_in_gbs'] if attributes[:'storage_size_in_gbs'] 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.security_attributes = attributes[:'securityAttributes'] if attributes[:'securityAttributes'] raise 'You cannot provide both :securityAttributes and :security_attributes' if attributes.key?(:'securityAttributes') && attributes.key?(:'security_attributes') self.security_attributes = attributes[:'security_attributes'] if attributes[:'security_attributes'] self. = attributes[:'dataCollectionOptions'] if attributes[:'dataCollectionOptions'] raise 'You cannot provide both :dataCollectionOptions and :data_collection_options' if attributes.key?(:'dataCollectionOptions') && attributes.key?(:'data_collection_options') self. = attributes[:'data_collection_options'] if attributes[:'data_collection_options'] self.file_system_configuration_details = attributes[:'fileSystemConfigurationDetails'] if attributes[:'fileSystemConfigurationDetails'] raise 'You cannot provide both :fileSystemConfigurationDetails and :file_system_configuration_details' if attributes.key?(:'fileSystemConfigurationDetails') && attributes.key?(:'file_system_configuration_details') self.file_system_configuration_details = attributes[:'file_system_configuration_details'] if attributes[:'file_system_configuration_details'] self.cloud_automation_update_details = attributes[:'cloudAutomationUpdateDetails'] if attributes[:'cloudAutomationUpdateDetails'] raise 'You cannot provide both :cloudAutomationUpdateDetails and :cloud_automation_update_details' if attributes.key?(:'cloudAutomationUpdateDetails') && attributes.key?(:'cloud_automation_update_details') self.cloud_automation_update_details = attributes[:'cloud_automation_update_details'] if attributes[:'cloud_automation_update_details'] self.vm_backup_storage_type = attributes[:'vmBackupStorageType'] if attributes[:'vmBackupStorageType'] raise 'You cannot provide both :vmBackupStorageType and :vm_backup_storage_type' if attributes.key?(:'vmBackupStorageType') && attributes.key?(:'vm_backup_storage_type') self.vm_backup_storage_type = attributes[:'vm_backup_storage_type'] if attributes[:'vm_backup_storage_type'] self.data_storage_percentage = attributes[:'dataStoragePercentage'] if attributes[:'dataStoragePercentage'] raise 'You cannot provide both :dataStoragePercentage and :data_storage_percentage' if attributes.key?(:'dataStoragePercentage') && attributes.key?(:'data_storage_percentage') self.data_storage_percentage = attributes[:'data_storage_percentage'] if attributes[:'data_storage_percentage'] self.reco_storage_percentage = attributes[:'recoStoragePercentage'] if attributes[:'recoStoragePercentage'] raise 'You cannot provide both :recoStoragePercentage and :reco_storage_percentage' if attributes.key?(:'recoStoragePercentage') && attributes.key?(:'reco_storage_percentage') self.reco_storage_percentage = attributes[:'reco_storage_percentage'] if attributes[:'reco_storage_percentage'] self.sparse_storage_percentage = attributes[:'sparseStoragePercentage'] if attributes[:'sparseStoragePercentage'] raise 'You cannot provide both :sparseStoragePercentage and :sparse_storage_percentage' if attributes.key?(:'sparseStoragePercentage') && attributes.key?(:'sparse_storage_percentage') self.sparse_storage_percentage = attributes[:'sparse_storage_percentage'] if attributes[:'sparse_storage_percentage'] self.is_local_backup_enabled = attributes[:'isLocalBackupEnabled'] unless attributes[:'isLocalBackupEnabled'].nil? raise 'You cannot provide both :isLocalBackupEnabled and :is_local_backup_enabled' if attributes.key?(:'isLocalBackupEnabled') && attributes.key?(:'is_local_backup_enabled') self.is_local_backup_enabled = attributes[:'is_local_backup_enabled'] unless attributes[:'is_local_backup_enabled'].nil? self.is_sparse_diskgroup_enabled = attributes[:'isSparseDiskgroupEnabled'] unless attributes[:'isSparseDiskgroupEnabled'].nil? raise 'You cannot provide both :isSparseDiskgroupEnabled and :is_sparse_diskgroup_enabled' if attributes.key?(:'isSparseDiskgroupEnabled') && attributes.key?(:'is_sparse_diskgroup_enabled') self.is_sparse_diskgroup_enabled = attributes[:'is_sparse_diskgroup_enabled'] unless attributes[:'is_sparse_diskgroup_enabled'].nil? end |
Instance Attribute Details
#backup_network_nsg_ids ⇒ Array<String>
A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
95 96 97 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 95 def backup_network_nsg_ids @backup_network_nsg_ids end |
#cloud_automation_update_details ⇒ OCI::Database::Models::CloudAutomationUpdateDetails
134 135 136 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 134 def cloud_automation_update_details @cloud_automation_update_details end |
#compute_nodes ⇒ Array<String>
The list of compute servers to be added to the cloud VM cluster.
99 100 101 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 99 def compute_nodes @compute_nodes end |
#cpu_core_count ⇒ Integer
For fixed shapes, this is the total number of OCPUs to enable across the VM cluster.
-
Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
-
Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
-
Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
-
Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
-
Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
-
Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
-
Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
-
Exadata.Quarter3.100 - Specify a multiple of 2, from 0 to 100.
-
Exadata.Half3.200 - Specify a multiple of 4, from 0 to 200.
-
Exadata.Full3.400 - Specify a multiple of 8, from 0 to 400.
The API specification for fixed shape values is docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbSystemShapeSummary
For flexible shapes X8M and X9M, this is the total number of OCPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure.
-
Exadata.X8M - Specify a multiple of 2, from 2 to 50 per X8M database server.
-
Exadata.X9M - Specify a multiple of 2, from 2 to 126 per X9M database server.
For flexible shapes X11M and higher, this is the total number of ECPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure.
-
Exadata.X11M - Specify a multiple of 8, from 8 to 760 per X11M database server.
The API specification for flexible shape values is docs.oracle.com/en-us/iaas/api/#/en/database/20160918/datatypes/FlexComponentSummary
55 56 57 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 55 def cpu_core_count @cpu_core_count end |
#data_collection_options ⇒ OCI::Database::Models::DataCollectionOptions
127 128 129 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 127 def @data_collection_options end |
#data_storage_percentage ⇒ Integer
The percentage assigned to DATA storage (user data and database files). See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
143 144 145 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 143 def data_storage_percentage @data_storage_percentage end |
#data_storage_size_in_tbs ⇒ Float
The data disk group size to be allocated in TBs.
71 72 73 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 71 def data_storage_size_in_tbs @data_storage_size_in_tbs end |
#db_node_storage_size_in_gbs ⇒ Integer
The local node storage to be allocated in GBs.
67 68 69 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 67 def db_node_storage_size_in_gbs @db_node_storage_size_in_gbs 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.
117 118 119 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 117 def @defined_tags end |
#display_name ⇒ String
The user-friendly name for the cloud VM cluster. The name does not need to be unique.
25 26 27 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 25 def display_name @display_name end |
#file_system_configuration_details ⇒ Array<OCI::Database::Models::FileSystemConfigurationDetail>
Details of the file system configuration of the VM cluster.
131 132 133 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 131 def file_system_configuration_details @file_system_configuration_details 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\"}
111 112 113 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 111 def @freeform_tags end |
#is_local_backup_enabled ⇒ BOOLEAN
If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
158 159 160 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 158 def is_local_backup_enabled @is_local_backup_enabled end |
#is_sparse_diskgroup_enabled ⇒ BOOLEAN
If true, sparse disk group is configured for the cloud VM cluster. If false, sparse disk group is not created.
163 164 165 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 163 def is_sparse_diskgroup_enabled @is_sparse_diskgroup_enabled end |
#license_model ⇒ String
The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE. Applies to Exadata Cloud Service instances only.
76 77 78 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 76 def license_model @license_model end |
#memory_size_in_gbs ⇒ Integer
The memory to be allocated in GBs.
63 64 65 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 63 def memory_size_in_gbs @memory_size_in_gbs end |
#nsg_ids ⇒ Array<String>
The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions: - A network security group (NSG) is optional for Autonomous AI Databases with private access. The nsgIds list can be empty.
90 91 92 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 90 def nsg_ids @nsg_ids end |
#ocpu_count ⇒ Float
The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
59 60 61 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 59 def ocpu_count @ocpu_count end |
#reco_storage_percentage ⇒ Integer
The percentage assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
148 149 150 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 148 def reco_storage_percentage @reco_storage_percentage end |
#security_attributes ⇒ Hash<String, Hash<String, Object>>
Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {\"Oracle-ZPR\": {\"MaxEgressCount\": {\"value\": \"42\", \"mode\": \"audit\"}}}
124 125 126 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 124 def security_attributes @security_attributes end |
#sparse_storage_percentage ⇒ Integer
The percentage assigned to SPARSE storage (Exadata snapshots). See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
153 154 155 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 153 def sparse_storage_percentage @sparse_storage_percentage end |
#ssh_public_keys ⇒ Array<String>
The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
80 81 82 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 80 def ssh_public_keys @ssh_public_keys end |
#storage_size_in_gbs ⇒ Integer
The disk group size to be allocated in GBs.
103 104 105 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 103 def storage_size_in_gbs @storage_size_in_gbs end |
#update_details ⇒ OCI::Database::Models::UpdateDetails
83 84 85 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 83 def update_details @update_details end |
#vm_backup_storage_type ⇒ String
Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. Storage Type can only be changed once from LOCAL to EXASCALE. EXASCALE to LOCAL is not permitted.
138 139 140 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 138 def vm_backup_storage_type @vm_backup_storage_type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 166 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'display_name': :'displayName', 'cpu_core_count': :'cpuCoreCount', 'ocpu_count': :'ocpuCount', 'memory_size_in_gbs': :'memorySizeInGBs', 'db_node_storage_size_in_gbs': :'dbNodeStorageSizeInGBs', 'data_storage_size_in_tbs': :'dataStorageSizeInTBs', 'license_model': :'licenseModel', 'ssh_public_keys': :'sshPublicKeys', 'update_details': :'updateDetails', 'nsg_ids': :'nsgIds', 'backup_network_nsg_ids': :'backupNetworkNsgIds', 'compute_nodes': :'computeNodes', 'storage_size_in_gbs': :'storageSizeInGBs', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'security_attributes': :'securityAttributes', 'data_collection_options': :'dataCollectionOptions', 'file_system_configuration_details': :'fileSystemConfigurationDetails', 'cloud_automation_update_details': :'cloudAutomationUpdateDetails', 'vm_backup_storage_type': :'vmBackupStorageType', 'data_storage_percentage': :'dataStoragePercentage', 'reco_storage_percentage': :'recoStoragePercentage', 'sparse_storage_percentage': :'sparseStoragePercentage', 'is_local_backup_enabled': :'isLocalBackupEnabled', 'is_sparse_diskgroup_enabled': :'isSparseDiskgroupEnabled' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 199 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'display_name': :'String', 'cpu_core_count': :'Integer', 'ocpu_count': :'Float', 'memory_size_in_gbs': :'Integer', 'db_node_storage_size_in_gbs': :'Integer', 'data_storage_size_in_tbs': :'Float', 'license_model': :'String', 'ssh_public_keys': :'Array<String>', 'update_details': :'OCI::Database::Models::UpdateDetails', 'nsg_ids': :'Array<String>', 'backup_network_nsg_ids': :'Array<String>', 'compute_nodes': :'Array<String>', 'storage_size_in_gbs': :'Integer', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'security_attributes': :'Hash<String, Hash<String, Object>>', 'data_collection_options': :'OCI::Database::Models::DataCollectionOptions', 'file_system_configuration_details': :'Array<OCI::Database::Models::FileSystemConfigurationDetail>', 'cloud_automation_update_details': :'OCI::Database::Models::CloudAutomationUpdateDetails', 'vm_backup_storage_type': :'String', 'data_storage_percentage': :'Integer', 'reco_storage_percentage': :'Integer', 'sparse_storage_percentage': :'Integer', 'is_local_backup_enabled': :'BOOLEAN', 'is_sparse_diskgroup_enabled': :'BOOLEAN' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
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 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 442 def ==(other) return true if equal?(other) self.class == other.class && display_name == other.display_name && cpu_core_count == other.cpu_core_count && ocpu_count == other.ocpu_count && memory_size_in_gbs == other.memory_size_in_gbs && db_node_storage_size_in_gbs == other.db_node_storage_size_in_gbs && data_storage_size_in_tbs == other.data_storage_size_in_tbs && license_model == other.license_model && ssh_public_keys == other.ssh_public_keys && update_details == other.update_details && nsg_ids == other.nsg_ids && backup_network_nsg_ids == other.backup_network_nsg_ids && compute_nodes == other.compute_nodes && storage_size_in_gbs == other.storage_size_in_gbs && == other. && == other. && security_attributes == other.security_attributes && == other. && file_system_configuration_details == other.file_system_configuration_details && cloud_automation_update_details == other.cloud_automation_update_details && vm_backup_storage_type == other.vm_backup_storage_type && data_storage_percentage == other.data_storage_percentage && reco_storage_percentage == other.reco_storage_percentage && sparse_storage_percentage == other.sparse_storage_percentage && is_local_backup_enabled == other.is_local_backup_enabled && is_sparse_diskgroup_enabled == other.is_sparse_diskgroup_enabled end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 496 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
476 477 478 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 476 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
485 486 487 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 485 def hash [display_name, cpu_core_count, ocpu_count, memory_size_in_gbs, db_node_storage_size_in_gbs, data_storage_size_in_tbs, license_model, ssh_public_keys, update_details, nsg_ids, backup_network_nsg_ids, compute_nodes, storage_size_in_gbs, , , security_attributes, , file_system_configuration_details, cloud_automation_update_details, vm_backup_storage_type, data_storage_percentage, reco_storage_percentage, sparse_storage_percentage, is_local_backup_enabled, is_sparse_diskgroup_enabled].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
529 530 531 532 533 534 535 536 537 538 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 529 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
523 524 525 |
# File 'lib/oci/database/models/update_cloud_vm_cluster_details.rb', line 523 def to_s to_hash.to_s end |