import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog Sensitive Data Scanner Group Order API data source. This can be used to retrieve the order of Datadog Sensitive Data Scanner Groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const foo = datadog.getSensitiveDataScannerGroupOrder({}); * const foobar = new datadog.SensitiveDataScannerGroupOrder("foobar", {groupIds: foo.then(foo => foo.groupIds)}); * ``` */ export declare function getSensitiveDataScannerGroupOrder(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getSensitiveDataScannerGroupOrder. */ export interface GetSensitiveDataScannerGroupOrderResult { /** * The list of Sensitive Data Scanner group IDs, in order. Logs are tested against the query filter of each index one by one following the order of the list. */ readonly groupIds: string[]; /** * The ID of this resource. */ readonly id: string; } /** * Provides a Datadog Sensitive Data Scanner Group Order API data source. This can be used to retrieve the order of Datadog Sensitive Data Scanner Groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const foo = datadog.getSensitiveDataScannerGroupOrder({}); * const foobar = new datadog.SensitiveDataScannerGroupOrder("foobar", {groupIds: foo.then(foo => foo.groupIds)}); * ``` */ export declare function getSensitiveDataScannerGroupOrderOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;