// 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  updateVmClusterDetails = {
		cpuCoreCount: 700,
		ocpuCount: 3720.672,
		memorySizeInGBs: 101,
		dbNodeStorageSizeInGBs: 449,
		dataStorageSizeInTBs: 5591.9697,
		dataStorageSizeInGBs: 1741.3723,
		licenseModel: database.models.UpdateVmClusterDetails.LicenseModel.LicenseIncluded,
		sshPublicKeys: ["EXAMPLE--Value"				],
		version: {
			patchId: "ocid1.test.oc1..<unique_ID>EXAMPLE-patchId-Value",
			databaseSoftwareImageId: "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseSoftwareImageId-Value",
			action: database.models.PatchDetails.Action.Apply,

			}
,
		updateDetails: {
			updateId: "ocid1.test.oc1..<unique_ID>EXAMPLE-updateId-Value",
			updateAction: database.models.VmClusterUpdateDetails.UpdateAction.RollingApply,
			giSoftwareImageId: "ocid1.test.oc1..<unique_ID>EXAMPLE-giSoftwareImageId-Value",

			}
,
		freeformTags: {
			EXAMPLE_KEY_vv6eM :"EXAMPLE_VALUE_5d7ofuI0OUnoPz1pZhHQ"
			},
		definedTags: {
			EXAMPLE_KEY_HI6uv :{
				EXAMPLE_KEY_ATDOd :"EXAMPLE--Value"
				}
			},
		dataCollectionOptions: {
			isDiagnosticsEventsEnabled: true,
			isHealthMonitoringEnabled: true,
			isIncidentLogsEnabled: false,

			}
,
		fileSystemConfigurationDetails: [{
				mountPoint: "EXAMPLE-mountPoint-Value",
				fileSystemSizeGb: 57,

				}
				],
		cloudAutomationUpdateDetails: {
			isEarlyAdoptionEnabled: true,
			isFreezePeriodEnabled: true,
			applyUpdateTimePreference: {
				applyUpdatePreferredStartTime: "EXAMPLE-applyUpdatePreferredStartTime-Value",
				applyUpdatePreferredEndTime: "EXAMPLE-applyUpdatePreferredEndTime-Value",

				}
,
			freezePeriod: {
				freezePeriodStartTime: "EXAMPLE-freezePeriodStartTime-Value",
				freezePeriodEndTime: "EXAMPLE-freezePeriodEndTime-Value",

				}
,

			}
,

		}

	const updateVmClusterRequest: database.requests.UpdateVmClusterRequest = { 
	vmClusterId: "ocid1.test.oc1..<unique_ID>EXAMPLE-vmClusterId-Value",
	updateVmClusterDetails: updateVmClusterDetails,
	ifMatch: "EXAMPLE-ifMatch-Value",
	opcRequestId: "ADSHMA1AYZ6HDHOIJEET<unique_ID>",

		}; 


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