# 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_exadata_infrastructure_response = database_client.create_exadata_infrastructure(
    create_exadata_infrastructure_details=oci.database.models.CreateExadataInfrastructureDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        shape="EXAMPLE-shape-Value",
        time_zone="EXAMPLE-timeZone-Value",
        cloud_control_plane_server1="EXAMPLE-cloudControlPlaneServer1-Value",
        cloud_control_plane_server2="EXAMPLE-cloudControlPlaneServer2-Value",
        netmask="EXAMPLE-netmask-Value",
        gateway="EXAMPLE-gateway-Value",
        admin_network_cidr="EXAMPLE-adminNetworkCIDR-Value",
        infini_band_network_cidr="EXAMPLE-infiniBandNetworkCIDR-Value",
        dns_server=["EXAMPLE--Value"],
        ntp_server=["EXAMPLE--Value"],
        corporate_proxy="EXAMPLE-corporateProxy-Value",
        contacts=[
            oci.database.models.ExadataInfrastructureContact(
                name="EXAMPLE-name-Value",
                email="EXAMPLE-email-Value",
                is_primary=True,
                phone_number="EXAMPLE-phoneNumber-Value",
                is_contact_mos_validated=True)],
        maintenance_window=oci.database.models.MaintenanceWindow(
            preference="CUSTOM_PREFERENCE",
            patching_mode="NONROLLING",
            is_custom_action_timeout_enabled=False,
            custom_action_timeout_in_mins=61,
            is_monthly_patching_enabled=False,
            months=[
                oci.database.models.Month(
                    name="JULY")],
            weeks_of_month=[1],
            days_of_week=[
                oci.database.models.DayOfWeek(
                    name="SATURDAY")],
            hours_of_day=[10],
            lead_time_in_weeks=1),
        storage_count=554,
        compute_count=810,
        is_multi_rack_deployment=True,
        multi_rack_configuration_file="NIQuJWw8cst1QQYqiZ4Z",
        is_cps_offline_report_enabled=True,
        network_bonding_mode_details=oci.database.models.NetworkBondingModeDetails(
            client_network_bonding_mode="ACTIVE_BACKUP",
            backup_network_bonding_mode="ACTIVE_BACKUP",
            dr_network_bonding_mode="LACP"),
        freeform_tags={
            'EXAMPLE_KEY_YYbj8': 'EXAMPLE_VALUE_IDuWDIIAh3oEe0u63qD6'},
        defined_tags={
            'EXAMPLE_KEY_5yo3b': {
                'EXAMPLE_KEY_CORfn': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="JRKCINM4TLQFKCJ6EFWW<unique_ID>")

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