import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create a DataAttributeBinding resource. * Auto-naming is currently not supported for this resource. */ export declare class DataAttributeBinding extends pulumi.CustomResource { /** * Get an existing DataAttributeBinding 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): DataAttributeBinding; /** * Returns true if the given object is an instance of DataAttributeBinding. 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 DataAttributeBinding; /** * Optional. List of attributes to be associated with the resource, provided in the form: projects/{project}/locations/{location}/dataTaxonomies/{dataTaxonomy}/attributes/{data_attribute_id} */ readonly attributes: pulumi.Output; /** * The time when the DataAttributeBinding was created. */ readonly createTime: pulumi.Output; /** * Required. DataAttributeBinding identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Location. */ readonly dataAttributeBindingId: pulumi.Output; /** * Optional. Description of the DataAttributeBinding. */ readonly description: pulumi.Output; /** * Optional. User friendly display name. */ readonly displayName: pulumi.Output; /** * This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. Etags must be used when calling the DeleteDataAttributeBinding and the UpdateDataAttributeBinding method. */ readonly etag: pulumi.Output; /** * Optional. User-defined labels for the DataAttributeBinding. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The relative resource name of the Data Attribute Binding, of the form: projects/{project_number}/locations/{location}/dataAttributeBindings/{data_attribute_binding_id} */ readonly name: pulumi.Output; /** * Optional. The list of paths for items within the associated resource (eg. columns and partitions within a table) along with attribute bindings. */ readonly paths: pulumi.Output; readonly project: pulumi.Output; /** * Optional. Immutable. The resource name of the resource that is associated to attributes. Presently, only entity resource is supported in the form: projects/{project}/locations/{location}/lakes/{lake}/zones/{zone}/entities/{entity_id} Must belong in the same project and region as the attribute binding, and there can only exist one active binding for a resource. */ readonly resource: pulumi.Output; /** * System generated globally unique ID for the DataAttributeBinding. This ID will be different if the DataAttributeBinding is deleted and re-created with the same name. */ readonly uid: pulumi.Output; /** * The time when the DataAttributeBinding was last updated. */ readonly updateTime: pulumi.Output; /** * Create a DataAttributeBinding 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: DataAttributeBindingArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DataAttributeBinding resource. */ export interface DataAttributeBindingArgs { /** * Optional. List of attributes to be associated with the resource, provided in the form: projects/{project}/locations/{location}/dataTaxonomies/{dataTaxonomy}/attributes/{data_attribute_id} */ attributes?: pulumi.Input[]>; /** * Required. DataAttributeBinding identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Location. */ dataAttributeBindingId: pulumi.Input; /** * Optional. Description of the DataAttributeBinding. */ description?: pulumi.Input; /** * Optional. User friendly display name. */ displayName?: pulumi.Input; /** * This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. Etags must be used when calling the DeleteDataAttributeBinding and the UpdateDataAttributeBinding method. */ etag?: pulumi.Input; /** * Optional. User-defined labels for the DataAttributeBinding. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Optional. The list of paths for items within the associated resource (eg. columns and partitions within a table) along with attribute bindings. */ paths?: pulumi.Input[]>; project?: pulumi.Input; /** * Optional. Immutable. The resource name of the resource that is associated to attributes. Presently, only entity resource is supported in the form: projects/{project}/locations/{location}/lakes/{lake}/zones/{zone}/entities/{entity_id} Must belong in the same project and region as the attribute binding, and there can only exist one active binding for a resource. */ resource?: pulumi.Input; }