// 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 ExampleCreateUnifiedAgentConfiguration() {
	// 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.CreateUnifiedAgentConfigurationRequest{OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value"),
		CreateUnifiedAgentConfigurationDetails: logging.CreateUnifiedAgentConfigurationDetails{CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
			DefinedTags:      map[string]map[string]interface{}{"EXAMPLE_KEY_DMI3B": map[string]interface{}{"EXAMPLE_KEY_GGwd7": "EXAMPLE--Value"}},
			Description:      common.String("EXAMPLE-description-Value"),
			DisplayName:      common.String("EXAMPLE-displayName-Value"),
			FreeformTags:     map[string]string{"EXAMPLE_KEY_gTIjb": "EXAMPLE_VALUE_laMlvCS1wwaC19KgGd8O"},
			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{Type: logging.OperationalMetricsSourceTypeUmaMetrics,
						Metrics: []string{"EXAMPLE--Value"},
						RecordInput: &logging.OperationalMetricsRecordInput{Namespace: common.String("EXAMPLE-namespace-Value"),
							ResourceGroup: common.String("EXAMPLE-resourceGroup-Value")}}}},
				Filter: []logging.UnifiedAgentLoggingFilter{logging.UnifiedAgentLoggingRecordTransformerFilter{RenewTimeKey: common.String("EXAMPLE-renewTimeKey-Value"),
					IsAutoTypecastEnabled: common.Bool(true),
					RecordList: []logging.RecordTransformerPair{logging.RecordTransformerPair{Key: common.String("EXAMPLE-key-Value"),
						Value: common.String("EXAMPLE-value-Value")}},
					RemoveKeys:           []string{"EXAMPLE--Value"},
					IsRenewRecordEnabled: common.Bool(true),
					IsRubyEnabled:        common.Bool(false),
					KeepKeys:             []string{"EXAMPLE--Value"},
					Name:                 common.String("EXAMPLE-name-Value")}},
				Sources: []logging.UnifiedAgentLoggingSource{logging.UnifiedAgentTailLogSource{AdvancedOptions: &logging.UnifiedAgentTailSourceAdvancedOptions{IsReadFromHead: common.Bool(false)},
					Name: common.String("EXAMPLE-name-Value"),
					Parser: logging.UnifiedAgentSyslogParser{IsNullEmptyString: common.Bool(true),
						TimeFormat:              common.String("EXAMPLE-timeFormat-Value"),
						IsSupportColonlessIdent: common.Bool(true),
						TimeoutInMilliseconds:   common.Int(778),
						FieldTimeKey:            common.String("EXAMPLE-fieldTimeKey-Value"),
						IsEstimateCurrentEvent:  common.Bool(true),
						MessageFormat:           logging.UnifiedAgentSyslogParserMessageFormatRfc3164,
						Rfc5424TimeFormat:       common.String("EXAMPLE-rfc5424TimeFormat-Value"),
						IsKeepTimeKey:           common.Bool(false),
						IsWithPriority:          common.Bool(true),
						NullValuePattern:        common.String("EXAMPLE-nullValuePattern-Value"),
						SyslogParserType:        logging.UnifiedAgentSyslogParserSyslogParserTypeRegexp,
						Types:                   map[string]string{"EXAMPLE_KEY_jRasU": "EXAMPLE_VALUE_7jwQnF5JlS7CqJHc9P84"}},
					Paths: []string{"EXAMPLE--Value"}}}}},
		OpcRequestId: common.String("JA5ELS9JOOVQPSSMF4KV<unique_ID>")}

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

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