# 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_AVAILABILITY",
        transport_type="FASTSYNC",
        database_software_image_id="ocid1.test.oc1..<unique_ID>EXAMPLE-databaseSoftwareImageId-Value",
        source_encryption_key_location_details=oci.database.models.ExternalHsmEncryptionDetails(
            provider_type="EXTERNAL",
            hsm_password="EXAMPLE-hsmPassword-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=52,
        storage_volume_performance_mode="HIGH_PERFORMANCE",
        compute_model="ECPU",
        compute_count=979,
        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",
        domain="EXAMPLE-domain-Value",
        time_zone="EXAMPLE-timeZone-Value",
        fault_domains=["EXAMPLE--Value"],
        private_ip="EXAMPLE-privateIp-Value",
        private_ip_v6="EXAMPLE-privateIpV6-Value",
        license_model="BRING_YOUR_OWN_LICENSE",
        db_system_freeform_tags={
            'EXAMPLE_KEY_6pOXY': 'EXAMPLE_VALUE_9LHA7GIIymeWTF1ExZZw'},
        db_system_defined_tags={
            'EXAMPLE_KEY_yUcBh': {
                'EXAMPLE_KEY_VFxd9': 'EXAMPLE--Value'}},
        db_system_security_attributes={
            'EXAMPLE_KEY_GEukK': {
                'EXAMPLE_KEY_8vEwn': 'EXAMPLE--Value'}},
        database_freeform_tags={
            'EXAMPLE_KEY_dOrI1': 'EXAMPLE_VALUE_aGj9V3Q4v4qkLT0UsyiY'},
        database_defined_tags={
            'EXAMPLE_KEY_ihVh1': {
                'EXAMPLE_KEY_hBHuW': 'EXAMPLE--Value'}},
        data_collection_options=oci.database.models.DataCollectionOptions(
            is_diagnostics_events_enabled=False,
            is_health_monitoring_enabled=True,
            is_incident_logs_enabled=True)),
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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