// 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: 397,
          scanListenerPortTcp: 2378,
          scanListenerPortTcpSsl: 1112,
          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.Failed,
              dbServerId: "ocid1.test.oc1..<unique_ID>EXAMPLE-dbServerId-Value"
            }
          ]
        }
      ],
      drScans: [
        {
          hostname: "EXAMPLE-hostname-Value",
          scanListenerPortTcp: 6929,
          ips: ["EXAMPLE--Value"]
        }
      ],
      freeformTags: {
        EXAMPLE_KEY_1FfZx: "EXAMPLE_VALUE_EJN8ew5t2EAHUuMzDKzQ"
      },
      definedTags: {
        EXAMPLE_KEY_z2JLG: {
          EXAMPLE_KEY_TdTih: "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: "PWHGSOTCG1BRVKIICAKG<unique_ID>"
    };

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