// 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 dts from "oci-dts";
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 dts.ApplianceExportJobClient({ authenticationDetailsProvider: provider });

    // Create a request and dependent object(s).
    const updateApplianceExportJobDetails = {
      bucketName: "EXAMPLE-bucketName-Value",
      prefix: "EXAMPLE-prefix-Value",
      rangeStart: "EXAMPLE-rangeStart-Value",
      rangeEnd: "EXAMPLE-rangeEnd-Value",
      displayName: "EXAMPLE-displayName-Value",
      lifecycleState: dts.models.UpdateApplianceExportJobDetails.LifecycleState.Succeeded,
      lifecycleStateDetails: "EXAMPLE-lifecycleStateDetails-Value",
      manifestFile: "EXAMPLE-manifestFile-Value",
      manifestMd5: "EXAMPLE-manifestMd5-Value",
      numberOfObjects: "EXAMPLE-numberOfObjects-Value",
      totalSizeInBytes: "EXAMPLE-totalSizeInBytes-Value",
      firstObject: "EXAMPLE-firstObject-Value",
      lastObject: "EXAMPLE-lastObject-Value",
      nextObject: "EXAMPLE-nextObject-Value",
      expectedReturnDate: new Date("Sat Nov 27 15:16:43 UTC 2004"),
      pickupWindowStartTime: new Date("Thu Jun 11 05:54:13 UTC 2026"),
      pickupWindowEndTime: new Date("Sun Apr 24 22:15:08 UTC 2011"),
      customerShippingAddress: {
        addressee: "EXAMPLE-addressee-Value",
        careOf: "EXAMPLE-careOf-Value",
        address1: "EXAMPLE-address1-Value",
        address2: "EXAMPLE-address2-Value",
        address3: "EXAMPLE-address3-Value",
        address4: "EXAMPLE-address4-Value",
        cityOrLocality: "EXAMPLE-cityOrLocality-Value",
        stateOrRegion: "EXAMPLE-stateOrRegion-Value",
        zipcode: "EXAMPLE-zipcode-Value",
        country: "EXAMPLE-country-Value",
        phoneNumber: "EXAMPLE-phoneNumber-Value",
        email: "EXAMPLE-email-Value"
      },
      freeformTags: {
        EXAMPLE_KEY_G1JGf: "EXAMPLE_VALUE_e37DIuZDnbMFA5vvw3oQ"
      },
      definedTags: {
        EXAMPLE_KEY_Rppds: {
          EXAMPLE_KEY_dulmC: "EXAMPLE--Value"
        }
      }
    };

    const updateApplianceExportJobRequest: dts.requests.UpdateApplianceExportJobRequest = {
      applianceExportJobId: "ocid1.test.oc1..<unique_ID>EXAMPLE-applianceExportJobId-Value",
      updateApplianceExportJobDetails: updateApplianceExportJobDetails,
      ifMatch: "EXAMPLE-ifMatch-Value",
      opcRequestId: "SZMQSU4O1LR2QA141ULP<unique_ID>"
    };

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