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

func ExampleUpdateUnifiedAgentConfiguration() {
	// 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 := logging.NewLoggingManagementClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

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

	req := logging.UpdateUnifiedAgentConfigurationRequest{IfMatch: common.String("EXAMPLE-ifMatch-Value"),
		OpcRequestId:                common.String("BMUDH6HOZFDT6B9FODGJ<unique_ID>"),
		UnifiedAgentConfigurationId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-unifiedAgentConfigurationId-Value"),
		UpdateUnifiedAgentConfigurationDetails: logging.UpdateUnifiedAgentConfigurationDetails{FreeformTags: map[string]string{"EXAMPLE_KEY_ejfP9": "EXAMPLE_VALUE_I4sgA2WIXN3e0MiEQuyA"},
			GroupAssociation: &logging.GroupAssociationDetails{GroupList: []string{"EXAMPLE--Value"}},
			IsEnabled:        common.Bool(true),
			ServiceConfiguration: logging.UnifiedAgentLoggingConfiguration{Destination: &logging.UnifiedAgentLoggingDestination{LogObjectId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logObjectId-Value"),
				OperationalMetricsConfiguration: &logging.OperationalMetricsConfiguration{Destination: &logging.OperationalMetricsDestination{CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value")},
					Source: &logging.OperationalMetricsSource{Metrics: []string{"EXAMPLE--Value"},
						RecordInput: &logging.OperationalMetricsRecordInput{ResourceGroup: common.String("EXAMPLE-resourceGroup-Value"),
							Namespace: common.String("EXAMPLE-namespace-Value")},
						Type: logging.OperationalMetricsSourceTypeUmaMetrics}}},
				Filter: []logging.UnifiedAgentLoggingFilter{logging.UnifiedAgentLoggingRecordTransformerFilter{KeepKeys: []string{"EXAMPLE--Value"},
					Name:                 common.String("EXAMPLE-name-Value"),
					RenewTimeKey:         common.String("EXAMPLE-renewTimeKey-Value"),
					IsRenewRecordEnabled: common.Bool(true),
					IsRubyEnabled:        common.Bool(false),
					RecordList: []logging.RecordTransformerPair{logging.RecordTransformerPair{Key: common.String("EXAMPLE-key-Value"),
						Value: common.String("EXAMPLE-value-Value")}},
					RemoveKeys:            []string{"EXAMPLE--Value"},
					IsAutoTypecastEnabled: common.Bool(true)}},
				Sources: []logging.UnifiedAgentLoggingSource{logging.UnifiedAgentCustomPluginLogSource{CustomPlugin: common.String("EXAMPLE-customPlugin-Value"),
					Name: common.String("EXAMPLE-name-Value")}}},
			DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_Ko9E3": map[string]interface{}{"EXAMPLE_KEY_sgYC7": "EXAMPLE--Value"}},
			Description: common.String("EXAMPLE-description-Value"),
			DisplayName: common.String("EXAMPLE-displayName-Value")}}

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

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