// 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"
"time"
"github.com/oracle/oci-go-sdk/v65/common"
"github.com/oracle/oci-go-sdk/v65/core"
"github.com/oracle/oci-go-sdk/v65/example/helpers"
)
func ExampleUpdateInstance() {
// 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 := core.NewComputeClientWithConfigurationProvider(common.DefaultConfigProvider())
helpers.FatalIfError(err)
// Create a request and dependent object(s).
req := core.UpdateInstanceRequest{UpdateInstanceDetails: core.UpdateInstanceDetails{LicensingConfigs: []core.UpdateInstanceLicensingConfig{core.UpdateInstanceWindowsLicensingConfig{LicenseType: core.UpdateInstanceLicensingConfigLicenseTypeBringYourOwnLicense}},
PlatformConfig: core.IntelVmUpdateInstancePlatformConfig{IsSymmetricMultiThreadingEnabled: common.Bool(true)},
SecurityAttributes: map[string]map[string]interface{}{"EXAMPLE_KEY_p2lRy": map[string]interface{}{"EXAMPLE_KEY_dHXad": "EXAMPLE--Value"}},
Shape: common.String("EXAMPLE-shape-Value"),
AgentConfig: &core.UpdateInstanceAgentConfigDetails{AreAllPluginsDisabled: common.Bool(false),
IsManagementDisabled: common.Bool(true),
IsMonitoringDisabled: common.Bool(false),
PluginsConfig: []core.InstanceAgentPluginConfigDetails{core.InstanceAgentPluginConfigDetails{DesiredState: core.InstanceAgentPluginConfigDetailsDesiredStateEnabled,
Name: common.String("EXAMPLE-name-Value")}}},
CapacityReservationId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-capacityReservationId-Value"),
DedicatedVmHostId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-dedicatedVmHostId-Value"),
DisplayName: common.String("EXAMPLE-displayName-Value"),
ShapeConfig: &core.UpdateInstanceShapeConfigDetails{ResourceManagement: core.UpdateInstanceShapeConfigDetailsResourceManagementStatic,
Vcpus: common.Int(591),
BaselineOcpuUtilization: core.UpdateInstanceShapeConfigDetailsBaselineOcpuUtilization2,
MemoryInGBs: common.Float32(3567.99),
Nvmes: common.Int(2),
Ocpus: common.Float32(106.455086)},
TimeMaintenanceRebootDue: &common.SDKTime{Time: time.Now()},
DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_si60I": map[string]interface{}{"EXAMPLE_KEY_FFuvC": "EXAMPLE--Value"}},
FreeformTags: map[string]string{"EXAMPLE_KEY_O7zAo": "EXAMPLE_VALUE_yk2USvPnZy6rkFpElxM4"},
LaunchOptions: &core.UpdateLaunchOptions{BootVolumeType: core.UpdateLaunchOptionsBootVolumeTypeParavirtualized,
IsPvEncryptionInTransitEnabled: common.Bool(false),
NetworkType: core.UpdateLaunchOptionsNetworkTypeVfio},
ExtendedMetadata: map[string]interface{}{"EXAMPLE_KEY_i17nu": "EXAMPLE--Value"},
Metadata: map[string]string{"EXAMPLE_KEY_bTPYv": "EXAMPLE_VALUE_FrsBlNpqFEvVCqOFzSWS"},
SourceDetails: core.UpdateInstanceSourceViaImageDetails{BootVolumeSizeInGBs: common.Int64(867),
ImageId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-imageId-Value"),
IsPreserveBootVolumeEnabled: common.Bool(false),
KmsKeyId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value")},
UpdateOperationConstraint: core.UpdateInstanceDetailsUpdateOperationConstraintAllowDowntime,
AvailabilityConfig: &core.UpdateInstanceAvailabilityConfigDetails{IsLiveMigrationPreferred: common.Bool(true),
RecoveryAction: core.UpdateInstanceAvailabilityConfigDetailsRecoveryActionRestoreInstance},
FaultDomain: common.String("EXAMPLE-faultDomain-Value"),
InstanceOptions: &core.InstanceOptions{AreLegacyImdsEndpointsDisabled: common.Bool(false)},
IsAIEnterpriseEnabled: common.Bool(true)},
IfMatch: common.String("EXAMPLE-ifMatch-Value"),
InstanceId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value"),
OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}
// Send the request using the service client
resp, err := client.UpdateInstance(context.Background(), req)
helpers.FatalIfError(err)
// Retrieve value from the response.
fmt.Println(resp)
}