# 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
update_application_response = data_flow_client.update_application(
    update_application_details=oci.data_flow.models.UpdateApplicationDetails(
        class_name="EXAMPLE-className-Value",
        file_uri="EXAMPLE-fileUri-Value",
        spark_version="EXAMPLE-sparkVersion-Value",
        language="PYTHON",
        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"),
        archive_uri="EXAMPLE-archiveUri-Value",
        arguments=["EXAMPLE--Value"],
        configuration={
            'EXAMPLE_KEY_uyafr': 'EXAMPLE_VALUE_CXFaGoANlY2uPRziErHZ'},
        defined_tags={
            'EXAMPLE_KEY_cDffN': {
                'EXAMPLE_KEY_LGY7H': 'EXAMPLE--Value'}},
        description="EXAMPLE-description-Value",
        display_name="EXAMPLE-displayName-Value",
        driver_shape="EXAMPLE-driverShape-Value",
        driver_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=8676.905,
            memory_in_gbs=7467.05),
        execute="EXAMPLE-execute-Value",
        executor_shape="EXAMPLE-executorShape-Value",
        executor_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=3564.1194,
            memory_in_gbs=1482.2262),
        freeform_tags={
            'EXAMPLE_KEY_8doKk': 'EXAMPLE_VALUE_ORPo3rE9W5KUZlmmU0oU'},
        logs_bucket_uri="EXAMPLE-logsBucketUri-Value",
        metastore_id="ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
        num_executors=738,
        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",
        warehouse_bucket_uri="EXAMPLE-warehouseBucketUri-Value",
        max_duration_in_minutes=82,
        idle_timeout_in_minutes=92),
    application_id="ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value",
    opc_request_id="O0AF0OKKTIM02OE0QI16<unique_ID>",
    if_match="EXAMPLE-ifMatch-Value")

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

Was this article helpful?