# 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
datacc_client = oci.datacc.BaseinfraClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_infrastructure_response = datacc_client.create_infrastructure(
    create_infrastructure_details=oci.datacc.models.CreateInfrastructureDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        system_model="X11_HA_768",
        shape="TWENTY_FOUR_SSDS",
        cloud_control_plane_server1="EXAMPLE-cloudControlPlaneServer1-Value",
        cloud_control_plane_server2="EXAMPLE-cloudControlPlaneServer2-Value",
        netmask="EXAMPLE-netmask-Value",
        gateway="EXAMPLE-gateway-Value",
        dns_servers=["EXAMPLE--Value"],
        ntp_servers=["EXAMPLE--Value"],
        description="EXAMPLE-description-Value",
        admin_networkcidr="EXAMPLE-adminNetworkcidr-Value",
        data_disk_percentage=65,
        contacts=[
            oci.datacc.models.InfrastructureContact(
                name="EXAMPLE-name-Value",
                email="EXAMPLE-email-Value",
                is_primary=True,
                phone_number="EXAMPLE-phoneNumber-Value",
                is_contact_mos_validated=False)],
        client_network_bonding_mode="ACTIVE_BACKUP",
        backup_network_bonding_mode="LACP",
        cps_network_bonding_mode="LACP",
        client_network_bonding_interface="BTBOND5",
        backup_network_bonding_interface="BTBOND2",
        cps_network_bonding_interface="BTBOND3",
        acfs_file_system_storage_in_gbs=4284.606,
        corporate_proxy="EXAMPLE-corporateProxy-Value",
        vlan_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vlanId-Value",
        maintenance_window=oci.datacc.models.MaintenanceWindow(
            preference="CUSTOM_PREFERENCE",
            patching_mode="ROLLING",
            is_custom_action_timeout_enabled=False,
            custom_action_timeout_in_mins=966,
            is_monthly_patching_enabled=False,
            months=["JULY"],
            weeks_of_month=[1],
            days_of_week=["THURSDAY"],
            hours_of_day=[15],
            lead_time_in_weeks=1),
        freeform_tags={
            'EXAMPLE_KEY_diwdT': 'EXAMPLE_VALUE_BhX6Pt1lbiSkuQEIcBUC'},
        defined_tags={
            'EXAMPLE_KEY_GKywD': {
                'EXAMPLE_KEY_pqI1G': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="1MQWQGJYEWZZ1DYHZZQP<unique_ID>")

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