# 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.LaunchDbSystemFromDbSystemDetails(
source="DB_SYSTEM",
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",
source_db_system_id="ocid1.test.oc1..<unique_ID>EXAMPLE-sourceDbSystemId-Value",
db_home=oci.database.models.CreateDbHomeFromDbSystemDetails(
database=oci.database.models.CreateDatabaseFromDbSystemDetails(
admin_password="EXAMPLE-adminPassword-Value",
db_name="EXAMPLE-dbName-Value",
db_domain="EXAMPLE-dbDomain-Value",
db_unique_name="EXAMPLE-dbUniqueName-Value",
db_backup_config=oci.database.models.DbBackupConfig(
auto_backup_enabled=False,
recovery_window_in_days=4,
auto_backup_window="SLOT_ONE",
auto_full_backup_window="SLOT_SEVEN",
auto_full_backup_day="MONDAY",
run_immediate_full_backup=True,
backup_destination_details=[
oci.database.models.BackupDestinationDetails(
type="AWS_S3",
id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
vpc_user="EXAMPLE-vpcUser-Value",
vpc_password="EXAMPLE-vpcPassword-Value",
internet_proxy="EXAMPLE-internetProxy-Value",
dbrs_policy_id="ocid1.test.oc1..<unique_ID>EXAMPLE-dbrsPolicyId-Value",
is_retention_lock_enabled=True,
backup_retention_policy_on_terminate="RETAIN_PER_RETENTION_WINDOW",
is_remote=True,
remote_region="EXAMPLE-remoteRegion-Value")],
backup_deletion_policy="DELETE_IMMEDIATELY"),
freeform_tags={
'EXAMPLE_KEY_VQ2xw': 'EXAMPLE_VALUE_IKRnqh2vBG2wyTzKbJqG'},
defined_tags={
'EXAMPLE_KEY_ObbpB': {
'EXAMPLE_KEY_KZMgQ': 'EXAMPLE--Value'}}),
display_name="EXAMPLE-displayName-Value",
freeform_tags={
'EXAMPLE_KEY_v58UR': 'EXAMPLE_VALUE_y3nc96EHJSlTb3W3myw0'},
defined_tags={
'EXAMPLE_KEY_fI1Om': {
'EXAMPLE_KEY_8gKKI': 'EXAMPLE--Value'}}),
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="HIGH_PERFORMANCE",
sparse_diskgroup=False,
domain="EXAMPLE-domain-Value",
cpu_core_count=383,
cluster_name="EXAMPLE-clusterName-Value",
data_storage_percentage=790,
initial_data_storage_size_in_gb=584,
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=433,
freeform_tags={
'EXAMPLE_KEY_7BDMI': 'EXAMPLE_VALUE_oVb0hAEe4xsNzULRt6M4'},
defined_tags={
'EXAMPLE_KEY_xDMtM': {
'EXAMPLE_KEY_551Du': 'EXAMPLE--Value'}},
security_attributes={
'EXAMPLE_KEY_TINdu': {
'EXAMPLE_KEY_hONu9': '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=True,
is_incident_logs_enabled=False),
compute_model="ECPU",
compute_count=416,
license_model="LICENSE_INCLUDED"),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_dry_run=False)
# Get the data from response
print(launch_db_system_response.data)