# 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
create_data_guard_association_response = database_client.create_data_guard_association(
    database_id="ocid1.test.oc1..<unique_ID>EXAMPLE-databaseId-Value",
    create_data_guard_association_details=oci.database.models.CreateDataGuardAssociationWithNewDbSystemDetails(
        creation_type="NewDbSystem",
        database_admin_password="EXAMPLE-databaseAdminPassword-Value",
        protection_mode="MAXIMUM_PERFORMANCE",
        transport_type="SYNC",
        database_software_image_id="ocid1.test.oc1..<unique_ID>EXAMPLE-databaseSoftwareImageId-Value",
        is_active_data_guard_enabled=True,
        peer_db_unique_name="EXAMPLE-peerDbUniqueName-Value",
        peer_sid_prefix="EXAMPLE-peerSidPrefix-Value",
        display_name="EXAMPLE-displayName-Value",
        availability_domain="EXAMPLE-availabilityDomain-Value",
        shape="EXAMPLE-shape-Value",
        cpu_core_count=35,
        storage_volume_performance_mode="BALANCED",
        node_count=1,
        subnet_id="ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
        nsg_ids=["EXAMPLE--Value"],
        backup_network_nsg_ids=["EXAMPLE--Value"],
        hostname="EXAMPLE-hostname-Value",
        time_zone="EXAMPLE-timeZone-Value",
        fault_domains=["EXAMPLE--Value"],
        private_ip="EXAMPLE-privateIp-Value",
        license_model="LICENSE_INCLUDED",
        db_system_freeform_tags={
            'EXAMPLE_KEY_3Hy99': 'EXAMPLE_VALUE_ATxCGIHk8R07FLcwpuLf'},
        db_system_defined_tags={
            'EXAMPLE_KEY_etsqk': {
                'EXAMPLE_KEY_ydNiQ': 'EXAMPLE--Value'}},
        database_freeform_tags={
            'EXAMPLE_KEY_IpMaE': 'EXAMPLE_VALUE_ym3SM9c88bgUaZDVbsyU'},
        database_defined_tags={
            'EXAMPLE_KEY_8xGtw': {
                'EXAMPLE_KEY_F2iuc': 'EXAMPLE--Value'}},
        data_collection_options=oci.database.models.DataCollectionOptions(
            is_diagnostics_events_enabled=True,
            is_health_monitoring_enabled=False,
            is_incident_logs_enabled=True)),
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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