import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog ComplianceResourceEvaluationFilter resource. This can be used to create and manage a compliance resource evaluation filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // Manage Datadog compliance resource evaluation filters * const basicFilter = new datadog.ComplianceResourceEvaluationFilter("basic_filter", { * tags: ["tag1:val1"], * cloudProvider: "aws", * resourceId: "000000000000", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import datadog:index/complianceResourceEvaluationFilter:ComplianceResourceEvaluationFilter test_filter aws:00000000000000 * ``` */ export declare class ComplianceResourceEvaluationFilter extends pulumi.CustomResource { /** * Get an existing ComplianceResourceEvaluationFilter resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ComplianceResourceEvaluationFilterState, opts?: pulumi.CustomResourceOptions): ComplianceResourceEvaluationFilter; /** * Returns true if the given object is an instance of ComplianceResourceEvaluationFilter. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ComplianceResourceEvaluationFilter; /** * The cloud provider of the filter's targeted resource. Only `aws`, `gcp`, or `azure` are considered valid cloud providers. */ readonly cloudProvider: pulumi.Output; /** * The ID of the of the filter's targeted resource. Different cloud providers target different resource IDs: * - `aws`: account ID * - `gcp`: project ID * - `azure`: subscription ID */ readonly resourceId: pulumi.Output; /** * List of tags to filter misconfiguration detections. Each entry should follow the format: "key":"value". */ readonly tags: pulumi.Output; /** * Create a ComplianceResourceEvaluationFilter resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ComplianceResourceEvaluationFilterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ComplianceResourceEvaluationFilter resources. */ export interface ComplianceResourceEvaluationFilterState { /** * The cloud provider of the filter's targeted resource. Only `aws`, `gcp`, or `azure` are considered valid cloud providers. */ cloudProvider?: pulumi.Input; /** * The ID of the of the filter's targeted resource. Different cloud providers target different resource IDs: * - `aws`: account ID * - `gcp`: project ID * - `azure`: subscription ID */ resourceId?: pulumi.Input; /** * List of tags to filter misconfiguration detections. Each entry should follow the format: "key":"value". */ tags?: pulumi.Input[]>; } /** * The set of arguments for constructing a ComplianceResourceEvaluationFilter resource. */ export interface ComplianceResourceEvaluationFilterArgs { /** * The cloud provider of the filter's targeted resource. Only `aws`, `gcp`, or `azure` are considered valid cloud providers. */ cloudProvider: pulumi.Input; /** * The ID of the of the filter's targeted resource. Different cloud providers target different resource IDs: * - `aws`: account ID * - `gcp`: project ID * - `azure`: subscription ID */ resourceId: pulumi.Input; /** * List of tags to filter misconfiguration detections. Each entry should follow the format: "key":"value". */ tags: pulumi.Input[]>; }