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

func ExampleUpdateScheduledQuery() {
	// 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 := apmtraces.NewScheduledQueryClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

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

	req := apmtraces.UpdateScheduledQueryRequest{ApmDomainId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value"),
		IfMatch:          common.String("EXAMPLE-ifMatch-Value"),
		OpcDryRun:        common.String("EXAMPLE-opcDryRun-Value"),
		OpcRequestId:     common.String("FNUTPQEXLUGKPETAWR7T<unique_ID>"),
		OpcRetryToken:    common.String("EXAMPLE-opcRetryToken-Value"),
		ScheduledQueryId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-scheduledQueryId-Value"),
		UpdateScheduledQueryDetails: apmtraces.UpdateScheduledQueryDetails{FreeformTags: map[string]string{"EXAMPLE_KEY_p22W3": "EXAMPLE_VALUE_5qUUdsvHpqlBBkrQvYLC"},
			ScheduledQueryMaximumRuntimeInSeconds: common.Int64(186),
			ScheduledQueryName:                    common.String("EXAMPLE-scheduledQueryName-Value"),
			ScheduledQueryRetentionCriteria:       apmtraces.ScheduledQueryRetentionCriteriaUpdate,
			ScheduledQueryText:                    common.String("EXAMPLE-scheduledQueryText-Value"),
			DefinedTags:                           map[string]map[string]interface{}{"EXAMPLE_KEY_c5XkY": map[string]interface{}{"EXAMPLE_KEY_bAxr4": "EXAMPLE--Value"}},
			ScheduledQueryDescription:             common.String("EXAMPLE-scheduledQueryDescription-Value"),
			ScheduledQueryProcessingConfiguration: &apmtraces.ScheduledQueryProcessingConfig{CustomMetric: &apmtraces.CustomMetric{IsAnomalyDetectionEnabled: common.Bool(true),
				IsMetricPublished: common.Bool(false),
				Name:              common.String("EXAMPLE-name-Value"),
				Namespace:         common.String("EXAMPLE-namespace-Value"),
				ResourceGroup:     common.String("EXAMPLE-resourceGroup-Value"),
				Unit:              common.String("EXAMPLE-unit-Value"),
				Compartment:       common.String("EXAMPLE-compartment-Value"),
				Description:       common.String("EXAMPLE-description-Value")},
				ObjectStorage: &apmtraces.ObjectStorage{BucketName: common.String("EXAMPLE-bucketName-Value"),
					NameSpace:        common.String("EXAMPLE-nameSpace-Value"),
					ObjectNamePrefix: common.String("EXAMPLE-objectNamePrefix-Value")},
				Streaming: &apmtraces.Streaming{StreamId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-streamId-Value")}},
			ScheduledQueryProcessingSubType:   apmtraces.ScheduledQueryProcessingSubTypeCustomMetric,
			ScheduledQueryProcessingType:      apmtraces.ScheduledQueryProcessingTypeExport,
			ScheduledQueryRetentionPeriodInMs: common.Int64(734),
			ScheduledQuerySchedule:            common.String("EXAMPLE-scheduledQuerySchedule-Value")}}

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

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