UNPKG

@cdktf/provider-databricks

Version:

Prebuilt databricks Provider for Terraform CDK (cdktf)

76 lines (75 loc) 4.18 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CleanRoomAutoApprovalRuleConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/clean_room_auto_approval_rule#author_collaborator_alias CleanRoomAutoApprovalRule#author_collaborator_alias} */ readonly authorCollaboratorAlias?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/clean_room_auto_approval_rule#author_scope CleanRoomAutoApprovalRule#author_scope} */ readonly authorScope?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/clean_room_auto_approval_rule#clean_room_name CleanRoomAutoApprovalRule#clean_room_name} */ readonly cleanRoomName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/clean_room_auto_approval_rule#runner_collaborator_alias CleanRoomAutoApprovalRule#runner_collaborator_alias} */ readonly runnerCollaboratorAlias?: string; } /** * Represents a {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/clean_room_auto_approval_rule databricks_clean_room_auto_approval_rule} */ export declare class CleanRoomAutoApprovalRule extends cdktf.TerraformResource { static readonly tfResourceType = "databricks_clean_room_auto_approval_rule"; /** * Generates CDKTF code for importing a CleanRoomAutoApprovalRule 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 CleanRoomAutoApprovalRule to import * @param importFromId The id of the existing CleanRoomAutoApprovalRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/clean_room_auto_approval_rule#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CleanRoomAutoApprovalRule 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.86.0/docs/resources/clean_room_auto_approval_rule databricks_clean_room_auto_approval_rule} Resource * * @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 CleanRoomAutoApprovalRuleConfig = {} */ constructor(scope: Construct, id: string, config?: CleanRoomAutoApprovalRuleConfig); private _authorCollaboratorAlias?; get authorCollaboratorAlias(): string; set authorCollaboratorAlias(value: string); resetAuthorCollaboratorAlias(): void; get authorCollaboratorAliasInput(): string | undefined; private _authorScope?; get authorScope(): string; set authorScope(value: string); resetAuthorScope(): void; get authorScopeInput(): string | undefined; private _cleanRoomName?; get cleanRoomName(): string; set cleanRoomName(value: string); resetCleanRoomName(): void; get cleanRoomNameInput(): string | undefined; get createdAt(): number; get ruleId(): string; get ruleOwnerCollaboratorAlias(): string; private _runnerCollaboratorAlias?; get runnerCollaboratorAlias(): string; set runnerCollaboratorAlias(value: string); resetRunnerCollaboratorAlias(): void; get runnerCollaboratorAliasInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }