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

    // Create a request and dependent object(s).
    const updateRoverClusterDetails = {
      displayName: "EXAMPLE-displayName-Value",
      clusterSize: 21,
      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"
      },
      clusterWorkloads: [
        {
          name: "EXAMPLE-name-Value",
          compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
          id: "ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
          size: "EXAMPLE-size-Value",
          objectCount: "EXAMPLE-objectCount-Value",
          prefix: "EXAMPLE-prefix-Value",
          rangeStart: "EXAMPLE-rangeStart-Value",
          rangeEnd: "EXAMPLE-rangeEnd-Value",
          workloadType: "EXAMPLE-workloadType-Value",
          workRequestId: "ocid1.test.oc1..<unique_ID>EXAMPLE-workRequestId-Value"
        }
      ],
      superUserPassword: "EXAMPLE-superUserPassword-Value",
      lifecycleState: rover.models.LifecycleState.Failed,
      lifecycleStateDetails: "EXAMPLE-lifecycleStateDetails-Value",
      unlockPassphrase: "EXAMPLE-unlockPassphrase-Value",
      enclosureType: rover.models.EnclosureType.Ruggadized,
      pointOfContact: "EXAMPLE-pointOfContact-Value",
      pointOfContactPhoneNumber: "EXAMPLE-pointOfContactPhoneNumber-Value",
      shippingPreference: rover.models.UpdateRoverClusterDetails.ShippingPreference.CustomerPickup,
      oracleShippingTrackingUrl: "EXAMPLE-oracleShippingTrackingUrl-Value",
      subscriptionId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subscriptionId-Value",
      shippingVendor: "EXAMPLE-shippingVendor-Value",
      timePickupExpected: new Date("Sun Oct 15 15:34:59 UTC 2034"),
      isImportRequested: true,
      importCompartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-importCompartmentId-Value",
      importFileBucket: "EXAMPLE-importFileBucket-Value",
      dataValidationCode: "EXAMPLE-dataValidationCode-Value",
      freeformTags: {
        EXAMPLE_KEY_2YJib: "EXAMPLE_VALUE_yHgn4UMjWJfk2oxbvCaw"
      },
      definedTags: {
        EXAMPLE_KEY_f6uLL: {
          EXAMPLE_KEY_T6zXb: "EXAMPLE--Value"
        }
      },
      systemTags: {
        EXAMPLE_KEY_VuwyO: {
          EXAMPLE_KEY_J5UTZ: "EXAMPLE--Value"
        }
      }
    };

    const updateRoverClusterRequest: rover.requests.UpdateRoverClusterRequest = {
      roverClusterId: "ocid1.test.oc1..<unique_ID>EXAMPLE-roverClusterId-Value",
      updateRoverClusterDetails: updateRoverClusterDetails,
      ifMatch: "EXAMPLE-ifMatch-Value",
      opcRequestId: "CAAFKQGWL1AZGOHIKLT0<unique_ID>"
    };

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