// 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 = 847,
OcpuCount = (float)5520.2095,
MemorySizeInGBs = 557,
DbNodeStorageSizeInGBs = 591,
DataStorageSizeInTBs = 6052.4316,
DbServers = new List<string>
{
"EXAMPLE--Value"
},
ClusterName = "EXAMPLE-clusterName-Value",
DataStoragePercentage = 973,
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.LicenseIncluded,
IsSparseDiskgroupEnabled = true,
IsLocalBackupEnabled = false,
TimeZone = "EXAMPLE-timeZone-Value",
ScanListenerPortTcp = 951,
ScanListenerPortTcpSsl = 640,
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_fa3tz",
"EXAMPLE_VALUE_Dw8HDkpKis2SOGHGUtJM"
}
},
DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
{
{
"EXAMPLE_KEY_sxsh7",
new Dictionary<string, Object>()
{
{
"EXAMPLE_KEY_qxqIa",
"EXAMPLE--Value"
}
}
}
},
SecurityAttributes = new Dictionary<string, Dictionary<string, Object>>()
{
{
"EXAMPLE_KEY_37VdU",
new Dictionary<string, Object>()
{
{
"EXAMPLE_KEY_BXcjY",
"EXAMPLE--Value"
}
}
}
},
DataCollectionOptions = new Oci.DatabaseService.Models.DataCollectionOptions
{
IsDiagnosticsEventsEnabled = false,
IsHealthMonitoringEnabled = true,
IsIncidentLogsEnabled = true
},
SystemVersion = "EXAMPLE-systemVersion-Value",
FileSystemConfigurationDetails = new List<Oci.DatabaseService.Models.FileSystemConfigurationDetail>
{
new Oci.DatabaseService.Models.FileSystemConfigurationDetail
{
MountPoint = "EXAMPLE-mountPoint-Value",
FileSystemSizeGb = 232
}
},
CloudAutomationUpdateDetails = new Oci.DatabaseService.Models.CloudAutomationUpdateDetails
{
IsEarlyAdoptionEnabled = true,
IsFreezePeriodEnabled = false,
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"
}
},
VmClusterType = Oci.DatabaseService.Models.CreateCloudVmClusterDetails.VmClusterTypeEnum.Developer
};
var createCloudVmClusterRequest = new Oci.DatabaseService.Requests.CreateCloudVmClusterRequest
{
CreateCloudVmClusterDetails = createCloudVmClusterDetails,
OpcRetryToken = "EXAMPLE-opcRetryToken-Value",
OpcRequestId = "SMN91UN4VZAO4C1YNSMG<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;
}
}
}
}