import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class RequestAttribute extends pulumi.CustomResource {
    /**
     * Get an existing RequestAttribute 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<pulumi.ID>, state?: RequestAttributeState, opts?: pulumi.CustomResourceOptions): RequestAttribute;
    /**
     * Returns true if the given object is an instance of RequestAttribute.  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 RequestAttribute;
    /**
     * Aggregation type for the request values
     */
    readonly aggregation: pulumi.Output<string>;
    /**
     * Confidential data flag. Set `true` to treat the captured data as confidential
     */
    readonly confidential: pulumi.Output<boolean | undefined>;
    /**
     * The list of data sources
     */
    readonly dataSources: pulumi.Output<outputs.RequestAttributeDataSource[] | undefined>;
    /**
     * The data type of the request attribute
     */
    readonly dataType: pulumi.Output<string>;
    /**
     * The request attribute is enabled (`true`) or disabled (`false`)
     */
    readonly enabled: pulumi.Output<boolean | undefined>;
    /**
     * The name of the request attribute
     */
    readonly name: pulumi.Output<string>;
    /**
     * String values transformation.   If the **dataType** is not `string`, set the `Original` here
     */
    readonly normalization: pulumi.Output<string>;
    /**
     * Personal data masking flag. Set `true` to skip masking.   Warning: This will potentially access personalized data
     */
    readonly skipPersonalDataMasking: pulumi.Output<boolean | undefined>;
    /**
     * allows for configuring properties that are not explicitly supported by the current version of this provider
     */
    readonly unknowns: pulumi.Output<string | undefined>;
    /**
     * Create a RequestAttribute 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: RequestAttributeArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering RequestAttribute resources.
 */
export interface RequestAttributeState {
    /**
     * Aggregation type for the request values
     */
    aggregation?: pulumi.Input<string>;
    /**
     * Confidential data flag. Set `true` to treat the captured data as confidential
     */
    confidential?: pulumi.Input<boolean>;
    /**
     * The list of data sources
     */
    dataSources?: pulumi.Input<pulumi.Input<inputs.RequestAttributeDataSource>[]>;
    /**
     * The data type of the request attribute
     */
    dataType?: pulumi.Input<string>;
    /**
     * The request attribute is enabled (`true`) or disabled (`false`)
     */
    enabled?: pulumi.Input<boolean>;
    /**
     * The name of the request attribute
     */
    name?: pulumi.Input<string>;
    /**
     * String values transformation.   If the **dataType** is not `string`, set the `Original` here
     */
    normalization?: pulumi.Input<string>;
    /**
     * Personal data masking flag. Set `true` to skip masking.   Warning: This will potentially access personalized data
     */
    skipPersonalDataMasking?: pulumi.Input<boolean>;
    /**
     * allows for configuring properties that are not explicitly supported by the current version of this provider
     */
    unknowns?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a RequestAttribute resource.
 */
export interface RequestAttributeArgs {
    /**
     * Aggregation type for the request values
     */
    aggregation: pulumi.Input<string>;
    /**
     * Confidential data flag. Set `true` to treat the captured data as confidential
     */
    confidential?: pulumi.Input<boolean>;
    /**
     * The list of data sources
     */
    dataSources?: pulumi.Input<pulumi.Input<inputs.RequestAttributeDataSource>[]>;
    /**
     * The data type of the request attribute
     */
    dataType: pulumi.Input<string>;
    /**
     * The request attribute is enabled (`true`) or disabled (`false`)
     */
    enabled?: pulumi.Input<boolean>;
    /**
     * The name of the request attribute
     */
    name?: pulumi.Input<string>;
    /**
     * String values transformation.   If the **dataType** is not `string`, set the `Original` here
     */
    normalization: pulumi.Input<string>;
    /**
     * Personal data masking flag. Set `true` to skip masking.   Warning: This will potentially access personalized data
     */
    skipPersonalDataMasking?: pulumi.Input<boolean>;
    /**
     * allows for configuring properties that are not explicitly supported by the current version of this provider
     */
    unknowns?: pulumi.Input<string>;
}
