// 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{OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value"),
		ScheduledQueryId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-scheduledQueryId-Value"),
		UpdateScheduledQueryDetails: apmtraces.UpdateScheduledQueryDetails{ScheduledQueryDescription: common.String("EXAMPLE-scheduledQueryDescription-Value"),
			ScheduledQueryProcessingConfiguration: &apmtraces.ScheduledQueryProcessingConfig{CustomMetric: &apmtraces.CustomMetric{ResourceGroup: common.String("EXAMPLE-resourceGroup-Value"),
				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")},
				ObjectStorage: &apmtraces.ObjectStorage{ObjectNamePrefix: common.String("EXAMPLE-objectNamePrefix-Value"),
					BucketName: common.String("EXAMPLE-bucketName-Value"),
					NameSpace:  common.String("EXAMPLE-nameSpace-Value")},
				Streaming: &apmtraces.Streaming{StreamId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-streamId-Value")}},
			ScheduledQueryProcessingSubType:       apmtraces.ScheduledQueryProcessingSubTypeNone,
			ScheduledQueryProcessingType:          apmtraces.ScheduledQueryProcessingTypeQuery,
			ScheduledQuerySchedule:                common.String("EXAMPLE-scheduledQuerySchedule-Value"),
			DefinedTags:                           map[string]map[string]interface{}{"EXAMPLE_KEY_gl2o5": map[string]interface{}{"EXAMPLE_KEY_3t83a": "EXAMPLE--Value"}},
			FreeformTags:                          map[string]string{"EXAMPLE_KEY_1pj6P": "EXAMPLE_VALUE_TQPty7hYzhfWruCmz5N5"},
			ScheduledQueryMaximumRuntimeInSeconds: common.Int64(416),
			ScheduledQueryName:                    common.String("EXAMPLE-scheduledQueryName-Value"),
			ScheduledQueryRetentionCriteria:       apmtraces.ScheduledQueryRetentionCriteriaUpdate,
			ScheduledQueryRetentionPeriodInMs:     common.Int64(943),
			ScheduledQueryText:                    common.String("EXAMPLE-scheduledQueryText-Value")},
		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("S4S4DZP22W35QUUDSVHP<unique_ID>")}

	// 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)
}