UNPKG

@cdktf/provider-databricks

Version:

Prebuilt databricks Provider for Terraform CDK (cdktf)

62 lines (61 loc) 3.36 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataDatabricksEntityTagAssignmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.99.0/docs/data-sources/entity_tag_assignment#entity_name DataDatabricksEntityTagAssignment#entity_name} */ readonly entityName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.99.0/docs/data-sources/entity_tag_assignment#entity_type DataDatabricksEntityTagAssignment#entity_type} */ readonly entityType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.99.0/docs/data-sources/entity_tag_assignment#tag_key DataDatabricksEntityTagAssignment#tag_key} */ readonly tagKey: string; } /** * Represents a {@link https://registry.terraform.io/providers/databricks/databricks/1.99.0/docs/data-sources/entity_tag_assignment databricks_entity_tag_assignment} */ export declare class DataDatabricksEntityTagAssignment extends cdktf.TerraformDataSource { static readonly tfResourceType = "databricks_entity_tag_assignment"; /** * Generates CDKTF code for importing a DataDatabricksEntityTagAssignment resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataDatabricksEntityTagAssignment to import * @param importFromId The id of the existing DataDatabricksEntityTagAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.99.0/docs/data-sources/entity_tag_assignment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataDatabricksEntityTagAssignment to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/databricks/databricks/1.99.0/docs/data-sources/entity_tag_assignment databricks_entity_tag_assignment} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DataDatabricksEntityTagAssignmentConfig */ constructor(scope: Construct, id: string, config: DataDatabricksEntityTagAssignmentConfig); private _entityName?; get entityName(): string; set entityName(value: string); get entityNameInput(): string | undefined; private _entityType?; get entityType(): string; set entityType(value: string); get entityTypeInput(): string | undefined; private _tagKey?; get tagKey(): string; set tagKey(value: string); get tagKeyInput(): string | undefined; get tagValue(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }