// 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 * as dataflow from "oci-dataflow";
import common = require("oci-common");

// Create a default authentication provider that uses the DEFAULT
// profile in the configuration file.
// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.

const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();

(async () => {
  try {
    // Create a service client
    const client = new dataflow.DataFlowClient({ authenticationDetailsProvider: provider });

    // Create a request and dependent object(s).
    const updateApplicationDetails = {
      className: "EXAMPLE-className-Value",
      fileUri: "EXAMPLE-fileUri-Value",
      sparkVersion: "EXAMPLE-sparkVersion-Value",
      language: dataflow.models.ApplicationLanguage.Python,
      applicationLogConfig: {
        logGroupId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
        logId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"
      },
      archiveUri: "EXAMPLE-archiveUri-Value",
      arguments: ["EXAMPLE--Value"],
      configuration: {
        EXAMPLE_KEY_g4BsM: "EXAMPLE_VALUE_LwrqcGFdD6CVTXwQCLAU"
      },
      definedTags: {
        EXAMPLE_KEY_24N7Y: {
          EXAMPLE_KEY_VugUO: "EXAMPLE--Value"
        }
      },
      description: "EXAMPLE-description-Value",
      displayName: "EXAMPLE-displayName-Value",
      driverShape: "EXAMPLE-driverShape-Value",
      driverShapeConfig: {
        ocpus: 6183.192,
        memoryInGBs: 4218.829
      },
      execute: "EXAMPLE-execute-Value",
      executorShape: "EXAMPLE-executorShape-Value",
      executorShapeConfig: {
        ocpus: 7232.1655,
        memoryInGBs: 3364.5122
      },
      freeformTags: {
        EXAMPLE_KEY_dBWcv: "EXAMPLE_VALUE_7TcGWrVuY66OJGEQzWhN"
      },
      logsBucketUri: "EXAMPLE-logsBucketUri-Value",
      metastoreId: "ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
      numExecutors: 652,
      parameters: [
        {
          name: "EXAMPLE-name-Value",
          value: "EXAMPLE-value-Value"
        }
      ],
      poolId: "ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value",
      privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
      warehouseBucketUri: "EXAMPLE-warehouseBucketUri-Value",
      maxDurationInMinutes: 56,
      idleTimeoutInMinutes: 506
    };

    const updateApplicationRequest: dataflow.requests.UpdateApplicationRequest = {
      updateApplicationDetails: updateApplicationDetails,
      applicationId: "ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value",
      opcRequestId: "AK944UMXYAKH8JIRB9GB<unique_ID>",
      ifMatch: "EXAMPLE-ifMatch-Value"
    };

    // Send request to the Client.
    const updateApplicationResponse = await client.updateApplication(updateApplicationRequest);
  } catch (error) {
    console.log("updateApplication Failed with error  " + error);
  }
})();