# 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
data_flow_client = oci.data_flow.DataFlowClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_run_response = data_flow_client.create_run(
    create_run_details=oci.data_flow.models.CreateRunDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        application_log_config=oci.data_flow.models.ApplicationLogConfig(
            log_group_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
            log_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"),
        application_id="ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value",
        archive_uri="EXAMPLE-archiveUri-Value",
        arguments=["EXAMPLE--Value"],
        configuration={
            'EXAMPLE_KEY_aeivx': 'EXAMPLE_VALUE_omg2Ge0PH6xnwyrCplzi'},
        defined_tags={
            'EXAMPLE_KEY_lHIw5': {
                'EXAMPLE_KEY_y7tb8': 'EXAMPLE--Value'}},
        display_name="EXAMPLE-displayName-Value",
        driver_shape="EXAMPLE-driverShape-Value",
        driver_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=6746.124,
            memory_in_gbs=1449.1123),
        execute="EXAMPLE-execute-Value",
        executor_shape="EXAMPLE-executorShape-Value",
        executor_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=8783.41,
            memory_in_gbs=1196.3511),
        freeform_tags={
            'EXAMPLE_KEY_fG6Ff': 'EXAMPLE_VALUE_eOJ1NxGyjav5vaBpZnxT'},
        logs_bucket_uri="EXAMPLE-logsBucketUri-Value",
        metastore_id="ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
        num_executors=320,
        parameters=[
            oci.data_flow.models.ApplicationParameter(
                name="EXAMPLE-name-Value",
                value="EXAMPLE-value-Value")],
        pool_id="ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value",
        spark_version="EXAMPLE-sparkVersion-Value",
        type="BATCH",
        warehouse_bucket_uri="EXAMPLE-warehouseBucketUri-Value",
        max_duration_in_minutes=130,
        idle_timeout_in_minutes=646),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="9YVUK46WOFNL4FXSHHYG<unique_ID>",
    opc_parent_rpt_url="EXAMPLE-opcParentRptUrl-Value")

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