// 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 LaunchDbSystemExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var launchDbSystemBase = new Oci.DatabaseService.Models.LaunchDbSystemFromDatabaseDetails
			{
				DbHome = new Oci.DatabaseService.Models.CreateDbHomeFromDatabaseDetails
				{
					DisplayName = "EXAMPLE-displayName-Value",
					Database = new Oci.DatabaseService.Models.CreateDatabaseFromAnotherDatabaseDetails
					{
						DatabaseId = "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseId-Value",
						BackupTDEPassword = "EXAMPLE-backupTDEPassword-Value",
						AdminPassword = "EXAMPLE-adminPassword-Value",
						DbUniqueName = "EXAMPLE-dbUniqueName-Value",
						DbName = "EXAMPLE-dbName-Value",
						TimeStampForPointInTimeRecovery = DateTime.Parse("10/08/2010 23:51:33"),
						PluggableDatabases = new List<string>
						{
							"EXAMPLE--Value"
						}
					},
					FreeformTags = new Dictionary<string, string>()
					{
						{
							"EXAMPLE_KEY_fWGsq", 
							"EXAMPLE_VALUE_q3TpkwkX5RexH7e3alaj"
						}
					},
					DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
					{
						{
							"EXAMPLE_KEY_hqVFZ", 
							new Dictionary<string, Object>()
							{
								{
									"EXAMPLE_KEY_C6nW8", 
									"EXAMPLE--Value"
								}
							}
						}
					}
				},
				DatabaseEdition = Oci.DatabaseService.Models.LaunchDbSystemFromDatabaseDetails.DatabaseEditionEnum.EnterpriseEditionExtremePerformance,
				DiskRedundancy = Oci.DatabaseService.Models.LaunchDbSystemFromDatabaseDetails.DiskRedundancyEnum.High,
				LicenseModel = Oci.DatabaseService.Models.LaunchDbSystemFromDatabaseDetails.LicenseModelEnum.LicenseIncluded,
				CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
				FaultDomains = new List<string>
				{
					"EXAMPLE--Value"
				},
				DisplayName = "EXAMPLE-displayName-Value",
				AvailabilityDomain = "EXAMPLE-availabilityDomain-Value",
				SubnetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
				BackupSubnetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-backupSubnetId-Value",
				NsgIds = new List<string>
				{
					"EXAMPLE--Value"
				},
				BackupNetworkNsgIds = new List<string>
				{
					"EXAMPLE--Value"
				},
				Shape = "EXAMPLE-shape-Value",
				TimeZone = "EXAMPLE-timeZone-Value",
				DbSystemOptions = new Oci.DatabaseService.Models.DbSystemOptions
				{
					StorageManagement = Oci.DatabaseService.Models.DbSystemOptions.StorageManagementEnum.Lvm
				},
				StorageVolumePerformanceMode = Oci.DatabaseService.Models.LaunchDbSystemBase.StorageVolumePerformanceModeEnum.Balanced,
				SparseDiskgroup = true,
				SshPublicKeys = new List<string>
				{
					"EXAMPLE--Value"
				},
				Hostname = "EXAMPLE-hostname-Value",
				Domain = "EXAMPLE-domain-Value",
				CpuCoreCount = 855,
				ClusterName = "EXAMPLE-clusterName-Value",
				DataStoragePercentage = 218,
				InitialDataStorageSizeInGB = 297,
				KmsKeyId = "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
				KmsKeyVersionId = "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyVersionId-Value",
				NodeCount = 415,
				FreeformTags = new Dictionary<string, string>()
				{
					{
						"EXAMPLE_KEY_CwPfx", 
						"EXAMPLE_VALUE_5v781erU90kbF1dzs6UL"
					}
				},
				DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
				{
					{
						"EXAMPLE_KEY_3UOV2", 
						new Dictionary<string, Object>()
						{
							{
								"EXAMPLE_KEY_F1x6J", 
								"EXAMPLE--Value"
							}
						}
					}
				},
				PrivateIp = "EXAMPLE-privateIp-Value",
				DataCollectionOptions = new Oci.DatabaseService.Models.DataCollectionOptions
				{
					IsDiagnosticsEventsEnabled = false,
					IsHealthMonitoringEnabled = false,
					IsIncidentLogsEnabled = false
				}
			};
			var launchDbSystemRequest = new Oci.DatabaseService.Requests.LaunchDbSystemRequest
			{
				LaunchDbSystemDetails = launchDbSystemBase,
				OpcRetryToken = "EXAMPLE-opcRetryToken-Value"
			};

            // 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.LaunchDbSystem(launchDbSystemRequest);
					// Retrieve value from the response.
					var id = response.DbSystem.Id;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"LaunchDbSystem Failed with {e.Message}");
                throw e;
            }
        }

    }
}