# 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="NO_PREFERENCE",
            patching_mode="NONROLLING",
            is_custom_action_timeout_enabled=True,
            custom_action_timeout_in_mins=33,
            is_monthly_patching_enabled=True,
            months=[
                oci.database.models.Month(
                    name="JUNE")],
            weeks_of_month=[3],
            days_of_week=[
                oci.database.models.DayOfWeek(
                    name="MONDAY")],
            hours_of_day=[0],
            lead_time_in_weeks=1,
            skip_ru=[
                True,
                False]),
        storage_count=819,
        compute_count=187,
        is_multi_rack_deployment=False,
        multi_rack_configuration_file="QR8EzXoK0qV0WkoIl73t",
        is_cps_offline_report_enabled=False,
        network_bonding_mode_details=oci.database.models.NetworkBondingModeDetails(
            client_network_bonding_mode="ACTIVE_BACKUP",
            backup_network_bonding_mode="LACP",
            dr_network_bonding_mode="ACTIVE_BACKUP"),
        freeform_tags={
            'EXAMPLE_KEY_rsfWH': 'EXAMPLE_VALUE_U6J1AzirGFh0IXGSZRA3'},
        defined_tags={
            'EXAMPLE_KEY_TvFJG': {
                'EXAMPLE_KEY_xgVCb': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="RLL6WA8TDMXFJOXWUU0I<unique_ID>")

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