import * as pulumi from "@pulumi/pulumi"; /** * Gets the specified Attribute definition. */ export declare function getAttributeDefinition(args: GetAttributeDefinitionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAttributeDefinitionArgs { attributeDefinitionId: string; consentStoreId: string; datasetId: string; location: string; project?: string; } export interface GetAttributeDefinitionResult { /** * Possible values for the attribute. The number of allowed values must not exceed 500. An empty list is invalid. The list can only be expanded after creation. */ readonly allowedValues: string[]; /** * The category of the attribute. The value of this field cannot be changed after creation. */ readonly category: string; /** * Optional. Default values of the attribute in Consents. If no default values are specified, it defaults to an empty value. */ readonly consentDefaultValues: string[]; /** * Optional. Default value of the attribute in User data mappings. If no default value is specified, it defaults to an empty value. This field is only applicable to attributes of the category `RESOURCE`. */ readonly dataMappingDefaultValue: string; /** * Optional. A description of the attribute. */ readonly description: string; /** * Resource name of the Attribute definition, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/attributeDefinitions/{attribute_definition_id}`. Cannot be changed after creation. */ readonly name: string; } /** * Gets the specified Attribute definition. */ export declare function getAttributeDefinitionOutput(args: GetAttributeDefinitionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetAttributeDefinitionOutputArgs { attributeDefinitionId: pulumi.Input; consentStoreId: pulumi.Input; datasetId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }