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, 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; /** * Confidential data flag. Set `true` to treat the captured data as confidential */ readonly confidential: pulumi.Output; /** * The list of data sources */ readonly dataSources: pulumi.Output; /** * The data type of the request attribute */ readonly dataType: pulumi.Output; /** * The request attribute is enabled (`true`) or disabled (`false`) */ readonly enabled: pulumi.Output; /** * The name of the request attribute */ readonly name: pulumi.Output; /** * String values transformation. If the **dataType** is not `string`, set the `Original` here */ readonly normalization: pulumi.Output; /** * Personal data masking flag. Set `true` to skip masking. Warning: This will potentially access personalized data */ readonly skipPersonalDataMasking: pulumi.Output; /** * allows for configuring properties that are not explicitly supported by the current version of this provider */ readonly unknowns: pulumi.Output; /** * 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; /** * Confidential data flag. Set `true` to treat the captured data as confidential */ confidential?: pulumi.Input; /** * The list of data sources */ dataSources?: pulumi.Input[]>; /** * The data type of the request attribute */ dataType?: pulumi.Input; /** * The request attribute is enabled (`true`) or disabled (`false`) */ enabled?: pulumi.Input; /** * The name of the request attribute */ name?: pulumi.Input; /** * String values transformation. If the **dataType** is not `string`, set the `Original` here */ normalization?: pulumi.Input; /** * Personal data masking flag. Set `true` to skip masking. Warning: This will potentially access personalized data */ skipPersonalDataMasking?: pulumi.Input; /** * allows for configuring properties that are not explicitly supported by the current version of this provider */ unknowns?: pulumi.Input; } /** * The set of arguments for constructing a RequestAttribute resource. */ export interface RequestAttributeArgs { /** * Aggregation type for the request values */ aggregation: pulumi.Input; /** * Confidential data flag. Set `true` to treat the captured data as confidential */ confidential?: pulumi.Input; /** * The list of data sources */ dataSources?: pulumi.Input[]>; /** * The data type of the request attribute */ dataType: pulumi.Input; /** * The request attribute is enabled (`true`) or disabled (`false`) */ enabled?: pulumi.Input; /** * The name of the request attribute */ name?: pulumi.Input; /** * String values transformation. If the **dataType** is not `string`, set the `Original` here */ normalization: pulumi.Input; /** * Personal data masking flag. Set `true` to skip masking. Warning: This will potentially access personalized data */ skipPersonalDataMasking?: pulumi.Input; /** * allows for configuring properties that are not explicitly supported by the current version of this provider */ unknowns?: pulumi.Input; }