# 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
update_cloud_vm_cluster_response =
  database_client.update_cloud_vm_cluster(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-cloudVmClusterId-Value',
    OCI::Database::Models::UpdateCloudVmClusterDetails.new(
      display_name: 'EXAMPLE-displayName-Value',
      cpu_core_count: 628,
      ocpu_count: 7489.135,
      memory_size_in_gbs: 406,
      db_node_storage_size_in_gbs: 486,
      data_storage_size_in_tbs: 2810.4526,
      license_model: 'BRING_YOUR_OWN_LICENSE',
      ssh_public_keys: %w[EXAMPLE--Value],
      update_details:
        OCI::Database::Models::UpdateDetails.new(
          update_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-updateId-Value',
          update_action: 'NON_ROLLING_APPLY',
          gi_software_image_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-giSoftwareImageId-Value'
        ),
      nsg_ids: %w[EXAMPLE--Value],
      backup_network_nsg_ids: %w[EXAMPLE--Value],
      compute_nodes: %w[EXAMPLE--Value],
      storage_size_in_gbs: 835,
      freeform_tags: {
        'EXAMPLE_KEY_1CeSL' => 'EXAMPLE_VALUE_n21hy7FL4V2T6nurcVZC'
      },
      defined_tags: {
        'EXAMPLE_KEY_Md9uQ' => { 'EXAMPLE_KEY_MbfUw' => 'EXAMPLE--Value' }
      },
      data_collection_options:
        OCI::Database::Models::DataCollectionOptions.new(
          is_diagnostics_events_enabled: true,
          is_health_monitoring_enabled: true,
          is_incident_logs_enabled: false
        ),
      file_system_configuration_details: [
        OCI::Database::Models::FileSystemConfigurationDetail.new(
          mount_point: 'EXAMPLE-mountPoint-Value', file_system_size_gb: 153
        )
      ]
    )
  )

# Get the data from response
puts "#{update_cloud_vm_cluster_response.data}"