// 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 CreateDbHomeExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var createDbHomeBase = new Oci.DatabaseService.Models.CreateDbHomeWithDbSystemIdDetails
			{
				DbSystemId = "ocid1.test.oc1..<unique_ID>EXAMPLE-dbSystemId-Value",
				DbVersion = "EXAMPLE-dbVersion-Value",
				Database = new Oci.DatabaseService.Models.CreateDatabaseDetails
				{
					DbName = "EXAMPLE-dbName-Value",
					DbUniqueName = "EXAMPLE-dbUniqueName-Value",
					DatabaseSoftwareImageId = "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseSoftwareImageId-Value",
					PdbName = "EXAMPLE-pdbName-Value",
					AdminPassword = "EXAMPLE-adminPassword-Value",
					TdeWalletPassword = "EXAMPLE-tdeWalletPassword-Value",
					CharacterSet = "EXAMPLE-characterSet-Value",
					NcharacterSet = "EXAMPLE-ncharacterSet-Value",
					DbWorkload = Oci.DatabaseService.Models.CreateDatabaseDetails.DbWorkloadEnum.Dss,
					DbBackupConfig = new Oci.DatabaseService.Models.DbBackupConfig
					{
						AutoBackupEnabled = true,
						RecoveryWindowInDays = 16,
						AutoBackupWindow = Oci.DatabaseService.Models.DbBackupConfig.AutoBackupWindowEnum.SlotFour,
						AutoFullBackupWindow = Oci.DatabaseService.Models.DbBackupConfig.AutoFullBackupWindowEnum.SlotSix,
						AutoFullBackupDay = Oci.DatabaseService.Models.DbBackupConfig.AutoFullBackupDayEnum.Monday,
						RunImmediateFullBackup = false,
						BackupDestinationDetails = new List<Oci.DatabaseService.Models.BackupDestinationDetails>
						{
							new Oci.DatabaseService.Models.BackupDestinationDetails
							{
								Type = Oci.DatabaseService.Models.BackupDestinationDetails.TypeEnum.Local,
								Id = "ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
								VpcUser = "EXAMPLE-vpcUser-Value",
								VpcPassword = "EXAMPLE-vpcPassword-Value",
								InternetProxy = "EXAMPLE-internetProxy-Value",
								DbrsPolicyId = "ocid1.test.oc1..<unique_ID>EXAMPLE-dbrsPolicyId-Value"
							}
						},
						BackupDeletionPolicy = Oci.DatabaseService.Models.DbBackupConfig.BackupDeletionPolicyEnum.DeleteAfterRetentionPeriod
					},
					FreeformTags = new Dictionary<string, string>()
					{
						{
							"EXAMPLE_KEY_i8u5c", 
							"EXAMPLE_VALUE_PvzfSzdg3SZ9TRBBwg6m"
						}
					},
					DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
					{
						{
							"EXAMPLE_KEY_Z8z8L", 
							new Dictionary<string, Object>()
							{
								{
									"EXAMPLE_KEY_XLVF0", 
									"EXAMPLE--Value"
								}
							}
						}
					},
					KmsKeyId = "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
					KmsKeyVersionId = "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyVersionId-Value",
					VaultId = "ocid1.test.oc1..<unique_ID>EXAMPLE-vaultId-Value",
					SidPrefix = "EXAMPLE-sidPrefix-Value"
				},
				DisplayName = "EXAMPLE-displayName-Value",
				KmsKeyId = "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
				KmsKeyVersionId = "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyVersionId-Value",
				DatabaseSoftwareImageId = "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseSoftwareImageId-Value",
				FreeformTags = new Dictionary<string, string>()
				{
					{
						"EXAMPLE_KEY_QF1nY", 
						"EXAMPLE_VALUE_pTgC6h2l9Qs8focui5T4"
					}
				},
				DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
				{
					{
						"EXAMPLE_KEY_s6tDB", 
						new Dictionary<string, Object>()
						{
							{
								"EXAMPLE_KEY_MmKAD", 
								"EXAMPLE--Value"
							}
						}
					}
				},
				IsDesupportedVersion = false,
				IsUnifiedAuditingEnabled = true
			};
			var createDbHomeRequest = new Oci.DatabaseService.Requests.CreateDbHomeRequest
			{
				CreateDbHomeWithDbSystemIdDetails = createDbHomeBase,
				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.CreateDbHome(createDbHomeRequest);
					// Retrieve value from the response.
					var id = response.DbHome.Id;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"CreateDbHome Failed with {e.Message}");
                throw e;
            }
        }

    }
}