// 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 ExampleCreateScheduledQuery() {
	// 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.CreateScheduledQueryRequest{OpcRequestId: common.String("0VQAIKYRSNEDSSCHMIL6<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value"),
		ApmDomainId:   common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value"),
		CreateScheduledQueryDetails: apmtraces.CreateScheduledQueryDetails{DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_NPIEE": map[string]interface{}{"EXAMPLE_KEY_R6Ej2": "EXAMPLE--Value"}},
			FreeformTags:              map[string]string{"EXAMPLE_KEY_KOe3X": "EXAMPLE_VALUE_RKHqWlZUf3L9hCO7990w"},
			ScheduledQueryDescription: common.String("EXAMPLE-scheduledQueryDescription-Value"),
			ScheduledQueryName:        common.String("EXAMPLE-scheduledQueryName-Value"),
			ScheduledQueryProcessingConfiguration: &apmtraces.ScheduledQueryProcessingConfig{CustomMetric: &apmtraces.CustomMetric{IsAnomalyDetectionEnabled: common.Bool(false),
				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.ScheduledQueryProcessingSubTypeStreaming,
			ScheduledQueryProcessingType:          apmtraces.ScheduledQueryProcessingTypeQuery,
			ScheduledQueryRetentionPeriodInMs:     common.Int64(576),
			ScheduledQueryMaximumRuntimeInSeconds: common.Int64(510),
			ScheduledQueryRetentionCriteria:       apmtraces.ScheduledQueryRetentionCriteriaKeepDataUntilRetentionPeriod,
			ScheduledQuerySchedule:                common.String("EXAMPLE-scheduledQuerySchedule-Value"),
			ScheduledQueryText:                    common.String("EXAMPLE-scheduledQueryText-Value")},
		OpcDryRun: common.String("EXAMPLE-opcDryRun-Value")}

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

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