# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
require 'oci'
# Create a default config using DEFAULT profile in default location
# Refer to https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File for more info
config = OCI::ConfigFileLoader.load_config
# Initialize service client with default config file
database_client = OCI::Database::DatabaseClient.new(config: config)
# Send the request to service, some parameters are not required, see API doc for more info
create_vm_cluster_response =
database_client.create_vm_cluster(
OCI::Database::Models::CreateVmClusterDetails.new(
compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
display_name: 'EXAMPLE-displayName-Value',
exadata_infrastructure_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-exadataInfrastructureId-Value',
cpu_core_count: 748,
ssh_public_keys: %w[EXAMPLE--Value],
vm_cluster_network_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-vmClusterNetworkId-Value',
gi_version: 'EXAMPLE-giVersion-Value',
ocpu_count: 6123.5894,
memory_size_in_gbs: 897,
db_node_storage_size_in_gbs: 342,
data_storage_size_in_tbs: 5263.723,
data_storage_size_in_gbs: 8950.319,
license_model: 'LICENSE_INCLUDED',
is_sparse_diskgroup_enabled: false,
is_local_backup_enabled: true,
time_zone: 'EXAMPLE-timeZone-Value',
db_servers: %w[EXAMPLE--Value],
freeform_tags: {
'EXAMPLE_KEY_PAJRs' => 'EXAMPLE_VALUE_q61oVqwDfrgv04rhoiF6'
},
defined_tags: {
'EXAMPLE_KEY_ILLZG' => { 'EXAMPLE_KEY_pT2mu' => 'EXAMPLE--Value' }
},
data_collection_options:
OCI::Database::Models::DataCollectionOptions.new(
is_diagnostics_events_enabled: false,
is_health_monitoring_enabled: false,
is_incident_logs_enabled: true
),
system_version: 'EXAMPLE-systemVersion-Value',
file_system_configuration_details: [
OCI::Database::Models::FileSystemConfigurationDetail.new(
mount_point: 'EXAMPLE-mountPoint-Value', file_system_size_gb: 643
)
],
vm_cluster_type: 'REGULAR',
cloud_automation_update_details:
OCI::Database::Models::CloudAutomationUpdateDetails.new(
is_early_adoption_enabled: true,
is_freeze_period_enabled: false,
apply_update_time_preference:
OCI::Database::Models::CloudAutomationApplyUpdateTimePreference.new(
apply_update_preferred_start_time:
'EXAMPLE-applyUpdatePreferredStartTime-Value',
apply_update_preferred_end_time:
'EXAMPLE-applyUpdatePreferredEndTime-Value'
),
freeze_period:
OCI::Database::Models::CloudAutomationFreezePeriod.new(
freeze_period_start_time: 'EXAMPLE-freezePeriodStartTime-Value',
freeze_period_end_time: 'EXAMPLE-freezePeriodEndTime-Value'
)
),
exascale_db_storage_vault_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-exascaleDbStorageVaultId-Value'
)
)
# Get the data from response
puts "#{create_vm_cluster_response.data}"