# 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_catalog_client = oci.data_catalog.DataCatalogClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
validate_connection_response = data_catalog_client.validate_connection(
    catalog_id="ocid1.test.oc1..<unique_ID>EXAMPLE-catalogId-Value",
    data_asset_key="EXAMPLE-dataAssetKey-Value",
    validate_connection_details=oci.data_catalog.models.ValidateConnectionDetails(
        connection_detail=oci.data_catalog.models.CreateConnectionDetails(
            display_name="EXAMPLE-displayName-Value",
            type_key="EXAMPLE-typeKey-Value",
            properties={
                'EXAMPLE_KEY_R6B8U': {
                    'EXAMPLE_KEY_746s6': 'EXAMPLE--Value'}},
            description="EXAMPLE-description-Value",
            custom_property_members=[
                        oci.data_catalog.models.CustomPropertySetUsage(
                            key="EXAMPLE-key-Value",
                            display_name="EXAMPLE-displayName-Value",
                            value="EXAMPLE-value-Value",
                            namespace_name="EXAMPLE-namespaceName-Value")],
            enc_properties={
                'EXAMPLE_KEY_1aP1A': {
                    'EXAMPLE_KEY_1s64P': 'EXAMPLE--Value'}},
            is_default=True),
        connection_payload="1rwOoFslgukLLL1XbKro"),
    opc_request_id="SEZZC3EVXPRKJ67PV5MT<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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