# 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
from datetime import datetime

# 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
rover_client = oci.rover.RoverClusterClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_rover_cluster_response = rover_client.create_rover_cluster(
    create_rover_cluster_details=oci.rover.models.CreateRoverClusterDetails(
        display_name="EXAMPLE-displayName-Value",
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        cluster_size=16,
        customer_shipping_address=oci.rover.models.ShippingAddress(
            addressee="EXAMPLE-addressee-Value",
            address1="EXAMPLE-address1-Value",
            city_or_locality="EXAMPLE-cityOrLocality-Value",
            state_or_region="EXAMPLE-stateOrRegion-Value",
            zipcode="EXAMPLE-zipcode-Value",
            country="EXAMPLE-country-Value",
            phone_number="EXAMPLE-phoneNumber-Value",
            care_of="EXAMPLE-careOf-Value",
            address2="EXAMPLE-address2-Value",
            address3="EXAMPLE-address3-Value",
            address4="EXAMPLE-address4-Value",
            email="EXAMPLE-email-Value"),
        cluster_workloads=[
            oci.rover.models.RoverWorkload(
                compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
                id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
                workload_type="EXAMPLE-workloadType-Value",
                name="EXAMPLE-name-Value",
                size="EXAMPLE-size-Value",
                object_count="EXAMPLE-objectCount-Value",
                prefix="EXAMPLE-prefix-Value",
                range_start="EXAMPLE-rangeStart-Value",
                range_end="EXAMPLE-rangeEnd-Value",
                work_request_id="ocid1.test.oc1..<unique_ID>EXAMPLE-workRequestId-Value")],
        cluster_type="STATION",
        super_user_password="EXAMPLE-superUserPassword-Value",
        enclosure_type="NON_RUGGADIZED",
        unlock_passphrase="EXAMPLE-unlockPassphrase-Value",
        point_of_contact="EXAMPLE-pointOfContact-Value",
        point_of_contact_phone_number="EXAMPLE-pointOfContactPhoneNumber-Value",
        shipping_preference="ORACLE_SHIPPED",
        shipping_vendor="EXAMPLE-shippingVendor-Value",
        time_pickup_expected=datetime.strptime(
                        "2023-02-28T14:57:33.094Z",
                        "%Y-%m-%dT%H:%M:%S.%fZ"),
        oracle_shipping_tracking_url="EXAMPLE-oracleShippingTrackingUrl-Value",
        subscription_id="ocid1.test.oc1..<unique_ID>EXAMPLE-subscriptionId-Value",
        lifecycle_state="ACTIVE",
        lifecycle_state_details="EXAMPLE-lifecycleStateDetails-Value",
        is_import_requested=False,
        import_compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-importCompartmentId-Value",
        import_file_bucket="EXAMPLE-importFileBucket-Value",
        data_validation_code="EXAMPLE-dataValidationCode-Value",
        master_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-masterKeyId-Value",
        freeform_tags={
            'EXAMPLE_KEY_kCWY5': 'EXAMPLE_VALUE_ESzVnJ1vW80zsq93ZU5Q'},
        defined_tags={
            'EXAMPLE_KEY_hAq3j': {
                'EXAMPLE_KEY_ENm9m': 'EXAMPLE--Value'}},
        system_tags={
            'EXAMPLE_KEY_NRMmG': {
                'EXAMPLE_KEY_4weyX': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="R1URSTP1GT3YYR59SXJO<unique_ID>")

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