# 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).

import oci
from datetime import datetime

# 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.config.from_file()


# Initialize service client with default config file
database_client = oci.database.DatabaseClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
launch_db_system_response = database_client.launch_db_system(
    launch_db_system_details=oci.database.models.LaunchDbSystemFromDatabaseDetails(
        source="DATABASE",
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        availability_domain="EXAMPLE-availabilityDomain-Value",
        subnet_id="ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
        shape="EXAMPLE-shape-Value",
        ssh_public_keys=["EXAMPLE--Value"],
        hostname="EXAMPLE-hostname-Value",
        cpu_core_count=778,
        db_home=oci.database.models.CreateDbHomeFromDatabaseDetails(
            database=oci.database.models.CreateDatabaseFromAnotherDatabaseDetails(
                database_id="ocid1.test.oc1..<unique_ID>EXAMPLE-databaseId-Value",
                admin_password="EXAMPLE-adminPassword-Value",
                backup_tde_password="EXAMPLE-backupTDEPassword-Value",
                db_unique_name="EXAMPLE-dbUniqueName-Value",
                db_name="EXAMPLE-dbName-Value",
                time_stamp_for_point_in_time_recovery=datetime.strptime(
                    "2048-01-15T02:37:13.003Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                pluggable_databases=["EXAMPLE--Value"]),
            display_name="EXAMPLE-displayName-Value",
            freeform_tags={
                'EXAMPLE_KEY_2Nrfc': 'EXAMPLE_VALUE_zWFhOC31FW8fo3om4hJS'},
            defined_tags={
                'EXAMPLE_KEY_DGtMW': {
                    'EXAMPLE_KEY_ZWMiX': 'EXAMPLE--Value'}}),
        database_edition="ENTERPRISE_EDITION",
        fault_domains=["EXAMPLE--Value"],
        display_name="EXAMPLE-displayName-Value",
        backup_subnet_id="ocid1.test.oc1..<unique_ID>EXAMPLE-backupSubnetId-Value",
        nsg_ids=["EXAMPLE--Value"],
        backup_network_nsg_ids=["EXAMPLE--Value"],
        time_zone="EXAMPLE-timeZone-Value",
        db_system_options=oci.database.models.DbSystemOptions(
            storage_management="LVM"),
        storage_volume_performance_mode="BALANCED",
        sparse_diskgroup=True,
        domain="EXAMPLE-domain-Value",
        cluster_name="EXAMPLE-clusterName-Value",
        data_storage_percentage=836,
        initial_data_storage_size_in_gb=764,
        kms_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
        kms_key_version_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyVersionId-Value",
        node_count=579,
        freeform_tags={
                                        'EXAMPLE_KEY_sgymw': 'EXAMPLE_VALUE_HQ2lZIMrgnFZQT2HnGOg'},
        defined_tags={
            'EXAMPLE_KEY_Jz8u5': {
                'EXAMPLE_KEY_bnBNs': 'EXAMPLE--Value'}},
        private_ip="EXAMPLE-privateIp-Value",
        data_collection_options=oci.database.models.DataCollectionOptions(
            is_diagnostics_events_enabled=True,
            is_health_monitoring_enabled=False,
            is_incident_logs_enabled=False),
        disk_redundancy="HIGH",
        license_model="LICENSE_INCLUDED"),
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

# Get the data from response
print(launch_db_system_response.data)