// 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.CustomerPickup,
shippingVendor: "EXAMPLE-shippingVendor-Value",
timePickupExpected: new Date("Fri Mar 03 19:06:20 UTC 2006"),
lifecycleState: rover.models.LifecycleState.Deleting,
enclosureType: rover.models.EnclosureType.Ruggadized,
lifecycleStateDetails: "EXAMPLE-lifecycleStateDetails-Value",
timeReturnWindowStarts: new Date("Mon Feb 05 03:13:09 UTC 2007"),
timeReturnWindowEnds: new Date("Sat May 05 11:23:36 UTC 2029"),
isImportRequested: true,
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("Fri Aug 30 05:30:05 UTC 2002"),
commonName: "EXAMPLE-commonName-Value",
certCompartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-certCompartmentId-Value",
certKeyAlgorithm: rover.models.CertKeyAlgorithm.EcdsaP256,
certSignatureAlgorithm: rover.models.CertSignatureAlgorithm.Sha384WithRsa,
freeformTags: {
EXAMPLE_KEY_57uNL :"EXAMPLE_VALUE_rop4ToUOgg6Dy4GGy3pv"
},
definedTags: {
EXAMPLE_KEY_xK3X2 :{
EXAMPLE_KEY_dj5fY :"EXAMPLE--Value"
}
},
systemTags: {
EXAMPLE_KEY_XHmrf :{
EXAMPLE_KEY_RgKl6 :"EXAMPLE--Value"
}
},
}
const updateRoverNodeRequest: rover.requests.UpdateRoverNodeRequest = {
roverNodeId: "ocid1.test.oc1..<unique_ID>EXAMPLE-roverNodeId-Value",
updateRoverNodeDetails: updateRoverNodeDetails,
ifMatch: "EXAMPLE-ifMatch-Value",
opcRequestId: "B2HILIWUCYSVBSB9LOIT<unique_ID>",
};
// Send request to the Client.
const updateRoverNodeResponse = await client.updateRoverNode(updateRoverNodeRequest);
}
catch (error) {
console.log("updateRoverNode Failed with error " + error);
}
})();