// 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 database from "oci-database";
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 database.DatabaseClient({ authenticationDetailsProvider: provider });
// Create a request and dependent object(s).
const updateVmClusterNetworkDetails = {
scans: [{
hostname: "EXAMPLE-hostname-Value",
port: 71,
scanListenerPortTcp: 7517,
scanListenerPortTcpSsl: 4431,
ips: ["EXAMPLE--Value" ],
}
],
dns: ["EXAMPLE--Value" ],
ntp: ["EXAMPLE--Value" ],
vmNetworks: [{
vlanId: "ocid1.test.oc1..<unique_ID>EXAMPLE-vlanId-Value",
networkType: database.models.VmNetworkDetails.NetworkType.DisasterRecovery,
netmask: "EXAMPLE-netmask-Value",
gateway: "EXAMPLE-gateway-Value",
domainName: "EXAMPLE-domainName-Value",
nodes: [{
hostname: "EXAMPLE-hostname-Value",
ip: "EXAMPLE-ip-Value",
vipHostname: "EXAMPLE-vipHostname-Value",
vip: "EXAMPLE-vip-Value",
lifecycleState: database.models.NodeDetails.LifecycleState.Updating,
dbServerId: "ocid1.test.oc1..<unique_ID>EXAMPLE-dbServerId-Value",
}
],
}
],
drScans: [{
hostname: "EXAMPLE-hostname-Value",
scanListenerPortTcp: 4479,
ips: ["EXAMPLE--Value" ],
}
],
freeformTags: {
EXAMPLE_KEY_5CHKI :"EXAMPLE_VALUE_AwrKD10YXQXt5a38rA1N"
},
definedTags: {
EXAMPLE_KEY_f1G2y :{
EXAMPLE_KEY_OTdKy :"EXAMPLE--Value"
}
},
}
const updateVmClusterNetworkRequest: database.requests.UpdateVmClusterNetworkRequest = {
exadataInfrastructureId: "ocid1.test.oc1..<unique_ID>EXAMPLE-exadataInfrastructureId-Value",
vmClusterNetworkId: "ocid1.test.oc1..<unique_ID>EXAMPLE-vmClusterNetworkId-Value",
updateVmClusterNetworkDetails: updateVmClusterNetworkDetails,
ifMatch: "EXAMPLE-ifMatch-Value",
opcRequestId: "ZVK8MMZ1VCXTL3QEIXAR<unique_ID>",
};
// Send request to the Client.
const updateVmClusterNetworkResponse = await client.updateVmClusterNetwork(updateVmClusterNetworkRequest);
}
catch (error) {
console.log("updateVmClusterNetwork Failed with error " + error);
}
})();