# 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
batch_client = oci.batch.BatchComputingClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_batch_task_environment_response = batch_client.create_batch_task_environment(
    create_batch_task_environment_details=oci.batch.models.CreateBatchTaskEnvironmentDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        image_url="EXAMPLE-imageUrl-Value",
        display_name="EXAMPLE-displayName-Value",
        description="EXAMPLE-description-Value",
        security_context=oci.batch.models.SecurityContext(
            run_as_user=725,
            run_as_group=917,
            fs_group=32),
        working_directory="EXAMPLE-workingDirectory-Value",
        volumes=[
            oci.batch.models.NfsVolume(
                type="NFS",
                name="EXAMPLE-name-Value",
                mount_target_fqdn="EXAMPLE-mountTargetFqdn-Value",
                mount_target_export_path="EXAMPLE-mountTargetExportPath-Value",
                local_mount_directory_path="EXAMPLE-localMountDirectoryPath-Value")],
        defined_tags={
            'EXAMPLE_KEY_5OaJI': {
                'EXAMPLE_KEY_aKZxe': 'EXAMPLE--Value'}},
        freeform_tags={
            'EXAMPLE_KEY_51Dgn': 'EXAMPLE_VALUE_lnJKuQCk5p5dZVYS09Xz'}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="48ZEGFASE72XQ5ORGHIC<unique_ID>")

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