// 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{UpdateScheduledQueryDetails: apmtraces.UpdateScheduledQueryDetails{ScheduledQuerySchedule: common.String("EXAMPLE-scheduledQuerySchedule-Value"),
		ScheduledQueryDescription:             common.String("EXAMPLE-scheduledQueryDescription-Value"),
		ScheduledQueryName:                    common.String("EXAMPLE-scheduledQueryName-Value"),
		ScheduledQueryProcessingSubType:       apmtraces.ScheduledQueryProcessingSubTypeStreaming,
		ScheduledQueryText:                    common.String("EXAMPLE-scheduledQueryText-Value"),
		DefinedTags:                           map[string]map[string]interface{}{"EXAMPLE_KEY_jBDRk": map[string]interface{}{"EXAMPLE_KEY_3AOAn": "EXAMPLE--Value"}},
		FreeformTags:                          map[string]string{"EXAMPLE_KEY_xWOZL": "EXAMPLE_VALUE_kWyG06ESQl7q8rrijMkL"},
		ScheduledQueryMaximumRuntimeInSeconds: common.Int64(15),
		ScheduledQueryProcessingConfiguration: &apmtraces.ScheduledQueryProcessingConfig{CustomMetric: &apmtraces.CustomMetric{Unit: common.String("EXAMPLE-unit-Value"),
			Compartment:               common.String("EXAMPLE-compartment-Value"),
			Description:               common.String("EXAMPLE-description-Value"),
			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")},
			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")}},
		ScheduledQueryProcessingType:      apmtraces.ScheduledQueryProcessingTypeQuery,
		ScheduledQueryRetentionCriteria:   apmtraces.ScheduledQueryRetentionCriteriaUpdate,
		ScheduledQueryRetentionPeriodInMs: common.Int64(349)},
		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("W08Y1HEXMUS2L6ITFM6C<unique_ID>"),
		OpcRetryToken:    common.String("EXAMPLE-opcRetryToken-Value"),
		ScheduledQueryId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-scheduledQueryId-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)
}