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

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/database"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
)

func ExampleCreateBaseccVmCluster() {
	// 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.
	client, err := database.NewDatabaseClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := database.CreateBaseccVmClusterRequest{CreateBaseccVmClusterDetails: database.CreateBaseccVmClusterDetails{AdditionalVmStorageSizeInGBs: common.Int(416),
		BaseInfrastructureId:   common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-baseInfrastructureId-Value"),
		BaseVmClusterNetworkId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-baseVmClusterNetworkId-Value"),
		CloudAutomationUpdateDetails: &database.CloudAutomationUpdateDetails{ApplyUpdateTimePreference: &database.CloudAutomationApplyUpdateTimePreference{ApplyUpdatePreferredEndTime: common.String("EXAMPLE-applyUpdatePreferredEndTime-Value"),
			ApplyUpdatePreferredStartTime: common.String("EXAMPLE-applyUpdatePreferredStartTime-Value")},
			FreezePeriod: &database.CloudAutomationFreezePeriod{FreezePeriodEndTime: common.String("EXAMPLE-freezePeriodEndTime-Value"),
				FreezePeriodStartTime: common.String("EXAMPLE-freezePeriodStartTime-Value")},
			IsEarlyAdoptionEnabled: common.Bool(false),
			IsFreezePeriodEnabled:  common.Bool(false)},
		CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		DataCollectionOptions: &database.DataCollectionOptions{IsDiagnosticsEventsEnabled: common.Bool(true),
			IsHealthMonitoringEnabled: common.Bool(false),
			IsIncidentLogsEnabled:     common.Bool(true)},
		DataStorageSizeInGBs: common.Int(430),
		GiVersion:            common.String("EXAMPLE-giVersion-Value"),
		LicenseModel:         database.CreateBaseccVmClusterDetailsLicenseModelBringYourOwnLicense,
		MemorySizeInGBs:      common.Int(74),
		RecoStorageSizeInGBs: common.Int(540),
		SshPublicKeys:        []string{"EXAMPLE--Value"},
		VmClusterType:        database.CreateBaseccVmClusterDetailsVmClusterTypeRegular,
		CpuCoreCount:         common.Int(16),
		DatabaseEdition:      database.CreateBaseccVmClusterDetailsDatabaseEditionEnterpriseEditionDeveloper,
		DbServerId:           common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-dbServerId-Value"),
		DisplayName:          common.String("EXAMPLE-displayName-Value"),
		FreeformTags:         map[string]string{"EXAMPLE_KEY_jOmHu": "EXAMPLE_VALUE_Xm15fyXnF4gPRhDb9nhN"},
		TimeZone:             common.String("EXAMPLE-timeZone-Value"),
		DefinedTags:          map[string]map[string]interface{}{"EXAMPLE_KEY_jZdg4": map[string]interface{}{"EXAMPLE_KEY_kYBX2": "EXAMPLE--Value"}},
		Description:          common.String("EXAMPLE-description-Value"),
		NodeCount:            common.Int(1)},
		OpcRequestId:  common.String("AFPZBLMXJ4CGL9HS7ARJ<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

	// Send the request using the service client
	resp, err := client.CreateBaseccVmCluster(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}