# 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
generate_recommended_vm_cluster_network_response = database_client.generate_recommended_vm_cluster_network(
    exadata_infrastructure_id="ocid1.test.oc1..<unique_ID>EXAMPLE-exadataInfrastructureId-Value",
    generate_recommended_network_details=oci.database.models.GenerateRecommendedNetworkDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        networks=[
            oci.database.models.InfoForNetworkGenDetails(
                network_type="BACKUP",
                vlan_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vlanId-Value",
                cidr="EXAMPLE-cidr-Value",
                gateway="EXAMPLE-gateway-Value",
                netmask="EXAMPLE-netmask-Value",
                domain="EXAMPLE-domain-Value",
                prefix="EXAMPLE-prefix-Value")],
        db_servers=["EXAMPLE--Value"],
        scan_listener_port_tcp=6900,
        scan_listener_port_tcp_ssl=3489,
        dr_scan_listener_port_tcp=7943,
        dns=["EXAMPLE--Value"],
        ntp=["EXAMPLE--Value"],
        freeform_tags={
            'EXAMPLE_KEY_0Y3Ho': 'EXAMPLE_VALUE_XhNXooHfHBbilsulCIT3'},
        defined_tags={
            'EXAMPLE_KEY_ZoCYw': {
                'EXAMPLE_KEY_n6ldj': 'EXAMPLE--Value'}}),
    opc_request_id="ARLZGFLG4XWFRORO3FBF<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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