# 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
mysql_client = OCI::Mysql::DbSystemClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
create_db_system_response =
  mysql_client.create_db_system(
    OCI::Mysql::Models::CreateDbSystemDetails.new(
      compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
      shape_name: 'EXAMPLE-shapeName-Value',
      subnet_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value',
      display_name: 'EXAMPLE-displayName-Value',
      description: 'EXAMPLE-description-Value',
      is_highly_available: true,
      availability_domain: 'EXAMPLE-availabilityDomain-Value',
      fault_domain: 'EXAMPLE-faultDomain-Value',
      configuration_id:
        'ocid1.test.oc1..<unique_ID>EXAMPLE-configurationId-Value',
      mysql_version: 'EXAMPLE-mysqlVersion-Value',
      admin_username: 'EXAMPLE-adminUsername-Value',
      admin_password: 'EXAMPLE-adminPassword-Value',
      data_storage_size_in_gbs: 100_657,
      hostname_label: 'EXAMPLE-hostnameLabel-Value',
      ip_address: 'EXAMPLE-ipAddress-Value',
      port: 53_021,
      port_x: 23_744,
      backup_policy:
        OCI::Mysql::Models::CreateBackupPolicyDetails.new(
          is_enabled: true,
          window_start_time: 'EXAMPLE-windowStartTime-Value',
          retention_in_days: 31,
          freeform_tags: {
            'EXAMPLE_KEY_XYEq0' => 'EXAMPLE_VALUE_9O1EunUUpoVfJ67mMd2Q'
          },
          defined_tags: {
            'EXAMPLE_KEY_KhuGe' => { 'EXAMPLE_KEY_fPsAP' => 'EXAMPLE--Value' }
          },
          pitr_policy: OCI::Mysql::Models::PitrPolicy.new(is_enabled: false)
        ),
      source:
        OCI::Mysql::Models::CreateDbSystemSourceFromNoneDetails.new(
          source_type: 'NONE'
        ),
      maintenance:
        OCI::Mysql::Models::CreateMaintenanceDetails.new(
          window_start_time: 'EXAMPLE-windowStartTime-Value'
        ),
      freeform_tags: {
        'EXAMPLE_KEY_b8zGy' => 'EXAMPLE_VALUE_a6TxiWTzgmzI8oiQKTq8'
      },
      defined_tags: {
        'EXAMPLE_KEY_UaRBI' => { 'EXAMPLE_KEY_ZNMmL' => 'EXAMPLE--Value' }
      },
      deletion_policy:
        OCI::Mysql::Models::CreateDeletionPolicyDetails.new(
          automatic_backup_retention: 'DELETE',
          final_backup: 'SKIP_FINAL_BACKUP',
          is_delete_protected: false
        ),
      crash_recovery: 'ENABLED',
      database_management: 'ENABLED',
      secure_connections:
        OCI::Mysql::Models::SecureConnectionDetails.new(
          certificate_generation_type: 'SYSTEM',
          certificate_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-certificateId-Value'
        )
    )
  )

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

Was this article helpful?