# 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

# 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.LaunchDbSystemFromBackupDetails(
        source="DB_BACKUP",
        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",
        db_home=oci.database.models.CreateDbHomeFromBackupDetails(
            database=oci.database.models.CreateDatabaseFromBackupDetails(
                backup_id="ocid1.test.oc1..<unique_ID>EXAMPLE-backupId-Value",
                admin_password="EXAMPLE-adminPassword-Value",
                backup_tde_password="EXAMPLE-backupTDEPassword-Value",
                source_encryption_key_location_details=oci.database.models.AwsEncryptionKeyDetails(
                    provider_type="AWS",
                    aws_encryption_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-awsEncryptionKeyId-Value"),
                db_unique_name="EXAMPLE-dbUniqueName-Value",
                db_name="EXAMPLE-dbName-Value",
                sid_prefix="EXAMPLE-sidPrefix-Value",
                pluggable_databases=["EXAMPLE--Value"],
                storage_size_details=oci.database.models.DatabaseStorageSizeDetails(
                        data_storage_size_in_gbs=916,
                        reco_storage_size_in_gbs=683),
                managed_software_update_details=oci.database.models.ManagedSoftwareUpdateInputDetails(
                    is_enrolled=False,
                    preference_details=oci.database.models.ManagedSoftwareUpdatePreferenceDetails(
                        days_of_week=[
                            oci.database.models.ManagedSoftwareUpdateDayOfWeek(
                                day_of_week="THURSDAY")],
                        hour_of_day=21,
                        version_scheme_details=oci.database.models.VersionSchemeFromVersionSeriesDetails(
                            source="VERSION_SERIES",
                            major_version="EXAMPLE-majorVersion-Value",
                            version_preference="ORACLE_DB_N_2"),
                        update_mode="ROLLING")),
                vm_cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vmClusterId-Value",
                freeform_tags={
                    'EXAMPLE_KEY_S0udd': 'EXAMPLE_VALUE_5ChJYfbmRyfbV79R4tIz'},
                defined_tags={
                    'EXAMPLE_KEY_Qk2gp': {
                        'EXAMPLE_KEY_8wbrX': 'EXAMPLE--Value'}}),
            display_name="EXAMPLE-displayName-Value",
            is_unified_auditing_enabled=True,
            database_software_image_id="ocid1.test.oc1..<unique_ID>EXAMPLE-databaseSoftwareImageId-Value",
            freeform_tags={
                'EXAMPLE_KEY_dE8dr': 'EXAMPLE_VALUE_SE7RlrYeSki7a4Ev67Zz'},
            defined_tags={
                'EXAMPLE_KEY_pShJu': {
                    'EXAMPLE_KEY_4YuEu': 'EXAMPLE--Value'}}),
        database_edition="ENTERPRISE_EDITION_HIGH_PERFORMANCE",
        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="ASM"),
        storage_volume_performance_mode="HIGH_PERFORMANCE",
        sparse_diskgroup=False,
        domain="EXAMPLE-domain-Value",
        cpu_core_count=908,
        cluster_name="EXAMPLE-clusterName-Value",
        data_storage_percentage=483,
        initial_data_storage_size_in_gb=289,
        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=331,
        freeform_tags={
            'EXAMPLE_KEY_lMU5C': 'EXAMPLE_VALUE_sEQVvpnYHyMgx8uUmRYr'},
        defined_tags={
            'EXAMPLE_KEY_1oL1J': {
                'EXAMPLE_KEY_mzMYG': 'EXAMPLE--Value'}},
        security_attributes={
            'EXAMPLE_KEY_DWX9q': {
                'EXAMPLE_KEY_lDAmK': 'EXAMPLE--Value'}},
        private_ip="EXAMPLE-privateIp-Value",
        private_ip_v6="EXAMPLE-privateIpV6-Value",
        cluster_placement_group_id="ocid1.test.oc1..<unique_ID>EXAMPLE-clusterPlacementGroupId-Value",
        subscription_id="ocid1.test.oc1..<unique_ID>EXAMPLE-subscriptionId-Value",
        data_collection_options=oci.database.models.DataCollectionOptions(
            is_diagnostics_events_enabled=True,
            is_health_monitoring_enabled=False,
            is_incident_logs_enabled=False),
        compute_model="ECPU",
        compute_count=600,
        disk_redundancy="HIGH",
        license_model="LICENSE_INCLUDED"),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_dry_run=True)

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