import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new User data mapping in the parent consent store. */ export declare class UserDataMapping extends pulumi.CustomResource { /** * Get an existing UserDataMapping 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): UserDataMapping; /** * Returns true if the given object is an instance of UserDataMapping. 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 UserDataMapping; /** * Indicates the time when this mapping was archived. */ readonly archiveTime: pulumi.Output; /** * Indicates whether this mapping is archived. */ readonly archived: pulumi.Output; readonly consentStoreId: pulumi.Output; /** * A unique identifier for the mapped resource. */ readonly dataId: pulumi.Output; readonly datasetId: pulumi.Output; readonly location: pulumi.Output; /** * Resource name of the User data mapping, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/userDataMappings/{user_data_mapping_id}`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Attributes of the resource. Only explicitly set attributes are displayed here. Attribute definitions with defaults set implicitly apply to these User data mappings. Attributes listed here must be single valued, that is, exactly one value is specified for the field "values" in each Attribute. */ readonly resourceAttributes: pulumi.Output; /** * User's UUID provided by the client. */ readonly userId: pulumi.Output; /** * Create a UserDataMapping 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: UserDataMappingArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a UserDataMapping resource. */ export interface UserDataMappingArgs { consentStoreId: pulumi.Input; /** * A unique identifier for the mapped resource. */ dataId: pulumi.Input; datasetId: pulumi.Input; location?: pulumi.Input; /** * Resource name of the User data mapping, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/userDataMappings/{user_data_mapping_id}`. */ name?: pulumi.Input; project?: pulumi.Input; /** * Attributes of the resource. Only explicitly set attributes are displayed here. Attribute definitions with defaults set implicitly apply to these User data mappings. Attributes listed here must be single valued, that is, exactly one value is specified for the field "values" in each Attribute. */ resourceAttributes?: pulumi.Input[]>; /** * User's UUID provided by the client. */ userId: pulumi.Input; }