# 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_job_response = batch_client.create_batch_job(
create_batch_job_details=oci.batch.models.CreateBatchJobDetails(
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
batch_job_pool_id="ocid1.test.oc1..<unique_ID>EXAMPLE-batchJobPoolId-Value",
tasks=[
oci.batch.models.CreateComputeTaskDetails(
type="COMPUTE",
name="EXAMPLE-name-Value",
batch_task_environment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-batchTaskEnvironmentId-Value",
description="EXAMPLE-description-Value",
entitlement_claims=["EXAMPLE--Value"],
dependencies=["EXAMPLE--Value"],
environment_variables=[
oci.batch.models.EnvironmentVariable(
name="EXAMPLE-name-Value",
value="EXAMPLE-value-Value")],
batch_task_profile_id="ocid1.test.oc1..<unique_ID>EXAMPLE-batchTaskProfileId-Value",
command=["EXAMPLE--Value"],
arguments=["EXAMPLE--Value"],
fleet_assignment_policy=oci.batch.models.FlexFitFleetAssignmentPolicy(
type="FLEX_FIT",
threshold=2406.73))],
display_name="EXAMPLE-displayName-Value",
description="EXAMPLE-description-Value",
environment_variables=[
oci.batch.models.EnvironmentVariable(
name="EXAMPLE-name-Value",
value="EXAMPLE-value-Value")],
freeform_tags={
'EXAMPLE_KEY_xfEmn': 'EXAMPLE_VALUE_Iir2FDYKrrAvJhsvLXyJ'},
defined_tags={
'EXAMPLE_KEY_y3GiJ': {
'EXAMPLE_KEY_edE05': 'EXAMPLE--Value'}}),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_request_id="VGQNZ8YMU60URMFSYK85<unique_ID>")
# Get the data from response
print(create_batch_job_response.data)