# 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
data_safe_client = oci.data_safe.DataSafeClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_target_database_response = data_safe_client.create_target_database(
    create_target_database_details=oci.data_safe.models.CreateTargetDatabaseDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        database_details=oci.data_safe.models.InstalledDatabaseDetails(
            database_type="INSTALLED_DATABASE",
            infrastructure_type="NON_ORACLE_CLOUD",
            listener_port=411,
            service_name="EXAMPLE-serviceName-Value",
            instance_id="ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value",
            ip_addresses=["EXAMPLE--Value"]),
        display_name="EXAMPLE-displayName-Value",
        description="EXAMPLE-description-Value",
        credentials=oci.data_safe.models.Credentials(
            user_name="EXAMPLE-userName-Value",
            password="EXAMPLE-password-Value"),
        tls_config=oci.data_safe.models.TlsConfig(
            status="DISABLED",
            certificate_store_type="JKS",
            store_password="EXAMPLE-storePassword-Value",
            trust_store_content="EXAMPLE-trustStoreContent-Value",
            key_store_content="EXAMPLE-keyStoreContent-Value"),
        connection_option=oci.data_safe.models.PrivateEndpoint(
            connection_type="PRIVATE_ENDPOINT",
            datasafe_private_endpoint_id="ocid1.test.oc1..<unique_ID>EXAMPLE-datasafePrivateEndpointId-Value"),
        peer_target_database_details=[
            oci.data_safe.models.CreatePeerTargetDatabaseDetails(
                display_name="EXAMPLE-displayName-Value",
                description="EXAMPLE-description-Value",
                dataguard_association_id="ocid1.test.oc1..<unique_ID>EXAMPLE-dataguardAssociationId-Value",
                tls_config=oci.data_safe.models.TlsConfig(
                    status="ENABLED",
                    certificate_store_type="JKS",
                    store_password="EXAMPLE-storePassword-Value",
                    trust_store_content="EXAMPLE-trustStoreContent-Value",
                    key_store_content="EXAMPLE-keyStoreContent-Value"))],
        freeform_tags={
            'EXAMPLE_KEY_ofjci': 'EXAMPLE_VALUE_6fx1bpliCiXHOt62A6RL'},
        defined_tags={
            'EXAMPLE_KEY_xzSRy': {
                'EXAMPLE_KEY_xVwkb': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="GCAQSNO01ISHXWVED2N0<unique_ID>")

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