// 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{ApmDomainId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value"),
		CreateScheduledQueryDetails: apmtraces.CreateScheduledQueryDetails{ScheduledQueryDescription: common.String("EXAMPLE-scheduledQueryDescription-Value"),
			ScheduledQueryMaximumRuntimeInSeconds: common.Int64(534),
			ScheduledQueryProcessingConfiguration: &apmtraces.ScheduledQueryProcessingConfig{CustomMetric: &apmtraces.CustomMetric{IsMetricPublished: common.Bool(true),
				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"),
				IsAnomalyDetectionEnabled: common.Bool(false)},
				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")}},
			ScheduledQueryRetentionCriteria:   apmtraces.ScheduledQueryRetentionCriteriaKeepDataUntilRetentionPeriod,
			ScheduledQueryRetentionPeriodInMs: common.Int64(981),
			ScheduledQuerySchedule:            common.String("EXAMPLE-scheduledQuerySchedule-Value"),
			ScheduledQueryText:                common.String("EXAMPLE-scheduledQueryText-Value"),
			DefinedTags:                       map[string]map[string]interface{}{"EXAMPLE_KEY_6PTQP": map[string]interface{}{"EXAMPLE_KEY_TS1pj": "EXAMPLE--Value"}},
			FreeformTags:                      map[string]string{"EXAMPLE_KEY_XMuS2": "EXAMPLE_VALUE_L6ItFm6cSqVM87mjeMEB"},
			ScheduledQueryName:                common.String("EXAMPLE-scheduledQueryName-Value"),
			ScheduledQueryProcessingSubType:   apmtraces.ScheduledQueryProcessingSubTypeCustomMetric,
			ScheduledQueryProcessingType:      apmtraces.ScheduledQueryProcessingTypeExport},
		OpcDryRun:     common.String("EXAMPLE-opcDryRun-Value"),
		OpcRequestId:  common.String("TY7HYZHFWRUCMZ5N53T8<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-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)
}