// 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).

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Oci.DatabaseService;
using Oci.Common;
using Oci.Common.Auth;

namespace Oci.Sdk.DotNet.Example.Database
{
    public class CreateCloudVmClusterExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var createCloudVmClusterDetails = new Oci.DatabaseService.Models.CreateCloudVmClusterDetails
			{
				CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
				SubscriptionId = "ocid1.test.oc1..<unique_ID>EXAMPLE-subscriptionId-Value",
				SubnetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
				BackupSubnetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-backupSubnetId-Value",
				CpuCoreCount = 748,
				OcpuCount = (float)9978.766,
				MemorySizeInGBs = 58,
				DbNodeStorageSizeInGBs = 71,
				DataStorageSizeInTBs = 4710.8013,
				DbServers = new List<string>
				{
					"EXAMPLE--Value"
				},
				ClusterName = "EXAMPLE-clusterName-Value",
				DataStoragePercentage = 11,
				RecoStoragePercentage = 11,
				SparseStoragePercentage = 56,
				DisplayName = "EXAMPLE-displayName-Value",
				CloudExadataInfrastructureId = "ocid1.test.oc1..<unique_ID>EXAMPLE-cloudExadataInfrastructureId-Value",
				Hostname = "EXAMPLE-hostname-Value",
				Domain = "EXAMPLE-domain-Value",
				SshPublicKeys = new List<string>
				{
					"EXAMPLE--Value"
				},
				LicenseModel = Oci.DatabaseService.Models.CreateCloudVmClusterDetails.LicenseModelEnum.BringYourOwnLicense,
				IsSparseDiskgroupEnabled = true,
				IsLocalBackupEnabled = false,
				TimeZone = "EXAMPLE-timeZone-Value",
				ScanListenerPortTcp = 818,
				ScanListenerPortTcpSsl = 352,
				PrivateZoneId = "ocid1.test.oc1..<unique_ID>EXAMPLE-privateZoneId-Value",
				NsgIds = new List<string>
				{
					"EXAMPLE--Value"
				},
				BackupNetworkNsgIds = new List<string>
				{
					"EXAMPLE--Value"
				},
				GiVersion = "EXAMPLE-giVersion-Value",
				FreeformTags = new Dictionary<string, string>()
				{
					{
						"EXAMPLE_KEY_ugtrV", 
						"EXAMPLE_VALUE_6vskVXRKkletZFeGJs15"
					}
				},
				DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
				{
					{
						"EXAMPLE_KEY_eHcli", 
						new Dictionary<string, Object>()
						{
							{
								"EXAMPLE_KEY_3dLUD", 
								"EXAMPLE--Value"
							}
						}
					}
				},
				SecurityAttributes = new Dictionary<string, Dictionary<string, Object>>()
				{
					{
						"EXAMPLE_KEY_ZHEjQ", 
						new Dictionary<string, Object>()
						{
							{
								"EXAMPLE_KEY_qQM5x", 
								"EXAMPLE--Value"
							}
						}
					}
				},
				DataCollectionOptions = new Oci.DatabaseService.Models.DataCollectionOptions
				{
					IsDiagnosticsEventsEnabled = false,
					IsHealthMonitoringEnabled = true,
					IsIncidentLogsEnabled = false
				},
				SystemVersion = "EXAMPLE-systemVersion-Value",
				FileSystemConfigurationDetails = new List<Oci.DatabaseService.Models.FileSystemConfigurationDetail>
				{
					new Oci.DatabaseService.Models.FileSystemConfigurationDetail
					{
						MountPoint = "EXAMPLE-mountPoint-Value",
						FileSystemSizeGb = 264
					}
				},
				CloudAutomationUpdateDetails = new Oci.DatabaseService.Models.CloudAutomationUpdateDetails
				{
					IsEarlyAdoptionEnabled = true,
					IsFreezePeriodEnabled = true,
					ApplyUpdateTimePreference = new Oci.DatabaseService.Models.CloudAutomationApplyUpdateTimePreference
					{
						ApplyUpdatePreferredStartTime = "EXAMPLE-applyUpdatePreferredStartTime-Value",
						ApplyUpdatePreferredEndTime = "EXAMPLE-applyUpdatePreferredEndTime-Value"
					},
					FreezePeriod = new Oci.DatabaseService.Models.CloudAutomationFreezePeriod
					{
						FreezePeriodStartTime = "EXAMPLE-freezePeriodStartTime-Value",
						FreezePeriodEndTime = "EXAMPLE-freezePeriodEndTime-Value"
					}
				},
				ExascaleDbStorageVaultId = "ocid1.test.oc1..<unique_ID>EXAMPLE-exascaleDbStorageVaultId-Value",
				VmClusterType = Oci.DatabaseService.Models.CreateCloudVmClusterDetails.VmClusterTypeEnum.Developer,
				VmFileSystemStorageType = Oci.DatabaseService.Models.CreateCloudVmClusterDetails.VmFileSystemStorageTypeEnum.Local,
				VmBackupStorageType = Oci.DatabaseService.Models.CreateCloudVmClusterDetails.VmBackupStorageTypeEnum.Exascale
			};
			var createCloudVmClusterRequest = new Oci.DatabaseService.Requests.CreateCloudVmClusterRequest
			{
				CreateCloudVmClusterDetails = createCloudVmClusterDetails,
				OpcRetryToken = "EXAMPLE-opcRetryToken-Value",
				OpcRequestId = "VOORG7NZSGHG6L6TYQQ9<unique_ID>",
				OpcDryRun = false
			};

            // 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. 
            var provider = new ConfigFileAuthenticationDetailsProvider("DEFAULT");
            try
            {
                // Create a service client and send the request.
				using (var client = new DatabaseClient(provider, new ClientConfiguration()))
				{
					var response = await client.CreateCloudVmCluster(createCloudVmClusterRequest);
					// Retrieve value from the response.
					var id = response.CloudVmCluster.Id;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"CreateCloudVmCluster Failed with {e.Message}");
                throw e;
            }
        }

    }
}