// 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("XTKZLBA0TPVL3VGDDLWV<unique_ID>"),
		UpdateInfrastructureDetails: datacc.UpdateInfrastructureDetails{AcfsFileSystemStorageInGbs: common.Float64(774.1737),
			ClientNetworkBondingInterface: datacc.NetworkBondingInterfaceEnumBtbond1,
			DataDiskPercentage:            common.Int(33),
			DisplayName:                   common.String("EXAMPLE-displayName-Value"),
			DnsServers:                    []string{"EXAMPLE--Value"},
			Shape:                         datacc.ShapeEnumSixSsds,
			VlanId:                        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-vlanId-Value"),
			BackupNetworkBondingInterface: datacc.NetworkBondingInterfaceEnumBtbond6,
			BackupNetworkBondingMode:      datacc.NetworkBondingModeLacp,
			MaintenanceWindow: &datacc.MaintenanceWindow{CustomActionTimeoutInMins: common.Int(350),
				HoursOfDay:                   []int{11},
				IsCustomActionTimeoutEnabled: common.Bool(true),
				LeadTimeInWeeks:              common.Int(2),
				Months:                       []datacc.MaintenanceWindowMonthsEnum{datacc.MaintenanceWindowMonthsJanuary},
				PatchingMode:                 datacc.BasePatchingModeRolling,
				Preference:                   datacc.MaintenancePreferenceNoPreference,
				DaysOfWeek:                   []datacc.MaintenanceWindowDaysOfWeekEnum{datacc.MaintenanceWindowDaysOfWeekTuesday},
				IsMonthlyPatchingEnabled:     common.Bool(false),
				WeeksOfMonth:                 []int{1}},
			NtpServers:               []string{"EXAMPLE--Value"},
			AdminNetworkcidr:         common.String("EXAMPLE-adminNetworkcidr-Value"),
			ClientNetworkBondingMode: datacc.NetworkBondingModeLacp,
			CpsNetworkBondingMode:    datacc.NetworkBondingModeActiveBackup,
			DefinedTags:              map[string]map[string]interface{}{"EXAMPLE_KEY_R89si": map[string]interface{}{"EXAMPLE_KEY_4SOtI": "EXAMPLE--Value"}},
			Description:              common.String("EXAMPLE-description-Value"),
			Gateway:                  common.String("EXAMPLE-gateway-Value"),
			Netmask:                  common.String("EXAMPLE-netmask-Value"),
			CloudControlPlaneServer1: common.String("EXAMPLE-cloudControlPlaneServer1-Value"),
			CloudControlPlaneServer2: common.String("EXAMPLE-cloudControlPlaneServer2-Value"),
			Contacts: []datacc.InfrastructureContact{datacc.InfrastructureContact{PhoneNumber: common.String("EXAMPLE-phoneNumber-Value"),
				Email:                 common.String("EXAMPLE-email-Value"),
				IsContactMosValidated: common.Bool(false),
				IsPrimary:             common.Bool(true),
				Name:                  common.String("EXAMPLE-name-Value")}},
			CorporateProxy:             common.String("EXAMPLE-corporateProxy-Value"),
			CpsNetworkBondingInterface: datacc.NetworkBondingInterfaceEnumBtbond5,
			FreeformTags:               map[string]string{"EXAMPLE_KEY_o9c59": "EXAMPLE_VALUE_2r9ySZCuw2wfW5T2ZUng"},
			SystemModel:                datacc.SystemModelEnumX11Ha768}}

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