import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Scheduled Queries in Oracle Cloud Infrastructure Apm Traces service. * * Returns a list of all scheduled queries in the APM Domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testScheduledQueries = oci.apmtraces.getScheduledQueries({ * apmDomainId: testApmDomain.id, * displayName: scheduledQueryDisplayName, * }); * ``` */ export declare function getScheduledQueries(args: GetScheduledQueriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getScheduledQueries. */ export interface GetScheduledQueriesArgs { /** * The APM Domain ID for the intended request. */ apmDomainId: string; /** * A filter to return resources that match the given display name. This will return resources that have name starting with this filter. */ displayName?: string; filters?: inputs.ApmTraces.GetScheduledQueriesFilter[]; } /** * A collection of values returned by getScheduledQueries. */ export interface GetScheduledQueriesResult { readonly apmDomainId: string; readonly displayName?: string; readonly filters?: outputs.ApmTraces.GetScheduledQueriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of scheduled_query_collection. */ readonly scheduledQueryCollections: outputs.ApmTraces.GetScheduledQueriesScheduledQueryCollection[]; } /** * This data source provides the list of Scheduled Queries in Oracle Cloud Infrastructure Apm Traces service. * * Returns a list of all scheduled queries in the APM Domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testScheduledQueries = oci.apmtraces.getScheduledQueries({ * apmDomainId: testApmDomain.id, * displayName: scheduledQueryDisplayName, * }); * ``` */ export declare function getScheduledQueriesOutput(args: GetScheduledQueriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getScheduledQueries. */ export interface GetScheduledQueriesOutputArgs { /** * The APM Domain ID for the intended request. */ apmDomainId: pulumi.Input; /** * A filter to return resources that match the given display name. This will return resources that have name starting with this filter. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getScheduledQueries.d.ts.map