// 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.RoverNodeClient({ authenticationDetailsProvider: provider });
     // Create a request and dependent object(s).
	const  updateRoverNodeDetails = {
		displayName: "EXAMPLE-displayName-Value",
		shape: "EXAMPLE-shape-Value",
		serialNumber: "EXAMPLE-serialNumber-Value",
		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",
			}
,
		nodeWorkloads: [{
				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",
		unlockPassphrase: "EXAMPLE-unlockPassphrase-Value",
		pointOfContact: "EXAMPLE-pointOfContact-Value",
		pointOfContactPhoneNumber: "EXAMPLE-pointOfContactPhoneNumber-Value",
		oracleShippingTrackingUrl: "EXAMPLE-oracleShippingTrackingUrl-Value",
		shippingPreference: rover.models.UpdateRoverNodeDetails.ShippingPreference.OracleShipped,
		shippingVendor: "EXAMPLE-shippingVendor-Value",
		timePickupExpected: new Date("Thu Sep 02 22:15:11 UTC 2004"),
		lifecycleState: rover.models.LifecycleState.Deleting,
		enclosureType: rover.models.EnclosureType.Ruggadized,
		lifecycleStateDetails: "EXAMPLE-lifecycleStateDetails-Value",
		timeReturnWindowStarts: new Date("Thu Oct 05 19:22:13 UTC 2034"),
		timeReturnWindowEnds: new Date("Mon Aug 11 18:04:05 UTC 2042"),
		isImportRequested: false,
		importCompartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-importCompartmentId-Value",
		importFileBucket: "EXAMPLE-importFileBucket-Value",
		dataValidationCode: "EXAMPLE-dataValidationCode-Value",
		publicKey: "EXAMPLE-publicKey-Value",
		certificateAuthorityId: "ocid1.test.oc1..<unique_ID>EXAMPLE-certificateAuthorityId-Value",
		timeCertValidityEnd: new Date("Sat Nov 14 16:14:39 UTC 2009"),
		commonName: "EXAMPLE-commonName-Value",
		certCompartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-certCompartmentId-Value",
		certKeyAlgorithm: rover.models.CertKeyAlgorithm.EcdsaP384,
		certSignatureAlgorithm: rover.models.CertSignatureAlgorithm.Sha384WithEcdsa,
		freeformTags: {
			EXAMPLE_KEY_8e2lL :"EXAMPLE_VALUE_57x9GqwXdqh6uZ2556cN"
			},
		definedTags: {
			EXAMPLE_KEY_3c3B0 :{
				EXAMPLE_KEY_SFZEh :"EXAMPLE--Value"
				}
			},
		systemTags: {
			EXAMPLE_KEY_VUNLB :{
				EXAMPLE_KEY_Roj74 :"EXAMPLE--Value"
				}
			},
		}
	const updateRoverNodeRequest: rover.requests.UpdateRoverNodeRequest = { 
	roverNodeId: "ocid1.test.oc1..<unique_ID>EXAMPLE-roverNodeId-Value",
	updateRoverNodeDetails: updateRoverNodeDetails,
	ifMatch: "EXAMPLE-ifMatch-Value",
	opcRequestId: "PK5OUR9VJUKNOGJ46XWG<unique_ID>",
		}; 
     // Send request to the Client.
     const updateRoverNodeResponse = await client.updateRoverNode(updateRoverNodeRequest);
     }
     catch (error) {
         console.log("updateRoverNode Failed with error  " + error);
     }
})();