# 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_application_response = data_flow_client.create_application(
    create_application_details=oci.data_flow.models.CreateApplicationDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        driver_shape="EXAMPLE-driverShape-Value",
        executor_shape="EXAMPLE-executorShape-Value",
        language="JAVA",
        num_executors=607,
        spark_version="EXAMPLE-sparkVersion-Value",
        archive_uri="EXAMPLE-archiveUri-Value",
        arguments=["EXAMPLE--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"),
        class_name="EXAMPLE-className-Value",
        configuration={
            'EXAMPLE_KEY_17vjU': 'EXAMPLE_VALUE_cH49W6uXxARZohk705i1'},
        defined_tags={
            'EXAMPLE_KEY_ylWnQ': {
                'EXAMPLE_KEY_SUZdG': 'EXAMPLE--Value'}},
        description="EXAMPLE-description-Value",
        driver_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=8345.16,
            memory_in_gbs=9011.1875),
        execute="EXAMPLE-execute-Value",
        executor_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=2702.2832,
            memory_in_gbs=6734.819),
        file_uri="EXAMPLE-fileUri-Value",
        freeform_tags={
            'EXAMPLE_KEY_9rerr': 'EXAMPLE_VALUE_WSSuOSs6SSi4AHXLb8yV'},
        logs_bucket_uri="EXAMPLE-logsBucketUri-Value",
        metastore_id="ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
        parameters=[
            oci.data_flow.models.ApplicationParameter(
                name="EXAMPLE-name-Value",
                value="EXAMPLE-value-Value")],
        pool_id="ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value",
        private_endpoint_id="ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
        type="STREAMING",
        warehouse_bucket_uri="EXAMPLE-warehouseBucketUri-Value",
        max_duration_in_minutes=690,
        idle_timeout_in_minutes=459),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="GL2UZNVNMWH1WBPG6HVI<unique_ID>")

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