// 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/datacc"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
)

func ExampleUpdateInfrastructure() {
	// 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 := datacc.NewBaseinfraClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

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

	req := datacc.UpdateInfrastructureRequest{IfMatch: common.String("EXAMPLE-ifMatch-Value"),
		InfrastructureId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-infrastructureId-Value"),
		OpcRequestId:     common.String("VZLJKRATXWT1B6FVRYVE<unique_ID>"),
		UpdateInfrastructureDetails: datacc.UpdateInfrastructureDetails{CloudControlPlaneServer1: common.String("EXAMPLE-cloudControlPlaneServer1-Value"),
			CloudControlPlaneServer2:      common.String("EXAMPLE-cloudControlPlaneServer2-Value"),
			CpsNetworkBondingInterface:    datacc.NetworkBondingInterfaceEnumBtbond6,
			DisplayName:                   common.String("EXAMPLE-displayName-Value"),
			FreeformTags:                  map[string]string{"EXAMPLE_KEY_3Baor": "EXAMPLE_VALUE_wGNYQn9AnW0l0hHDAuoB"},
			NtpServers:                    []string{"EXAMPLE--Value"},
			Shape:                         datacc.ShapeEnumSixSsds,
			ClientNetworkBondingMode:      datacc.NetworkBondingModeActiveBackup,
			Description:                   common.String("EXAMPLE-description-Value"),
			SystemModel:                   datacc.SystemModelEnumX10Ha512,
			VlanId:                        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-vlanId-Value"),
			BackupNetworkBondingInterface: datacc.NetworkBondingInterfaceEnumBtbond4,
			BackupNetworkBondingMode:      datacc.NetworkBondingModeActiveBackup,
			CorporateProxy:                common.String("EXAMPLE-corporateProxy-Value"),
			DnsServers:                    []string{"EXAMPLE--Value"},
			Gateway:                       common.String("EXAMPLE-gateway-Value"),
			AcfsFileSystemStorageInGbs:    common.Float64(4309.311),
			ClientNetworkBondingInterface: datacc.NetworkBondingInterfaceEnumBtbond5,
			Contacts: []datacc.InfrastructureContact{datacc.InfrastructureContact{Email: common.String("EXAMPLE-email-Value"),
				IsContactMosValidated: common.Bool(true),
				IsPrimary:             common.Bool(true),
				Name:                  common.String("EXAMPLE-name-Value"),
				PhoneNumber:           common.String("EXAMPLE-phoneNumber-Value")}},
			CpsNetworkBondingMode: datacc.NetworkBondingModeActiveBackup,
			DataDiskPercentage:    common.Int(54),
			DefinedTags:           map[string]map[string]interface{}{"EXAMPLE_KEY_elcJA": map[string]interface{}{"EXAMPLE_KEY_rS1oo": "EXAMPLE--Value"}},
			MaintenanceWindow: &datacc.MaintenanceWindow{Months: []datacc.MaintenanceWindowMonthsEnum{datacc.MaintenanceWindowMonthsDecember},
				DaysOfWeek:                   []datacc.MaintenanceWindowDaysOfWeekEnum{datacc.MaintenanceWindowDaysOfWeekMonday},
				HoursOfDay:                   []int{11},
				PatchingMode:                 datacc.BasePatchingModeRolling,
				Preference:                   datacc.MaintenancePreferenceCustomPreference,
				WeeksOfMonth:                 []int{1},
				CustomActionTimeoutInMins:    common.Int(405),
				IsCustomActionTimeoutEnabled: common.Bool(true),
				IsMonthlyPatchingEnabled:     common.Bool(true),
				LeadTimeInWeeks:              common.Int(2)},
			Netmask:          common.String("EXAMPLE-netmask-Value"),
			AdminNetworkcidr: common.String("EXAMPLE-adminNetworkcidr-Value")}}

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

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