diff --git a/.github/workflows/auto-close-community-issues.yml b/.github/workflows/auto-close-community-issues.yml
index 4ff73c21d..a4be23f17 100644
--- a/.github/workflows/auto-close-community-issues.yml
+++ b/.github/workflows/auto-close-community-issues.yml
@@ -12,6 +12,8 @@ jobs:
issues: write
if: github.event.issue.author_association != 'OWNER' && github.event.issue.author_association != 'MEMBER' && github.event.issue.author_association != 'COLLABORATOR'
steps:
+ - name: Checkout
+ uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Auto-close issues by non-collaborators
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/auto-close-community-prs.yml b/.github/workflows/auto-close-community-prs.yml
index bd722b77a..b419bd9df 100644
--- a/.github/workflows/auto-close-community-prs.yml
+++ b/.github/workflows/auto-close-community-prs.yml
@@ -12,6 +12,8 @@ jobs:
pull-requests: write
if: github.event.pull_request.author_association != 'OWNER' && github.event.pull_request.author_association != 'MEMBER' && github.event.pull_request.author_association != 'COLLABORATOR'
steps:
+ - name: Checkout
+ uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Auto-close PRs by non-collaborators
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.projen/deps.json b/.projen/deps.json
index 6a14ea2cc..0080949ae 100644
--- a/.projen/deps.json
+++ b/.projen/deps.json
@@ -17,12 +17,12 @@
},
{
"name": "cdktf-cli",
- "version": "^0.18.0",
+ "version": "^0.19.0",
"type": "build"
},
{
"name": "cdktf",
- "version": "^0.18.0",
+ "version": "^0.19.0",
"type": "build"
},
{
@@ -88,7 +88,7 @@
},
{
"name": "cdktf",
- "version": "^0.18.0",
+ "version": "^0.19.0",
"type": "peer"
},
{
diff --git a/.projenrc.js b/.projenrc.js
index 01c45882f..2d079a83f 100644
--- a/.projenrc.js
+++ b/.projenrc.js
@@ -7,7 +7,7 @@ const { CdktfProviderProject } = require("@cdktf/provider-project");
const project = new CdktfProviderProject({
useCustomGithubRunner: false,
terraformProvider: "databricks/databricks@~> 1.0",
- cdktfVersion: "^0.18.0",
+ cdktfVersion: "^0.19.0",
constructsVersion: "^10.0.0",
minNodeVersion: "18.12.0",
jsiiVersion: "^5.0.1",
diff --git a/docs/accessControlRuleSet.csharp.md b/docs/accessControlRuleSet.csharp.md
index 1fe5fc9d7..3e3701756 100644
--- a/docs/accessControlRuleSet.csharp.md
+++ b/docs/accessControlRuleSet.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| PutGrantRules
| *No description.* |
| ResetGrantRules
| *No description.* |
| ResetId
| *No description.* |
@@ -140,6 +143,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -248,6 +267,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -260,6 +297,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `PutGrantRules`
```csharp
@@ -291,6 +352,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ". |
---
@@ -354,6 +416,50 @@ AccessControlRuleSet.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+AccessControlRuleSet.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AccessControlRuleSet to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing AccessControlRuleSet that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/access_control_rule_set#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the AccessControlRuleSet to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/accessControlRuleSet.go.md b/docs/accessControlRuleSet.go.md
index 49dd3581f..6b3aedfec 100644
--- a/docs/accessControlRuleSet.go.md
+++ b/docs/accessControlRuleSet.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
accesscontrolruleset.NewAccessControlRuleSet(scope Construct, id *string, config AccessControlRuleSetConfig) AccessControlRuleSet
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| PutGrantRules
| *No description.* |
| ResetGrantRules
| *No description.* |
| ResetId
| *No description.* |
@@ -140,6 +143,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -248,6 +267,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -260,6 +297,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `PutGrantRules`
```go
@@ -291,13 +352,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
accesscontrolruleset.AccessControlRuleSet_IsConstruct(x interface{}) *bool
```
@@ -329,7 +391,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
accesscontrolruleset.AccessControlRuleSet_IsTerraformElement(x interface{}) *bool
```
@@ -343,7 +405,7 @@ accesscontrolruleset.AccessControlRuleSet_IsTerraformElement(x interface{}) *boo
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
accesscontrolruleset.AccessControlRuleSet_IsTerraformResource(x interface{}) *bool
```
@@ -354,6 +416,50 @@ accesscontrolruleset.AccessControlRuleSet_IsTerraformResource(x interface{}) *bo
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
+
+accesscontrolruleset.AccessControlRuleSet_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the AccessControlRuleSet to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing AccessControlRuleSet that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/access_control_rule_set#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the AccessControlRuleSet to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -619,7 +725,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
&accesscontrolruleset.AccessControlRuleSetConfig {
Connection: interface{},
@@ -768,7 +874,7 @@ If you experience problems setting this value it might not be settable. Please t
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
&accesscontrolruleset.AccessControlRuleSetGrantRules {
Role: *string,
@@ -816,7 +922,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
accesscontrolruleset.NewAccessControlRuleSetGrantRulesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) AccessControlRuleSetGrantRulesList
```
@@ -959,7 +1065,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/accesscontrolruleset"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/accesscontrolruleset"
accesscontrolruleset.NewAccessControlRuleSetGrantRulesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) AccessControlRuleSetGrantRulesOutputReference
```
diff --git a/docs/accessControlRuleSet.java.md b/docs/accessControlRuleSet.java.md
index f07238214..d3acbd715 100644
--- a/docs/accessControlRuleSet.java.md
+++ b/docs/accessControlRuleSet.java.md
@@ -150,6 +150,7 @@ If you experience problems setting this value it might not be settable. Please t
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -159,7 +160,9 @@ If you experience problems setting this value it might not be settable. Please t
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| putGrantRules
| *No description.* |
| resetGrantRules
| *No description.* |
| resetId
| *No description.* |
@@ -230,6 +233,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -338,6 +357,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -350,6 +388,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `putGrantRules`
```java
@@ -381,6 +444,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ". |
---
@@ -444,6 +508,50 @@ AccessControlRuleSet.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.access_control_rule_set.AccessControlRuleSet;
+
+AccessControlRuleSet.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),AccessControlRuleSet.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the AccessControlRuleSet to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing AccessControlRuleSet that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/access_control_rule_set#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the AccessControlRuleSet to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/accessControlRuleSet.python.md b/docs/accessControlRuleSet.python.md
index 4951c380a..7dea92683 100644
--- a/docs/accessControlRuleSet.python.md
+++ b/docs/accessControlRuleSet.python.md
@@ -147,6 +147,7 @@ If you experience problems setting this value it might not be settable. Please t
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -156,7 +157,9 @@ If you experience problems setting this value it might not be settable. Please t
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| put_grant_rules
| *No description.* |
| reset_grant_rules
| *No description.* |
| reset_id
| *No description.* |
@@ -232,6 +235,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -358,6 +379,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -372,6 +414,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `put_grant_rules`
```python
@@ -405,6 +474,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ". |
---
@@ -474,6 +544,55 @@ accessControlRuleSet.AccessControlRuleSet.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import access_control_rule_set
+
+accessControlRuleSet.AccessControlRuleSet.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the AccessControlRuleSet to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing AccessControlRuleSet that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/access_control_rule_set#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AccessControlRuleSet to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/accessControlRuleSet.typescript.md b/docs/accessControlRuleSet.typescript.md
index c9b7287b5..fc9a39ab3 100644
--- a/docs/accessControlRuleSet.typescript.md
+++ b/docs/accessControlRuleSet.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| putGrantRules
| *No description.* |
| resetGrantRules
| *No description.* |
| resetId
| *No description.* |
@@ -140,6 +143,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -248,6 +267,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -260,6 +297,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `putGrantRules`
```typescript
@@ -291,6 +352,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ". |
---
@@ -354,6 +416,50 @@ accessControlRuleSet.AccessControlRuleSet.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { accessControlRuleSet } from '@cdktf/provider-databricks'
+
+accessControlRuleSet.AccessControlRuleSet.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AccessControlRuleSet to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing AccessControlRuleSet that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/access_control_rule_set#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AccessControlRuleSet to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/awsS3Mount.csharp.md b/docs/awsS3Mount.csharp.md
index 0ec337cb3..f5449ec72 100644
--- a/docs/awsS3Mount.csharp.md
+++ b/docs/awsS3Mount.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetId
| *No description.* |
| ResetInstanceProfile
| *No description.* |
@@ -140,6 +143,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -248,6 +267,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -260,6 +297,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```csharp
@@ -285,6 +346,7 @@ private void ResetInstanceProfile()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ". |
---
@@ -348,6 +410,50 @@ AwsS3Mount.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+AwsS3Mount.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AwsS3Mount to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing AwsS3Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/aws_s3_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the AwsS3Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/awsS3Mount.go.md b/docs/awsS3Mount.go.md
index 06a48fea4..5cdc523f2 100644
--- a/docs/awsS3Mount.go.md
+++ b/docs/awsS3Mount.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/awss3mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/awss3mount"
awss3mount.NewAwsS3Mount(scope Construct, id *string, config AwsS3MountConfig) AwsS3Mount
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetId
| *No description.* |
| ResetInstanceProfile
| *No description.* |
@@ -140,6 +143,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -248,6 +267,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -260,6 +297,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```go
@@ -285,13 +346,14 @@ func ResetInstanceProfile()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/awss3mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/awss3mount"
awss3mount.AwsS3Mount_IsConstruct(x interface{}) *bool
```
@@ -323,7 +385,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/awss3mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/awss3mount"
awss3mount.AwsS3Mount_IsTerraformElement(x interface{}) *bool
```
@@ -337,7 +399,7 @@ awss3mount.AwsS3Mount_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/awss3mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/awss3mount"
awss3mount.AwsS3Mount_IsTerraformResource(x interface{}) *bool
```
@@ -348,6 +410,50 @@ awss3mount.AwsS3Mount_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/awss3mount"
+
+awss3mount.AwsS3Mount_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the AwsS3Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing AwsS3Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/aws_s3_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the AwsS3Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -657,7 +763,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/awss3mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/awss3mount"
&awss3mount.AwsS3MountConfig {
Connection: interface{},
diff --git a/docs/awsS3Mount.java.md b/docs/awsS3Mount.java.md
index d271adb37..cfd8f8387 100644
--- a/docs/awsS3Mount.java.md
+++ b/docs/awsS3Mount.java.md
@@ -167,6 +167,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -176,7 +177,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetId
| *No description.* |
| resetInstanceProfile
| *No description.* |
@@ -247,6 +250,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -355,6 +374,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -367,6 +405,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```java
@@ -392,6 +455,7 @@ public void resetInstanceProfile()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ". |
---
@@ -455,6 +519,50 @@ AwsS3Mount.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.aws_s3_mount.AwsS3Mount;
+
+AwsS3Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),AwsS3Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the AwsS3Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing AwsS3Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/aws_s3_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the AwsS3Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/awsS3Mount.python.md b/docs/awsS3Mount.python.md
index 1a2bf710c..49746e294 100644
--- a/docs/awsS3Mount.python.md
+++ b/docs/awsS3Mount.python.md
@@ -165,6 +165,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -174,7 +175,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_cluster_id
| *No description.* |
| reset_id
| *No description.* |
| reset_instance_profile
| *No description.* |
@@ -250,6 +253,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -376,6 +397,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -390,6 +432,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_cluster_id`
```python
@@ -415,6 +484,7 @@ def reset_instance_profile() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ". |
---
@@ -484,6 +554,55 @@ awsS3Mount.AwsS3Mount.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import aws_s3_mount
+
+awsS3Mount.AwsS3Mount.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the AwsS3Mount to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing AwsS3Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/aws_s3_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AwsS3Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/awsS3Mount.typescript.md b/docs/awsS3Mount.typescript.md
index 0325e6288..9af3dc780 100644
--- a/docs/awsS3Mount.typescript.md
+++ b/docs/awsS3Mount.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetId
| *No description.* |
| resetInstanceProfile
| *No description.* |
@@ -140,6 +143,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -248,6 +267,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -260,6 +297,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```typescript
@@ -285,6 +346,7 @@ public resetInstanceProfile(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ". |
---
@@ -348,6 +410,50 @@ awsS3Mount.AwsS3Mount.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { awsS3Mount } from '@cdktf/provider-databricks'
+
+awsS3Mount.AwsS3Mount.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AwsS3Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing AwsS3Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/aws_s3_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AwsS3Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen1Mount.csharp.md b/docs/azureAdlsGen1Mount.csharp.md
index 793c3bbf9..efcaef461 100644
--- a/docs/azureAdlsGen1Mount.csharp.md
+++ b/docs/azureAdlsGen1Mount.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetDirectory
| *No description.* |
| ResetId
| *No description.* |
@@ -141,6 +144,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -249,6 +268,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -261,6 +298,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```csharp
@@ -292,6 +353,7 @@ private void ResetSparkConfPrefix()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ". |
---
@@ -355,6 +417,50 @@ AzureAdlsGen1Mount.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+AzureAdlsGen1Mount.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AzureAdlsGen1Mount to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing AzureAdlsGen1Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen1_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen1Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen1Mount.go.md b/docs/azureAdlsGen1Mount.go.md
index 1f52aa329..623af6a18 100644
--- a/docs/azureAdlsGen1Mount.go.md
+++ b/docs/azureAdlsGen1Mount.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen1mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen1mount"
azureadlsgen1mount.NewAzureAdlsGen1Mount(scope Construct, id *string, config AzureAdlsGen1MountConfig) AzureAdlsGen1Mount
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetDirectory
| *No description.* |
| ResetId
| *No description.* |
@@ -141,6 +144,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -249,6 +268,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -261,6 +298,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```go
@@ -292,13 +353,14 @@ func ResetSparkConfPrefix()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen1mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen1mount"
azureadlsgen1mount.AzureAdlsGen1Mount_IsConstruct(x interface{}) *bool
```
@@ -330,7 +392,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen1mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen1mount"
azureadlsgen1mount.AzureAdlsGen1Mount_IsTerraformElement(x interface{}) *bool
```
@@ -344,7 +406,7 @@ azureadlsgen1mount.AzureAdlsGen1Mount_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen1mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen1mount"
azureadlsgen1mount.AzureAdlsGen1Mount_IsTerraformResource(x interface{}) *bool
```
@@ -355,6 +417,50 @@ azureadlsgen1mount.AzureAdlsGen1Mount_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen1mount"
+
+azureadlsgen1mount.AzureAdlsGen1Mount_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the AzureAdlsGen1Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing AzureAdlsGen1Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen1_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen1Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -774,7 +880,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen1mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen1mount"
&azureadlsgen1mount.AzureAdlsGen1MountConfig {
Connection: interface{},
diff --git a/docs/azureAdlsGen1Mount.java.md b/docs/azureAdlsGen1Mount.java.md
index 1fa4c1398..5bfa73b27 100644
--- a/docs/azureAdlsGen1Mount.java.md
+++ b/docs/azureAdlsGen1Mount.java.md
@@ -217,6 +217,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -226,7 +227,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetDirectory
| *No description.* |
| resetId
| *No description.* |
@@ -298,6 +301,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -406,6 +425,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -418,6 +456,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```java
@@ -449,6 +512,7 @@ public void resetSparkConfPrefix()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ". |
---
@@ -512,6 +576,50 @@ AzureAdlsGen1Mount.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.azure_adls_gen1_mount.AzureAdlsGen1Mount;
+
+AzureAdlsGen1Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),AzureAdlsGen1Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the AzureAdlsGen1Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing AzureAdlsGen1Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen1_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen1Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen1Mount.python.md b/docs/azureAdlsGen1Mount.python.md
index 7ef9107b5..c8fb1c8e1 100644
--- a/docs/azureAdlsGen1Mount.python.md
+++ b/docs/azureAdlsGen1Mount.python.md
@@ -215,6 +215,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -224,7 +225,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_cluster_id
| *No description.* |
| reset_directory
| *No description.* |
| reset_id
| *No description.* |
@@ -301,6 +304,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -427,6 +448,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -441,6 +483,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_cluster_id`
```python
@@ -472,6 +541,7 @@ def reset_spark_conf_prefix() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ". |
---
@@ -541,6 +611,55 @@ azureAdlsGen1Mount.AzureAdlsGen1Mount.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import azure_adls_gen1_mount
+
+azureAdlsGen1Mount.AzureAdlsGen1Mount.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the AzureAdlsGen1Mount to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing AzureAdlsGen1Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen1_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen1Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen1Mount.typescript.md b/docs/azureAdlsGen1Mount.typescript.md
index 924de3ac4..e64321256 100644
--- a/docs/azureAdlsGen1Mount.typescript.md
+++ b/docs/azureAdlsGen1Mount.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetDirectory
| *No description.* |
| resetId
| *No description.* |
@@ -141,6 +144,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -249,6 +268,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -261,6 +298,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```typescript
@@ -292,6 +353,7 @@ public resetSparkConfPrefix(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ". |
---
@@ -355,6 +417,50 @@ azureAdlsGen1Mount.AzureAdlsGen1Mount.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { azureAdlsGen1Mount } from '@cdktf/provider-databricks'
+
+azureAdlsGen1Mount.AzureAdlsGen1Mount.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AzureAdlsGen1Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing AzureAdlsGen1Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen1_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen1Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen2Mount.csharp.md b/docs/azureAdlsGen2Mount.csharp.md
index dca25efe6..6202b6e8c 100644
--- a/docs/azureAdlsGen2Mount.csharp.md
+++ b/docs/azureAdlsGen2Mount.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetDirectory
| *No description.* |
| ResetId
| *No description.* |
@@ -140,6 +143,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -248,6 +267,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -260,6 +297,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```csharp
@@ -285,6 +346,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ". |
---
@@ -348,6 +410,50 @@ AzureAdlsGen2Mount.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+AzureAdlsGen2Mount.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AzureAdlsGen2Mount to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing AzureAdlsGen2Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen2_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen2Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen2Mount.go.md b/docs/azureAdlsGen2Mount.go.md
index a4ef9c8eb..b31176eca 100644
--- a/docs/azureAdlsGen2Mount.go.md
+++ b/docs/azureAdlsGen2Mount.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen2mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen2mount"
azureadlsgen2mount.NewAzureAdlsGen2Mount(scope Construct, id *string, config AzureAdlsGen2MountConfig) AzureAdlsGen2Mount
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetDirectory
| *No description.* |
| ResetId
| *No description.* |
@@ -140,6 +143,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -248,6 +267,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -260,6 +297,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```go
@@ -285,13 +346,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen2mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen2mount"
azureadlsgen2mount.AzureAdlsGen2Mount_IsConstruct(x interface{}) *bool
```
@@ -323,7 +385,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen2mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen2mount"
azureadlsgen2mount.AzureAdlsGen2Mount_IsTerraformElement(x interface{}) *bool
```
@@ -337,7 +399,7 @@ azureadlsgen2mount.AzureAdlsGen2Mount_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen2mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen2mount"
azureadlsgen2mount.AzureAdlsGen2Mount_IsTerraformResource(x interface{}) *bool
```
@@ -348,6 +410,50 @@ azureadlsgen2mount.AzureAdlsGen2Mount_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen2mount"
+
+azureadlsgen2mount.AzureAdlsGen2Mount_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the AzureAdlsGen2Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing AzureAdlsGen2Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen2_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen2Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -789,7 +895,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureadlsgen2mount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureadlsgen2mount"
&azureadlsgen2mount.AzureAdlsGen2MountConfig {
Connection: interface{},
diff --git a/docs/azureAdlsGen2Mount.java.md b/docs/azureAdlsGen2Mount.java.md
index e7d8fab76..f7fed4d2a 100644
--- a/docs/azureAdlsGen2Mount.java.md
+++ b/docs/azureAdlsGen2Mount.java.md
@@ -228,6 +228,7 @@ If you experience problems setting this value it might not be settable. Please t
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -237,7 +238,9 @@ If you experience problems setting this value it might not be settable. Please t
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetDirectory
| *No description.* |
| resetId
| *No description.* |
@@ -308,6 +311,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -416,6 +435,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -428,6 +466,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```java
@@ -453,6 +516,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ". |
---
@@ -516,6 +580,50 @@ AzureAdlsGen2Mount.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.azure_adls_gen2_mount.AzureAdlsGen2Mount;
+
+AzureAdlsGen2Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),AzureAdlsGen2Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the AzureAdlsGen2Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing AzureAdlsGen2Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen2_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen2Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen2Mount.python.md b/docs/azureAdlsGen2Mount.python.md
index 49ff34f1c..7d27269f6 100644
--- a/docs/azureAdlsGen2Mount.python.md
+++ b/docs/azureAdlsGen2Mount.python.md
@@ -225,6 +225,7 @@ If you experience problems setting this value it might not be settable. Please t
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -234,7 +235,9 @@ If you experience problems setting this value it might not be settable. Please t
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_cluster_id
| *No description.* |
| reset_directory
| *No description.* |
| reset_id
| *No description.* |
@@ -310,6 +313,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -436,6 +457,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -450,6 +492,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_cluster_id`
```python
@@ -475,6 +544,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ". |
---
@@ -544,6 +614,55 @@ azureAdlsGen2Mount.AzureAdlsGen2Mount.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import azure_adls_gen2_mount
+
+azureAdlsGen2Mount.AzureAdlsGen2Mount.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the AzureAdlsGen2Mount to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing AzureAdlsGen2Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen2_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen2Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureAdlsGen2Mount.typescript.md b/docs/azureAdlsGen2Mount.typescript.md
index e576a5144..2d00a3318 100644
--- a/docs/azureAdlsGen2Mount.typescript.md
+++ b/docs/azureAdlsGen2Mount.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetDirectory
| *No description.* |
| resetId
| *No description.* |
@@ -140,6 +143,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -248,6 +267,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -260,6 +297,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```typescript
@@ -285,6 +346,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ". |
---
@@ -348,6 +410,50 @@ azureAdlsGen2Mount.AzureAdlsGen2Mount.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { azureAdlsGen2Mount } from '@cdktf/provider-databricks'
+
+azureAdlsGen2Mount.AzureAdlsGen2Mount.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AzureAdlsGen2Mount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing AzureAdlsGen2Mount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_adls_gen2_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureAdlsGen2Mount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureBlobMount.csharp.md b/docs/azureBlobMount.csharp.md
index f23e4ace4..4a9c8acf3 100644
--- a/docs/azureBlobMount.csharp.md
+++ b/docs/azureBlobMount.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetDirectory
| *No description.* |
| ResetId
| *No description.* |
@@ -140,6 +143,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -248,6 +267,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -260,6 +297,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```csharp
@@ -285,6 +346,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ". |
---
@@ -348,6 +410,50 @@ AzureBlobMount.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+AzureBlobMount.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AzureBlobMount to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing AzureBlobMount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_blob_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureBlobMount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureBlobMount.go.md b/docs/azureBlobMount.go.md
index a33d7e3b3..91d747e8a 100644
--- a/docs/azureBlobMount.go.md
+++ b/docs/azureBlobMount.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureblobmount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureblobmount"
azureblobmount.NewAzureBlobMount(scope Construct, id *string, config AzureBlobMountConfig) AzureBlobMount
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetClusterId
| *No description.* |
| ResetDirectory
| *No description.* |
| ResetId
| *No description.* |
@@ -140,6 +143,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -248,6 +267,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -260,6 +297,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetClusterId`
```go
@@ -285,13 +346,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureblobmount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureblobmount"
azureblobmount.AzureBlobMount_IsConstruct(x interface{}) *bool
```
@@ -323,7 +385,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureblobmount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureblobmount"
azureblobmount.AzureBlobMount_IsTerraformElement(x interface{}) *bool
```
@@ -337,7 +399,7 @@ azureblobmount.AzureBlobMount_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureblobmount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureblobmount"
azureblobmount.AzureBlobMount_IsTerraformResource(x interface{}) *bool
```
@@ -348,6 +410,50 @@ azureblobmount.AzureBlobMount_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureblobmount"
+
+azureblobmount.AzureBlobMount_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the AzureBlobMount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing AzureBlobMount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_blob_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureBlobMount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -745,7 +851,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/azureblobmount"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/azureblobmount"
&azureblobmount.AzureBlobMountConfig {
Connection: interface{},
diff --git a/docs/azureBlobMount.java.md b/docs/azureBlobMount.java.md
index ff70924b2..cefc2c3f2 100644
--- a/docs/azureBlobMount.java.md
+++ b/docs/azureBlobMount.java.md
@@ -207,6 +207,7 @@ If you experience problems setting this value it might not be settable. Please t
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -216,7 +217,9 @@ If you experience problems setting this value it might not be settable. Please t
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetDirectory
| *No description.* |
| resetId
| *No description.* |
@@ -287,6 +290,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -395,6 +414,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -407,6 +445,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```java
@@ -432,6 +495,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ". |
---
@@ -495,6 +559,50 @@ AzureBlobMount.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.azure_blob_mount.AzureBlobMount;
+
+AzureBlobMount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),AzureBlobMount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the AzureBlobMount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing AzureBlobMount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_blob_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureBlobMount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureBlobMount.python.md b/docs/azureBlobMount.python.md
index 7cf52dfb0..7910892cb 100644
--- a/docs/azureBlobMount.python.md
+++ b/docs/azureBlobMount.python.md
@@ -205,6 +205,7 @@ If you experience problems setting this value it might not be settable. Please t
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -214,7 +215,9 @@ If you experience problems setting this value it might not be settable. Please t
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_cluster_id
| *No description.* |
| reset_directory
| *No description.* |
| reset_id
| *No description.* |
@@ -290,6 +293,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -416,6 +437,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -430,6 +472,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_cluster_id`
```python
@@ -455,6 +524,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ". |
---
@@ -524,6 +594,55 @@ azureBlobMount.AzureBlobMount.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import azure_blob_mount
+
+azureBlobMount.AzureBlobMount.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the AzureBlobMount to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing AzureBlobMount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_blob_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureBlobMount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/azureBlobMount.typescript.md b/docs/azureBlobMount.typescript.md
index 77ff38382..daa8baa3c 100644
--- a/docs/azureBlobMount.typescript.md
+++ b/docs/azureBlobMount.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetClusterId
| *No description.* |
| resetDirectory
| *No description.* |
| resetId
| *No description.* |
@@ -140,6 +143,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -248,6 +267,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -260,6 +297,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetClusterId`
```typescript
@@ -285,6 +346,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ". |
---
@@ -348,6 +410,50 @@ azureBlobMount.AzureBlobMount.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { azureBlobMount } from '@cdktf/provider-databricks'
+
+azureBlobMount.AzureBlobMount.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the AzureBlobMount to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing AzureBlobMount that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/azure_blob_mount#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the AzureBlobMount to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalog.csharp.md b/docs/catalog.csharp.md
index 37ca38cd9..528e769f0 100644
--- a/docs/catalog.csharp.md
+++ b/docs/catalog.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetComment
| *No description.* |
| ResetConnectionName
| *No description.* |
| ResetForceDestroy
| *No description.* |
@@ -149,6 +152,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -257,6 +276,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -269,6 +306,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetComment`
```csharp
@@ -348,6 +409,7 @@ private void ResetStorageRoot()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ". |
---
@@ -411,6 +473,50 @@ Catalog.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+Catalog.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the Catalog to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing Catalog that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the Catalog to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalog.go.md b/docs/catalog.go.md
index d77e818ab..6039e18fb 100644
--- a/docs/catalog.go.md
+++ b/docs/catalog.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalog"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalog"
catalog.NewCatalog(scope Construct, id *string, config CatalogConfig) Catalog
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetComment
| *No description.* |
| ResetConnectionName
| *No description.* |
| ResetForceDestroy
| *No description.* |
@@ -149,6 +152,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -257,6 +276,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -269,6 +306,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetComment`
```go
@@ -348,13 +409,14 @@ func ResetStorageRoot()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalog"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalog"
catalog.Catalog_IsConstruct(x interface{}) *bool
```
@@ -386,7 +448,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalog"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalog"
catalog.Catalog_IsTerraformElement(x interface{}) *bool
```
@@ -400,7 +462,7 @@ catalog.Catalog_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalog"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalog"
catalog.Catalog_IsTerraformResource(x interface{}) *bool
```
@@ -411,6 +473,50 @@ catalog.Catalog_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalog"
+
+catalog.Catalog_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the Catalog to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing Catalog that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the Catalog to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -885,7 +991,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalog"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalog"
&catalog.CatalogConfig {
Connection: interface{},
diff --git a/docs/catalog.java.md b/docs/catalog.java.md
index 2c5fb734c..69647c8df 100644
--- a/docs/catalog.java.md
+++ b/docs/catalog.java.md
@@ -248,6 +248,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -257,7 +258,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetComment
| *No description.* |
| resetConnectionName
| *No description.* |
| resetForceDestroy
| *No description.* |
@@ -337,6 +340,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -445,6 +464,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -457,6 +495,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetComment`
```java
@@ -536,6 +599,7 @@ public void resetStorageRoot()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ". |
---
@@ -599,6 +663,50 @@ Catalog.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.catalog.Catalog;
+
+Catalog.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Catalog.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the Catalog to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing Catalog that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the Catalog to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalog.python.md b/docs/catalog.python.md
index e4dd9242c..2113fc6bf 100644
--- a/docs/catalog.python.md
+++ b/docs/catalog.python.md
@@ -245,6 +245,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -254,7 +255,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_comment
| *No description.* |
| reset_connection_name
| *No description.* |
| reset_force_destroy
| *No description.* |
@@ -339,6 +342,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -465,6 +486,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -479,6 +521,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_comment`
```python
@@ -558,6 +627,7 @@ def reset_storage_root() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ". |
---
@@ -627,6 +697,55 @@ catalog.Catalog.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import catalog
+
+catalog.Catalog.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the Catalog to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing Catalog that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the Catalog to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalog.typescript.md b/docs/catalog.typescript.md
index 036958f73..7c636b8fd 100644
--- a/docs/catalog.typescript.md
+++ b/docs/catalog.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetComment
| *No description.* |
| resetConnectionName
| *No description.* |
| resetForceDestroy
| *No description.* |
@@ -149,6 +152,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -257,6 +276,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -269,6 +306,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetComment`
```typescript
@@ -348,6 +409,7 @@ public resetStorageRoot(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ". |
---
@@ -411,6 +473,50 @@ catalog.Catalog.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { catalog } from '@cdktf/provider-databricks'
+
+catalog.Catalog.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a Catalog resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the Catalog to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing Catalog that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the Catalog to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalogWorkspaceBinding.csharp.md b/docs/catalogWorkspaceBinding.csharp.md
index 9fd2e777b..6a002d4c1 100644
--- a/docs/catalogWorkspaceBinding.csharp.md
+++ b/docs/catalogWorkspaceBinding.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetId
| *No description.* |
---
@@ -138,6 +141,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -246,6 +265,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -258,6 +295,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetId`
```csharp
@@ -271,6 +332,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ". |
---
@@ -334,6 +396,50 @@ CatalogWorkspaceBinding.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+CatalogWorkspaceBinding.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the CatalogWorkspaceBinding to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing CatalogWorkspaceBinding that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog_workspace_binding#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the CatalogWorkspaceBinding to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalogWorkspaceBinding.go.md b/docs/catalogWorkspaceBinding.go.md
index 17bc60ac1..00eb235cf 100644
--- a/docs/catalogWorkspaceBinding.go.md
+++ b/docs/catalogWorkspaceBinding.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalogworkspacebinding"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalogworkspacebinding"
catalogworkspacebinding.NewCatalogWorkspaceBinding(scope Construct, id *string, config CatalogWorkspaceBindingConfig) CatalogWorkspaceBinding
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetId
| *No description.* |
---
@@ -138,6 +141,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -246,6 +265,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -258,6 +295,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetId`
```go
@@ -271,13 +332,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalogworkspacebinding"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalogworkspacebinding"
catalogworkspacebinding.CatalogWorkspaceBinding_IsConstruct(x interface{}) *bool
```
@@ -309,7 +371,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalogworkspacebinding"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalogworkspacebinding"
catalogworkspacebinding.CatalogWorkspaceBinding_IsTerraformElement(x interface{}) *bool
```
@@ -323,7 +385,7 @@ catalogworkspacebinding.CatalogWorkspaceBinding_IsTerraformElement(x interface{}
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalogworkspacebinding"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalogworkspacebinding"
catalogworkspacebinding.CatalogWorkspaceBinding_IsTerraformResource(x interface{}) *bool
```
@@ -334,6 +396,50 @@ catalogworkspacebinding.CatalogWorkspaceBinding_IsTerraformResource(x interface{
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalogworkspacebinding"
+
+catalogworkspacebinding.CatalogWorkspaceBinding_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the CatalogWorkspaceBinding to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing CatalogWorkspaceBinding that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog_workspace_binding#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the CatalogWorkspaceBinding to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -588,7 +694,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/catalogworkspacebinding"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/catalogworkspacebinding"
&catalogworkspacebinding.CatalogWorkspaceBindingConfig {
Connection: interface{},
diff --git a/docs/catalogWorkspaceBinding.java.md b/docs/catalogWorkspaceBinding.java.md
index 3cfb74304..0aa8f36b0 100644
--- a/docs/catalogWorkspaceBinding.java.md
+++ b/docs/catalogWorkspaceBinding.java.md
@@ -147,6 +147,7 @@ If you experience problems setting this value it might not be settable. Please t
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -156,7 +157,9 @@ If you experience problems setting this value it might not be settable. Please t
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetId
| *No description.* |
---
@@ -225,6 +228,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -333,6 +352,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -345,6 +383,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetId`
```java
@@ -358,6 +421,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ". |
---
@@ -421,6 +485,50 @@ CatalogWorkspaceBinding.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.catalog_workspace_binding.CatalogWorkspaceBinding;
+
+CatalogWorkspaceBinding.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),CatalogWorkspaceBinding.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the CatalogWorkspaceBinding to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing CatalogWorkspaceBinding that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog_workspace_binding#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the CatalogWorkspaceBinding to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalogWorkspaceBinding.python.md b/docs/catalogWorkspaceBinding.python.md
index 7c5798710..7790dd4d2 100644
--- a/docs/catalogWorkspaceBinding.python.md
+++ b/docs/catalogWorkspaceBinding.python.md
@@ -145,6 +145,7 @@ If you experience problems setting this value it might not be settable. Please t
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -154,7 +155,9 @@ If you experience problems setting this value it might not be settable. Please t
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_id
| *No description.* |
---
@@ -228,6 +231,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -354,6 +375,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -368,6 +410,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_id`
```python
@@ -381,6 +450,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ". |
---
@@ -450,6 +520,55 @@ catalogWorkspaceBinding.CatalogWorkspaceBinding.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import catalog_workspace_binding
+
+catalogWorkspaceBinding.CatalogWorkspaceBinding.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the CatalogWorkspaceBinding to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing CatalogWorkspaceBinding that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog_workspace_binding#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the CatalogWorkspaceBinding to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/catalogWorkspaceBinding.typescript.md b/docs/catalogWorkspaceBinding.typescript.md
index 3c8a45787..546dc3f19 100644
--- a/docs/catalogWorkspaceBinding.typescript.md
+++ b/docs/catalogWorkspaceBinding.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetId
| *No description.* |
---
@@ -138,6 +141,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -246,6 +265,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -258,6 +295,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetId`
```typescript
@@ -271,6 +332,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ". |
---
@@ -334,6 +396,50 @@ catalogWorkspaceBinding.CatalogWorkspaceBinding.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { catalogWorkspaceBinding } from '@cdktf/provider-databricks'
+
+catalogWorkspaceBinding.CatalogWorkspaceBinding.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the CatalogWorkspaceBinding to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing CatalogWorkspaceBinding that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/catalog_workspace_binding#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the CatalogWorkspaceBinding to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/cluster.csharp.md b/docs/cluster.csharp.md
index 6bff10160..4f55bea92 100644
--- a/docs/cluster.csharp.md
+++ b/docs/cluster.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| PutAutoscale
| *No description.* |
| PutAwsAttributes
| *No description.* |
| PutAzureAttributes
| *No description.* |
@@ -181,6 +184,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -289,6 +308,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -301,6 +338,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `PutAutoscale`
```csharp
@@ -638,6 +699,7 @@ private void ResetWorkloadType()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ". |
---
@@ -701,6 +763,50 @@ Cluster.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+Cluster.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the Cluster to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing Cluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the Cluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/cluster.go.md b/docs/cluster.go.md
index addb6ca30..1488e2f8f 100644
--- a/docs/cluster.go.md
+++ b/docs/cluster.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewCluster(scope Construct, id *string, config ClusterConfig) Cluster
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| PutAutoscale
| *No description.* |
| PutAwsAttributes
| *No description.* |
| PutAzureAttributes
| *No description.* |
@@ -181,6 +184,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -289,6 +308,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -301,6 +338,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `PutAutoscale`
```go
@@ -638,13 +699,14 @@ func ResetWorkloadType()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.Cluster_IsConstruct(x interface{}) *bool
```
@@ -676,7 +738,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.Cluster_IsTerraformElement(x interface{}) *bool
```
@@ -690,7 +752,7 @@ cluster.Cluster_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.Cluster_IsTerraformResource(x interface{}) *bool
```
@@ -701,6 +763,50 @@ cluster.Cluster_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
+
+cluster.Cluster_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the Cluster to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing Cluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the Cluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -1670,7 +1776,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterAutoscale {
MaxWorkers: *f64,
@@ -1716,7 +1822,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterAwsAttributes {
Availability: *string,
@@ -1846,7 +1952,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterAzureAttributes {
Availability: *string,
@@ -1906,11 +2012,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterClusterLogConf {
- Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterClusterLogConfDbfs,
- S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterClusterLogConfS3,
+ Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterClusterLogConfDbfs,
+ S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterClusterLogConfS3,
}
```
@@ -1956,7 +2062,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterClusterLogConfDbfs {
Destination: *string,
@@ -1988,7 +2094,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterClusterLogConfS3 {
Destination: *string,
@@ -2104,11 +2210,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterClusterMountInfo {
LocalMountDirPath: *string,
- NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterClusterMountInfoNetworkFilesystemInfo,
+ NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterClusterMountInfoNetworkFilesystemInfo,
RemoteMountDirPath: *string,
}
```
@@ -2166,7 +2272,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterClusterMountInfoNetworkFilesystemInfo {
ServerAddress: *string,
@@ -2212,7 +2318,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterConfig {
Connection: interface{},
@@ -2224,22 +2330,22 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
Provisioners: *[]interface{},
SparkVersion: *string,
ApplyPolicyDefaultValues: interface{},
- Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterAutoscale,
+ Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterAutoscale,
AutoterminationMinutes: *f64,
- AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterAwsAttributes,
- AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterAzureAttributes,
+ AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterAwsAttributes,
+ AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterAzureAttributes,
ClusterId: *string,
- ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterClusterLogConf,
+ ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterClusterLogConf,
ClusterMountInfo: interface{},
ClusterName: *string,
CustomTags: *map[string]*string,
DataSecurityMode: *string,
- DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterDockerImage,
+ DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterDockerImage,
DriverInstancePoolId: *string,
DriverNodeTypeId: *string,
EnableElasticDisk: interface{},
EnableLocalDiskEncryption: interface{},
- GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterGcpAttributes,
+ GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterGcpAttributes,
Id: *string,
IdempotencyToken: *string,
InitScripts: interface{},
@@ -2254,8 +2360,8 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
SparkConf: *map[string]*string,
SparkEnvVars: *map[string]*string,
SshPublicKeys: *[]*string,
- Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterTimeouts,
- WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterWorkloadType,
+ Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterTimeouts,
+ WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterWorkloadType,
}
```
@@ -2815,11 +2921,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterDockerImage {
Url: *string,
- BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterDockerImageBasicAuth,
+ BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterDockerImageBasicAuth,
}
```
@@ -2863,7 +2969,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterDockerImageBasicAuth {
Password: *string,
@@ -2909,7 +3015,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterGcpAttributes {
Availability: *string,
@@ -3011,16 +3117,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScripts {
- Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsAbfss,
- Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsDbfs,
- File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsFile,
- Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsGcs,
- S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsS3,
- Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsVolumes,
- Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterInitScriptsWorkspace,
+ Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsAbfss,
+ Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsDbfs,
+ File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsFile,
+ Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsGcs,
+ S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsS3,
+ Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsVolumes,
+ Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterInitScriptsWorkspace,
}
```
@@ -3141,7 +3247,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsAbfss {
Destination: *string,
@@ -3173,7 +3279,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsDbfs {
Destination: *string,
@@ -3205,7 +3311,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsFile {
Destination: *string,
@@ -3237,7 +3343,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsGcs {
Destination: *string,
@@ -3269,7 +3375,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsS3 {
Destination: *string,
@@ -3385,7 +3491,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsVolumes {
Destination: *string,
@@ -3417,7 +3523,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterInitScriptsWorkspace {
Destination: *string,
@@ -3449,14 +3555,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterLibrary {
- Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterLibraryCran,
+ Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterLibraryCran,
Egg: *string,
Jar: *string,
- Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterLibraryMaven,
- Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterLibraryPypi,
+ Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterLibraryMaven,
+ Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterLibraryPypi,
Whl: *string,
}
```
@@ -3557,7 +3663,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterLibraryCran {
Package: *string,
@@ -3603,7 +3709,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterLibraryMaven {
Coordinates: *string,
@@ -3663,7 +3769,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterLibraryPypi {
Package: *string,
@@ -3709,7 +3815,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterTimeouts {
Create: *string,
@@ -3769,10 +3875,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterWorkloadType {
- Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.cluster.ClusterWorkloadTypeClients,
+ Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.cluster.ClusterWorkloadTypeClients,
}
```
@@ -3803,7 +3909,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
&cluster.ClusterWorkloadTypeClients {
Jobs: interface{},
@@ -3851,7 +3957,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterAutoscaleOutputReference
```
@@ -4158,7 +4264,7 @@ func InternalValue() ClusterAutoscale
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterAwsAttributesOutputReference
```
@@ -4639,7 +4745,7 @@ func InternalValue() ClusterAwsAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterAzureAttributesOutputReference
```
@@ -4975,7 +5081,7 @@ func InternalValue() ClusterAzureAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterClusterLogConfDbfsOutputReference
```
@@ -5246,7 +5352,7 @@ func InternalValue() ClusterClusterLogConfDbfs
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterClusterLogConfOutputReference
```
@@ -5579,7 +5685,7 @@ func InternalValue() ClusterClusterLogConf
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterClusterLogConfS3OutputReference
```
@@ -6024,7 +6130,7 @@ func InternalValue() ClusterClusterLogConfS3
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ClusterClusterMountInfoList
```
@@ -6167,7 +6273,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterClusterMountInfoNetworkFilesystemInfoOutputReference
```
@@ -6467,7 +6573,7 @@ func InternalValue() ClusterClusterMountInfoNetworkFilesystemInfo
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ClusterClusterMountInfoOutputReference
```
@@ -6820,7 +6926,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterDockerImageBasicAuthOutputReference
```
@@ -7113,7 +7219,7 @@ func InternalValue() ClusterDockerImageBasicAuth
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterDockerImageOutputReference
```
@@ -7426,7 +7532,7 @@ func InternalValue() ClusterDockerImage
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterGcpAttributesOutputReference
```
@@ -7849,7 +7955,7 @@ func InternalValue() ClusterGcpAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsAbfssOutputReference
```
@@ -8127,7 +8233,7 @@ func InternalValue() ClusterInitScriptsAbfss
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsDbfsOutputReference
```
@@ -8398,7 +8504,7 @@ func InternalValue() ClusterInitScriptsDbfs
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsFileOutputReference
```
@@ -8676,7 +8782,7 @@ func InternalValue() ClusterInitScriptsFile
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsGcsOutputReference
```
@@ -8954,7 +9060,7 @@ func InternalValue() ClusterInitScriptsGcs
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ClusterInitScriptsList
```
@@ -9097,7 +9203,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ClusterInitScriptsOutputReference
```
@@ -9658,7 +9764,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsS3OutputReference
```
@@ -10103,7 +10209,7 @@ func InternalValue() ClusterInitScriptsS3
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsVolumesOutputReference
```
@@ -10381,7 +10487,7 @@ func InternalValue() ClusterInitScriptsVolumes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterInitScriptsWorkspaceOutputReference
```
@@ -10659,7 +10765,7 @@ func InternalValue() ClusterInitScriptsWorkspace
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterLibraryCranOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterLibraryCranOutputReference
```
@@ -10959,7 +11065,7 @@ func InternalValue() ClusterLibraryCran
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterLibraryList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ClusterLibraryList
```
@@ -11102,7 +11208,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterLibraryMavenOutputReference
```
@@ -11431,7 +11537,7 @@ func InternalValue() ClusterLibraryMaven
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterLibraryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ClusterLibraryOutputReference
```
@@ -11911,7 +12017,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterLibraryPypiOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterLibraryPypiOutputReference
```
@@ -12211,7 +12317,7 @@ func InternalValue() ClusterLibraryPypi
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterTimeoutsOutputReference
```
@@ -12547,7 +12653,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterWorkloadTypeClientsOutputReference
```
@@ -12854,7 +12960,7 @@ func InternalValue() ClusterWorkloadTypeClients
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/cluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/cluster"
cluster.NewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ClusterWorkloadTypeOutputReference
```
diff --git a/docs/cluster.java.md b/docs/cluster.java.md
index 09e701f30..d42ce663e 100644
--- a/docs/cluster.java.md
+++ b/docs/cluster.java.md
@@ -486,6 +486,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -495,7 +496,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| putAutoscale
| *No description.* |
| putAwsAttributes
| *No description.* |
| putAzureAttributes
| *No description.* |
@@ -607,6 +610,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -715,6 +734,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -727,6 +765,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `putAutoscale`
```java
@@ -1064,6 +1127,7 @@ public void resetWorkloadType()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ". |
---
@@ -1127,6 +1191,50 @@ Cluster.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.cluster.Cluster;
+
+Cluster.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Cluster.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the Cluster to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing Cluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the Cluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/cluster.python.md b/docs/cluster.python.md
index 12da919c5..288e8415d 100644
--- a/docs/cluster.python.md
+++ b/docs/cluster.python.md
@@ -477,6 +477,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -486,7 +487,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| put_autoscale
| *No description.* |
| put_aws_attributes
| *No description.* |
| put_azure_attributes
| *No description.* |
@@ -603,6 +606,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -729,6 +750,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -743,6 +785,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `put_autoscale`
```python
@@ -1297,6 +1366,7 @@ def reset_workload_type() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ". |
---
@@ -1366,6 +1436,55 @@ cluster.Cluster.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import cluster
+
+cluster.Cluster.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the Cluster to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing Cluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the Cluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/cluster.typescript.md b/docs/cluster.typescript.md
index 90a09eceb..eff8ecadc 100644
--- a/docs/cluster.typescript.md
+++ b/docs/cluster.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| putAutoscale
| *No description.* |
| putAwsAttributes
| *No description.* |
| putAzureAttributes
| *No description.* |
@@ -181,6 +184,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -289,6 +308,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -301,6 +338,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `putAutoscale`
```typescript
@@ -638,6 +699,7 @@ public resetWorkloadType(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ". |
---
@@ -701,6 +763,50 @@ cluster.Cluster.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { cluster } from '@cdktf/provider-databricks'
+
+cluster.Cluster.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a Cluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the Cluster to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing Cluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the Cluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/clusterPolicy.csharp.md b/docs/clusterPolicy.csharp.md
index f2c54ef2b..7960822ef 100644
--- a/docs/clusterPolicy.csharp.md
+++ b/docs/clusterPolicy.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetDefinition
| *No description.* |
| ResetDescription
| *No description.* |
| ResetId
| *No description.* |
@@ -143,6 +146,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -251,6 +270,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -263,6 +300,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetDefinition`
```csharp
@@ -306,6 +367,7 @@ private void ResetPolicyFamilyId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ". |
---
@@ -369,6 +431,50 @@ ClusterPolicy.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+ClusterPolicy.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the ClusterPolicy to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing ClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the ClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/clusterPolicy.go.md b/docs/clusterPolicy.go.md
index a87cf12cf..a7bd4a0ce 100644
--- a/docs/clusterPolicy.go.md
+++ b/docs/clusterPolicy.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/clusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/clusterpolicy"
clusterpolicy.NewClusterPolicy(scope Construct, id *string, config ClusterPolicyConfig) ClusterPolicy
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetDefinition
| *No description.* |
| ResetDescription
| *No description.* |
| ResetId
| *No description.* |
@@ -143,6 +146,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -251,6 +270,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -263,6 +300,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetDefinition`
```go
@@ -306,13 +367,14 @@ func ResetPolicyFamilyId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/clusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/clusterpolicy"
clusterpolicy.ClusterPolicy_IsConstruct(x interface{}) *bool
```
@@ -344,7 +406,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/clusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/clusterpolicy"
clusterpolicy.ClusterPolicy_IsTerraformElement(x interface{}) *bool
```
@@ -358,7 +420,7 @@ clusterpolicy.ClusterPolicy_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/clusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/clusterpolicy"
clusterpolicy.ClusterPolicy_IsTerraformResource(x interface{}) *bool
```
@@ -369,6 +431,50 @@ clusterpolicy.ClusterPolicy_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/clusterpolicy"
+
+clusterpolicy.ClusterPolicy_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the ClusterPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing ClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the ClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -722,7 +828,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/clusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/clusterpolicy"
&clusterpolicy.ClusterPolicyConfig {
Connection: interface{},
diff --git a/docs/clusterPolicy.java.md b/docs/clusterPolicy.java.md
index 6f45e7dba..d8e2305a8 100644
--- a/docs/clusterPolicy.java.md
+++ b/docs/clusterPolicy.java.md
@@ -187,6 +187,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -196,7 +197,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetDefinition
| *No description.* |
| resetDescription
| *No description.* |
| resetId
| *No description.* |
@@ -270,6 +273,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -378,6 +397,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -390,6 +428,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetDefinition`
```java
@@ -433,6 +496,7 @@ public void resetPolicyFamilyId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ". |
---
@@ -496,6 +560,50 @@ ClusterPolicy.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.cluster_policy.ClusterPolicy;
+
+ClusterPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ClusterPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the ClusterPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing ClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the ClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/clusterPolicy.python.md b/docs/clusterPolicy.python.md
index d4b9776a5..84b0d3a18 100644
--- a/docs/clusterPolicy.python.md
+++ b/docs/clusterPolicy.python.md
@@ -185,6 +185,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -194,7 +195,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_definition
| *No description.* |
| reset_description
| *No description.* |
| reset_id
| *No description.* |
@@ -273,6 +276,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -399,6 +420,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -413,6 +455,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_definition`
```python
@@ -456,6 +525,7 @@ def reset_policy_family_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ". |
---
@@ -525,6 +595,55 @@ clusterPolicy.ClusterPolicy.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import cluster_policy
+
+clusterPolicy.ClusterPolicy.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the ClusterPolicy to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing ClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the ClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/clusterPolicy.typescript.md b/docs/clusterPolicy.typescript.md
index 774fa50d2..2a66d1d67 100644
--- a/docs/clusterPolicy.typescript.md
+++ b/docs/clusterPolicy.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetDefinition
| *No description.* |
| resetDescription
| *No description.* |
| resetId
| *No description.* |
@@ -143,6 +146,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -251,6 +270,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -263,6 +300,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetDefinition`
```typescript
@@ -306,6 +367,7 @@ public resetPolicyFamilyId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ". |
---
@@ -369,6 +431,50 @@ clusterPolicy.ClusterPolicy.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { clusterPolicy } from '@cdktf/provider-databricks'
+
+clusterPolicy.ClusterPolicy.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the ClusterPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing ClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the ClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/connection.csharp.md b/docs/connection.csharp.md
index f246979da..891d5350a 100644
--- a/docs/connection.csharp.md
+++ b/docs/connection.csharp.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetComment
| *No description.* |
| ResetId
| *No description.* |
| ResetMetastoreId
| *No description.* |
@@ -143,6 +146,22 @@ private object ToTerraform()
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```csharp
+private void AddMoveTarget(string MoveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```csharp
@@ -251,6 +270,24 @@ private System.Collections.Generic.IDictionary GetStringMapAttri
---
+##### `ImportFrom`
+
+```csharp
+private void ImportFrom(string Id, TerraformProvider Provider = null)
+```
+
+###### `Id`Required
+
+- *Type:* string
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```csharp
@@ -263,6 +300,30 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute)
---
+##### `MoveTo`
+
+```csharp
+private void MoveTo(string MoveTarget, object Index = null)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `MoveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `Index`Optional
+
+- *Type:* object
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetComment`
```csharp
@@ -306,6 +367,7 @@ private void ResetReadOnly()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a Connection resource upon running "cdktf plan ". |
---
@@ -369,6 +431,50 @@ Connection.IsTerraformResource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+Connection.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a Connection resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the Connection to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing Connection that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/connection#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the Connection to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/connection.go.md b/docs/connection.go.md
index 62115576e..ab741379e 100644
--- a/docs/connection.go.md
+++ b/docs/connection.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/connection"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/connection"
connection.NewConnection(scope Construct, id *string, config ConnectionConfig) Connection
```
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| ResetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| ToMetadata
| *No description.* |
| ToTerraform
| Adds this resource to the terraform JSON output. |
+| AddMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| GetAnyMapAttribute
| *No description.* |
| GetBooleanAttribute
| *No description.* |
| GetBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| GetNumberMapAttribute
| *No description.* |
| GetStringAttribute
| *No description.* |
| GetStringMapAttribute
| *No description.* |
+| ImportFrom
| *No description.* |
| InterpolationForAttribute
| *No description.* |
+| MoveTo
| Moves this resource to the target resource given by moveTarget. |
| ResetComment
| *No description.* |
| ResetId
| *No description.* |
| ResetMetastoreId
| *No description.* |
@@ -143,6 +146,22 @@ func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
+##### `AddMoveTarget`
+
+```go
+func AddMoveTarget(moveTarget *string)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `GetAnyMapAttribute`
```go
@@ -251,6 +270,24 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
---
+##### `ImportFrom`
+
+```go
+func ImportFrom(id *string, provider TerraformProvider)
+```
+
+###### `id`Required
+
+- *Type:* *string
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+---
+
##### `InterpolationForAttribute`
```go
@@ -263,6 +300,30 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
---
+##### `MoveTo`
+
+```go
+func MoveTo(moveTarget *string, index interface{})
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* *string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* interface{}
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `ResetComment`
```go
@@ -306,13 +367,14 @@ func ResetReadOnly()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformResource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a Connection resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/connection"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/connection"
connection.Connection_IsConstruct(x interface{}) *bool
```
@@ -344,7 +406,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/connection"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/connection"
connection.Connection_IsTerraformElement(x interface{}) *bool
```
@@ -358,7 +420,7 @@ connection.Connection_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/connection"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/connection"
connection.Connection_IsTerraformResource(x interface{}) *bool
```
@@ -369,6 +431,50 @@ connection.Connection_IsTerraformResource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/connection"
+
+connection.Connection_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a Connection resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the Connection to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing Connection that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/connection#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the Connection to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -755,7 +861,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/connection"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/connection"
&connection.ConnectionConfig {
Connection: interface{},
diff --git a/docs/connection.java.md b/docs/connection.java.md
index e79d481f0..6589f065f 100644
--- a/docs/connection.java.md
+++ b/docs/connection.java.md
@@ -208,6 +208,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -217,7 +218,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetComment
| *No description.* |
| resetId
| *No description.* |
| resetMetastoreId
| *No description.* |
@@ -291,6 +294,22 @@ public java.lang.Object toTerraform()
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```java
+public void addMoveTarget(java.lang.String moveTarget)
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```java
@@ -399,6 +418,25 @@ public java.util.Map getStringMapAttribute(j
---
+##### `importFrom`
+
+```java
+public void importFrom(java.lang.String id)
+public void importFrom(java.lang.String id, TerraformProvider provider)
+```
+
+###### `id`Required
+
+- *Type:* java.lang.String
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```java
@@ -411,6 +449,31 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute
---
+##### `moveTo`
+
+```java
+public void moveTo(java.lang.String moveTarget)
+public void moveTo(java.lang.String moveTarget, java.lang.String OR java.lang.Number index)
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* java.lang.String
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* java.lang.String OR java.lang.Number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetComment`
```java
@@ -454,6 +517,7 @@ public void resetReadOnly()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a Connection resource upon running "cdktf plan ". |
---
@@ -517,6 +581,50 @@ Connection.isTerraformResource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.connection.Connection;
+
+Connection.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Connection.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a Connection resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the Connection to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing Connection that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/connection#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the Connection to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/connection.python.md b/docs/connection.python.md
index ef42224bc..0fcf8d0d7 100644
--- a/docs/connection.python.md
+++ b/docs/connection.python.md
@@ -205,6 +205,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| reset_override_logical_id
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| to_metadata
| *No description.* |
| to_terraform
| Adds this resource to the terraform JSON output. |
+| add_move_target
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| get_any_map_attribute
| *No description.* |
| get_boolean_attribute
| *No description.* |
| get_boolean_map_attribute
| *No description.* |
@@ -214,7 +215,9 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
| get_number_map_attribute
| *No description.* |
| get_string_attribute
| *No description.* |
| get_string_map_attribute
| *No description.* |
+| import_from
| *No description.* |
| interpolation_for_attribute
| *No description.* |
+| move_to
| Moves this resource to the target resource given by moveTarget. |
| reset_comment
| *No description.* |
| reset_id
| *No description.* |
| reset_metastore_id
| *No description.* |
@@ -293,6 +296,24 @@ def to_terraform() -> typing.Any
Adds this resource to the terraform JSON output.
+##### `add_move_target`
+
+```python
+def add_move_target(
+ move_target: str
+) -> None
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The string move target that will correspond to this resource.
+
+---
+
##### `get_any_map_attribute`
```python
@@ -419,6 +440,27 @@ def get_string_map_attribute(
---
+##### `import_from`
+
+```python
+def import_from(
+ id: str,
+ provider: TerraformProvider = None
+) -> None
+```
+
+###### `id`Required
+
+- *Type:* str
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolation_for_attribute`
```python
@@ -433,6 +475,33 @@ def interpolation_for_attribute(
---
+##### `move_to`
+
+```python
+def move_to(
+ move_target: str,
+ index: typing.Union[str, typing.Union[int, float]] = None
+) -> None
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `move_target`Required
+
+- *Type:* str
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* typing.Union[str, typing.Union[int, float]]
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `reset_comment`
```python
@@ -476,6 +545,7 @@ def reset_read_only() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_resource
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a Connection resource upon running "cdktf plan ". |
---
@@ -545,6 +615,55 @@ connection.Connection.is_terraform_resource(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import connection
+
+connection.Connection.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a Connection resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the Connection to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing Connection that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/connection#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the Connection to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/connection.typescript.md b/docs/connection.typescript.md
index bc1be520e..db372ae90 100644
--- a/docs/connection.typescript.md
+++ b/docs/connection.typescript.md
@@ -60,6 +60,7 @@ Must be unique amongst siblings in the same scope
| resetOverrideLogicalId
| Resets a previously passed logical Id to use the auto-generated logical id again. |
| toMetadata
| *No description.* |
| toTerraform
| Adds this resource to the terraform JSON output. |
+| addMoveTarget
| Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
| getAnyMapAttribute
| *No description.* |
| getBooleanAttribute
| *No description.* |
| getBooleanMapAttribute
| *No description.* |
@@ -69,7 +70,9 @@ Must be unique amongst siblings in the same scope
| getNumberMapAttribute
| *No description.* |
| getStringAttribute
| *No description.* |
| getStringMapAttribute
| *No description.* |
+| importFrom
| *No description.* |
| interpolationForAttribute
| *No description.* |
+| moveTo
| Moves this resource to the target resource given by moveTarget. |
| resetComment
| *No description.* |
| resetId
| *No description.* |
| resetMetastoreId
| *No description.* |
@@ -143,6 +146,22 @@ public toTerraform(): any
Adds this resource to the terraform JSON output.
+##### `addMoveTarget`
+
+```typescript
+public addMoveTarget(moveTarget: string): void
+```
+
+Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The string move target that will correspond to this resource.
+
+---
+
##### `getAnyMapAttribute`
```typescript
@@ -251,6 +270,24 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri
---
+##### `importFrom`
+
+```typescript
+public importFrom(id: string, provider?: TerraformProvider): void
+```
+
+###### `id`Required
+
+- *Type:* string
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+---
+
##### `interpolationForAttribute`
```typescript
@@ -263,6 +300,30 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable
---
+##### `moveTo`
+
+```typescript
+public moveTo(moveTarget: string, index?: string | number): void
+```
+
+Moves this resource to the target resource given by moveTarget.
+
+###### `moveTarget`Required
+
+- *Type:* string
+
+The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
+
+---
+
+###### `index`Optional
+
+- *Type:* string | number
+
+Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
+
+---
+
##### `resetComment`
```typescript
@@ -306,6 +367,7 @@ public resetReadOnly(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformResource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a Connection resource upon running "cdktf plan ". |
---
@@ -369,6 +431,50 @@ connection.Connection.isTerraformResource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { connection } from '@cdktf/provider-databricks'
+
+connection.Connection.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a Connection resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the Connection to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing Connection that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/connection#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the Connection to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsAssumeRolePolicy.csharp.md b/docs/dataDatabricksAwsAssumeRolePolicy.csharp.md
index 8fc6c2026..bad0e915a 100644
--- a/docs/dataDatabricksAwsAssumeRolePolicy.csharp.md
+++ b/docs/dataDatabricksAwsAssumeRolePolicy.csharp.md
@@ -285,6 +285,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ". |
---
@@ -348,6 +349,50 @@ DataDatabricksAwsAssumeRolePolicy.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksAwsAssumeRolePolicy.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksAwsAssumeRolePolicy to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksAwsAssumeRolePolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_assume_role_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsAssumeRolePolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsAssumeRolePolicy.go.md b/docs/dataDatabricksAwsAssumeRolePolicy.go.md
index 38bab9937..3fe62bce8 100644
--- a/docs/dataDatabricksAwsAssumeRolePolicy.go.md
+++ b/docs/dataDatabricksAwsAssumeRolePolicy.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsassumerolepolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsassumerolepolicy"
datadatabricksawsassumerolepolicy.NewDataDatabricksAwsAssumeRolePolicy(scope Construct, id *string, config DataDatabricksAwsAssumeRolePolicyConfig) DataDatabricksAwsAssumeRolePolicy
```
@@ -285,13 +285,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsassumerolepolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsassumerolepolicy"
datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicy_IsConstruct(x interface{}) *bool
```
@@ -323,7 +324,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsassumerolepolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsassumerolepolicy"
datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicy_IsTerraformElement(x interface{}) *bool
```
@@ -337,7 +338,7 @@ datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicy_IsTerraformE
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsassumerolepolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsassumerolepolicy"
datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicy_IsTerraformDataSource(x interface{}) *bool
```
@@ -348,6 +349,50 @@ datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicy_IsTerraformD
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsassumerolepolicy"
+
+datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicy_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksAwsAssumeRolePolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksAwsAssumeRolePolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_assume_role_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsAssumeRolePolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -613,7 +658,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsassumerolepolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsassumerolepolicy"
&datadatabricksawsassumerolepolicy.DataDatabricksAwsAssumeRolePolicyConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksAwsAssumeRolePolicy.java.md b/docs/dataDatabricksAwsAssumeRolePolicy.java.md
index 0ec5eed32..d5420b27a 100644
--- a/docs/dataDatabricksAwsAssumeRolePolicy.java.md
+++ b/docs/dataDatabricksAwsAssumeRolePolicy.java.md
@@ -385,6 +385,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ". |
---
@@ -448,6 +449,50 @@ DataDatabricksAwsAssumeRolePolicy.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_aws_assume_role_policy.DataDatabricksAwsAssumeRolePolicy;
+
+DataDatabricksAwsAssumeRolePolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksAwsAssumeRolePolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksAwsAssumeRolePolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksAwsAssumeRolePolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_assume_role_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsAssumeRolePolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsAssumeRolePolicy.python.md b/docs/dataDatabricksAwsAssumeRolePolicy.python.md
index 1cdd3ae88..532d4cb7d 100644
--- a/docs/dataDatabricksAwsAssumeRolePolicy.python.md
+++ b/docs/dataDatabricksAwsAssumeRolePolicy.python.md
@@ -407,6 +407,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ". |
---
@@ -476,6 +477,55 @@ dataDatabricksAwsAssumeRolePolicy.DataDatabricksAwsAssumeRolePolicy.is_terraform
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_aws_assume_role_policy
+
+dataDatabricksAwsAssumeRolePolicy.DataDatabricksAwsAssumeRolePolicy.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksAwsAssumeRolePolicy to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksAwsAssumeRolePolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_assume_role_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsAssumeRolePolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsAssumeRolePolicy.typescript.md b/docs/dataDatabricksAwsAssumeRolePolicy.typescript.md
index 367bb2733..f91a5fd5b 100644
--- a/docs/dataDatabricksAwsAssumeRolePolicy.typescript.md
+++ b/docs/dataDatabricksAwsAssumeRolePolicy.typescript.md
@@ -285,6 +285,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ". |
---
@@ -348,6 +349,50 @@ dataDatabricksAwsAssumeRolePolicy.DataDatabricksAwsAssumeRolePolicy.isTerraformD
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksAwsAssumeRolePolicy } from '@cdktf/provider-databricks'
+
+dataDatabricksAwsAssumeRolePolicy.DataDatabricksAwsAssumeRolePolicy.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksAwsAssumeRolePolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksAwsAssumeRolePolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_assume_role_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsAssumeRolePolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsBucketPolicy.csharp.md b/docs/dataDatabricksAwsBucketPolicy.csharp.md
index 9b0153740..fdf2ef727 100644
--- a/docs/dataDatabricksAwsBucketPolicy.csharp.md
+++ b/docs/dataDatabricksAwsBucketPolicy.csharp.md
@@ -292,6 +292,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ". |
---
@@ -355,6 +356,50 @@ DataDatabricksAwsBucketPolicy.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksAwsBucketPolicy.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksAwsBucketPolicy to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksAwsBucketPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_bucket_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsBucketPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsBucketPolicy.go.md b/docs/dataDatabricksAwsBucketPolicy.go.md
index 50c2e9c76..8efbdba5a 100644
--- a/docs/dataDatabricksAwsBucketPolicy.go.md
+++ b/docs/dataDatabricksAwsBucketPolicy.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsbucketpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsbucketpolicy"
datadatabricksawsbucketpolicy.NewDataDatabricksAwsBucketPolicy(scope Construct, id *string, config DataDatabricksAwsBucketPolicyConfig) DataDatabricksAwsBucketPolicy
```
@@ -292,13 +292,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsbucketpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsbucketpolicy"
datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicy_IsConstruct(x interface{}) *bool
```
@@ -330,7 +331,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsbucketpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsbucketpolicy"
datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicy_IsTerraformElement(x interface{}) *bool
```
@@ -344,7 +345,7 @@ datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicy_IsTerraformElement(x
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsbucketpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsbucketpolicy"
datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicy_IsTerraformDataSource(x interface{}) *bool
```
@@ -355,6 +356,50 @@ datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicy_IsTerraformDataSourc
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsbucketpolicy"
+
+datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicy_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksAwsBucketPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksAwsBucketPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_bucket_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsBucketPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -642,7 +687,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawsbucketpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawsbucketpolicy"
&datadatabricksawsbucketpolicy.DataDatabricksAwsBucketPolicyConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksAwsBucketPolicy.java.md b/docs/dataDatabricksAwsBucketPolicy.java.md
index 07e7141e6..ef896a620 100644
--- a/docs/dataDatabricksAwsBucketPolicy.java.md
+++ b/docs/dataDatabricksAwsBucketPolicy.java.md
@@ -399,6 +399,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ". |
---
@@ -462,6 +463,50 @@ DataDatabricksAwsBucketPolicy.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_aws_bucket_policy.DataDatabricksAwsBucketPolicy;
+
+DataDatabricksAwsBucketPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksAwsBucketPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksAwsBucketPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksAwsBucketPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_bucket_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsBucketPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsBucketPolicy.python.md b/docs/dataDatabricksAwsBucketPolicy.python.md
index f3c3d00ff..9abd23c69 100644
--- a/docs/dataDatabricksAwsBucketPolicy.python.md
+++ b/docs/dataDatabricksAwsBucketPolicy.python.md
@@ -422,6 +422,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ". |
---
@@ -491,6 +492,55 @@ dataDatabricksAwsBucketPolicy.DataDatabricksAwsBucketPolicy.is_terraform_data_so
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_aws_bucket_policy
+
+dataDatabricksAwsBucketPolicy.DataDatabricksAwsBucketPolicy.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksAwsBucketPolicy to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksAwsBucketPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_bucket_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsBucketPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsBucketPolicy.typescript.md b/docs/dataDatabricksAwsBucketPolicy.typescript.md
index 56839033b..46c2a8663 100644
--- a/docs/dataDatabricksAwsBucketPolicy.typescript.md
+++ b/docs/dataDatabricksAwsBucketPolicy.typescript.md
@@ -292,6 +292,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ". |
---
@@ -355,6 +356,50 @@ dataDatabricksAwsBucketPolicy.DataDatabricksAwsBucketPolicy.isTerraformDataSourc
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksAwsBucketPolicy } from '@cdktf/provider-databricks'
+
+dataDatabricksAwsBucketPolicy.DataDatabricksAwsBucketPolicy.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksAwsBucketPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksAwsBucketPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_bucket_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsBucketPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsCrossaccountPolicy.csharp.md b/docs/dataDatabricksAwsCrossaccountPolicy.csharp.md
index 26ccf506d..3b91e3cee 100644
--- a/docs/dataDatabricksAwsCrossaccountPolicy.csharp.md
+++ b/docs/dataDatabricksAwsCrossaccountPolicy.csharp.md
@@ -278,6 +278,7 @@ private void ResetPassRoles()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ DataDatabricksAwsCrossaccountPolicy.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksAwsCrossaccountPolicy.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksAwsCrossaccountPolicy to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksAwsCrossaccountPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_crossaccount_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsCrossaccountPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsCrossaccountPolicy.go.md b/docs/dataDatabricksAwsCrossaccountPolicy.go.md
index 8a8c54fd2..26e5c2380 100644
--- a/docs/dataDatabricksAwsCrossaccountPolicy.go.md
+++ b/docs/dataDatabricksAwsCrossaccountPolicy.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawscrossaccountpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawscrossaccountpolicy"
datadatabricksawscrossaccountpolicy.NewDataDatabricksAwsCrossaccountPolicy(scope Construct, id *string, config DataDatabricksAwsCrossaccountPolicyConfig) DataDatabricksAwsCrossaccountPolicy
```
@@ -278,13 +278,14 @@ func ResetPassRoles()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawscrossaccountpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawscrossaccountpolicy"
datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicy_IsConstruct(x interface{}) *bool
```
@@ -316,7 +317,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawscrossaccountpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawscrossaccountpolicy"
datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicy_IsTerraformElement(x interface{}) *bool
```
@@ -330,7 +331,7 @@ datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicy_IsTerraf
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawscrossaccountpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawscrossaccountpolicy"
datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicy_IsTerraformDataSource(x interface{}) *bool
```
@@ -341,6 +342,50 @@ datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicy_IsTerraf
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawscrossaccountpolicy"
+
+datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicy_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksAwsCrossaccountPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksAwsCrossaccountPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_crossaccount_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsCrossaccountPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -562,7 +607,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksawscrossaccountpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksawscrossaccountpolicy"
&datadatabricksawscrossaccountpolicy.DataDatabricksAwsCrossaccountPolicyConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksAwsCrossaccountPolicy.java.md b/docs/dataDatabricksAwsCrossaccountPolicy.java.md
index b8a167cf4..2d5b55d89 100644
--- a/docs/dataDatabricksAwsCrossaccountPolicy.java.md
+++ b/docs/dataDatabricksAwsCrossaccountPolicy.java.md
@@ -355,6 +355,7 @@ public void resetPassRoles()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ". |
---
@@ -418,6 +419,50 @@ DataDatabricksAwsCrossaccountPolicy.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_aws_crossaccount_policy.DataDatabricksAwsCrossaccountPolicy;
+
+DataDatabricksAwsCrossaccountPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksAwsCrossaccountPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksAwsCrossaccountPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksAwsCrossaccountPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_crossaccount_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsCrossaccountPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsCrossaccountPolicy.python.md b/docs/dataDatabricksAwsCrossaccountPolicy.python.md
index 3d0e268fe..a4f2a14c1 100644
--- a/docs/dataDatabricksAwsCrossaccountPolicy.python.md
+++ b/docs/dataDatabricksAwsCrossaccountPolicy.python.md
@@ -378,6 +378,7 @@ def reset_pass_roles() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ". |
---
@@ -447,6 +448,55 @@ dataDatabricksAwsCrossaccountPolicy.DataDatabricksAwsCrossaccountPolicy.is_terra
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_aws_crossaccount_policy
+
+dataDatabricksAwsCrossaccountPolicy.DataDatabricksAwsCrossaccountPolicy.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksAwsCrossaccountPolicy to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksAwsCrossaccountPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_crossaccount_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsCrossaccountPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksAwsCrossaccountPolicy.typescript.md b/docs/dataDatabricksAwsCrossaccountPolicy.typescript.md
index d35e52737..abc50472d 100644
--- a/docs/dataDatabricksAwsCrossaccountPolicy.typescript.md
+++ b/docs/dataDatabricksAwsCrossaccountPolicy.typescript.md
@@ -278,6 +278,7 @@ public resetPassRoles(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ dataDatabricksAwsCrossaccountPolicy.DataDatabricksAwsCrossaccountPolicy.isTerraf
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksAwsCrossaccountPolicy } from '@cdktf/provider-databricks'
+
+dataDatabricksAwsCrossaccountPolicy.DataDatabricksAwsCrossaccountPolicy.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksAwsCrossaccountPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksAwsCrossaccountPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/aws_crossaccount_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksAwsCrossaccountPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCatalogs.csharp.md b/docs/dataDatabricksCatalogs.csharp.md
index 4003b3b1d..014e8f168 100644
--- a/docs/dataDatabricksCatalogs.csharp.md
+++ b/docs/dataDatabricksCatalogs.csharp.md
@@ -278,6 +278,7 @@ private void ResetIds()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ DataDatabricksCatalogs.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksCatalogs.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksCatalogs to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksCatalogs that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/catalogs#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCatalogs to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCatalogs.go.md b/docs/dataDatabricksCatalogs.go.md
index a2cc01ec6..b140d7b15 100644
--- a/docs/dataDatabricksCatalogs.go.md
+++ b/docs/dataDatabricksCatalogs.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscatalogs"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscatalogs"
datadatabrickscatalogs.NewDataDatabricksCatalogs(scope Construct, id *string, config DataDatabricksCatalogsConfig) DataDatabricksCatalogs
```
@@ -278,13 +278,14 @@ func ResetIds()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscatalogs"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscatalogs"
datadatabrickscatalogs.DataDatabricksCatalogs_IsConstruct(x interface{}) *bool
```
@@ -316,7 +317,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscatalogs"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscatalogs"
datadatabrickscatalogs.DataDatabricksCatalogs_IsTerraformElement(x interface{}) *bool
```
@@ -330,7 +331,7 @@ datadatabrickscatalogs.DataDatabricksCatalogs_IsTerraformElement(x interface{})
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscatalogs"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscatalogs"
datadatabrickscatalogs.DataDatabricksCatalogs_IsTerraformDataSource(x interface{}) *bool
```
@@ -341,6 +342,50 @@ datadatabrickscatalogs.DataDatabricksCatalogs_IsTerraformDataSource(x interface{
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscatalogs"
+
+datadatabrickscatalogs.DataDatabricksCatalogs_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksCatalogs to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksCatalogs that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/catalogs#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCatalogs to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -551,7 +596,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscatalogs"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscatalogs"
&datadatabrickscatalogs.DataDatabricksCatalogsConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksCatalogs.java.md b/docs/dataDatabricksCatalogs.java.md
index 726c597a9..3003d56ba 100644
--- a/docs/dataDatabricksCatalogs.java.md
+++ b/docs/dataDatabricksCatalogs.java.md
@@ -355,6 +355,7 @@ public void resetIds()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ". |
---
@@ -418,6 +419,50 @@ DataDatabricksCatalogs.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_catalogs.DataDatabricksCatalogs;
+
+DataDatabricksCatalogs.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksCatalogs.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksCatalogs to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksCatalogs that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/catalogs#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCatalogs to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCatalogs.python.md b/docs/dataDatabricksCatalogs.python.md
index 7f079b6ae..2b8406a26 100644
--- a/docs/dataDatabricksCatalogs.python.md
+++ b/docs/dataDatabricksCatalogs.python.md
@@ -378,6 +378,7 @@ def reset_ids() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ". |
---
@@ -447,6 +448,55 @@ dataDatabricksCatalogs.DataDatabricksCatalogs.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_catalogs
+
+dataDatabricksCatalogs.DataDatabricksCatalogs.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksCatalogs to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksCatalogs that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/catalogs#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCatalogs to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCatalogs.typescript.md b/docs/dataDatabricksCatalogs.typescript.md
index 151a14784..c64c94a46 100644
--- a/docs/dataDatabricksCatalogs.typescript.md
+++ b/docs/dataDatabricksCatalogs.typescript.md
@@ -278,6 +278,7 @@ public resetIds(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ dataDatabricksCatalogs.DataDatabricksCatalogs.isTerraformDataSource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksCatalogs } from '@cdktf/provider-databricks'
+
+dataDatabricksCatalogs.DataDatabricksCatalogs.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksCatalogs to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksCatalogs that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/catalogs#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCatalogs to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCluster.csharp.md b/docs/dataDatabricksCluster.csharp.md
index 7af226edd..bb29b4155 100644
--- a/docs/dataDatabricksCluster.csharp.md
+++ b/docs/dataDatabricksCluster.csharp.md
@@ -305,6 +305,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ". |
---
@@ -368,6 +369,50 @@ DataDatabricksCluster.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksCluster.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksCluster to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksCluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCluster.go.md b/docs/dataDatabricksCluster.go.md
index bf9a52569..750d7bf2f 100644
--- a/docs/dataDatabricksCluster.go.md
+++ b/docs/dataDatabricksCluster.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksCluster(scope Construct, id *string, config DataDatabricksClusterConfig) DataDatabricksCluster
```
@@ -305,13 +305,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.DataDatabricksCluster_IsConstruct(x interface{}) *bool
```
@@ -343,7 +344,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.DataDatabricksCluster_IsTerraformElement(x interface{}) *bool
```
@@ -357,7 +358,7 @@ datadatabrickscluster.DataDatabricksCluster_IsTerraformElement(x interface{}) *b
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.DataDatabricksCluster_IsTerraformDataSource(x interface{}) *bool
```
@@ -368,6 +369,50 @@ datadatabrickscluster.DataDatabricksCluster_IsTerraformDataSource(x interface{})
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
+
+datadatabrickscluster.DataDatabricksCluster_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksCluster to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksCluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -622,34 +667,34 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfo {
DefaultTags: *map[string]*string,
SparkVersion: *string,
State: *string,
- Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoAutoscale,
+ Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoAutoscale,
AutoterminationMinutes: *f64,
- AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoAwsAttributes,
- AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoAzureAttributes,
+ AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoAwsAttributes,
+ AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoAzureAttributes,
ClusterCores: *f64,
ClusterId: *string,
- ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogConf,
- ClusterLogStatus: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogStatus,
+ ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogConf,
+ ClusterLogStatus: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogStatus,
ClusterMemoryMb: *f64,
ClusterName: *string,
ClusterSource: *string,
CreatorUserName: *string,
CustomTags: *map[string]*string,
DataSecurityMode: *string,
- DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoDockerImage,
- Driver: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoDriver,
+ DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoDockerImage,
+ Driver: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoDriver,
DriverInstancePoolId: *string,
DriverNodeTypeId: *string,
EnableElasticDisk: interface{},
EnableLocalDiskEncryption: interface{},
Executors: interface{},
- GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoGcpAttributes,
+ GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoGcpAttributes,
InitScripts: interface{},
InstancePoolId: *string,
JdbcPort: *f64,
@@ -667,7 +712,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri
StartTime: *f64,
StateMessage: *string,
TerminateTime: *f64,
- TerminationReason: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoTerminationReason,
+ TerminationReason: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoTerminationReason,
}
```
@@ -1264,7 +1309,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoAutoscale {
MaxWorkers: *f64,
@@ -1310,7 +1355,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoAwsAttributes {
Availability: *string,
@@ -1440,7 +1485,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoAzureAttributes {
Availability: *string,
@@ -1500,11 +1545,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoClusterLogConf {
- Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogConfDbfs,
- S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogConfS3,
+ Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogConfDbfs,
+ S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoClusterLogConfS3,
}
```
@@ -1550,7 +1595,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoClusterLogConfDbfs {
Destination: *string,
@@ -1582,7 +1627,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoClusterLogConfS3 {
Destination: *string,
@@ -1698,7 +1743,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoClusterLogStatus {
LastAttempted: *f64,
@@ -1744,11 +1789,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoDockerImage {
Url: *string,
- BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoDockerImageBasicAuth,
+ BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoDockerImageBasicAuth,
}
```
@@ -1792,7 +1837,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoDockerImageBasicAuth {
Password: *string,
@@ -1838,12 +1883,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoDriver {
HostPrivateIp: *string,
InstanceId: *string,
- NodeAwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoDriverNodeAwsAttributes,
+ NodeAwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoDriverNodeAwsAttributes,
NodeId: *string,
PrivateIp: *string,
PublicDns: *string,
@@ -1956,7 +2001,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoDriverNodeAwsAttributes {
IsSpot: interface{},
@@ -1988,12 +2033,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoExecutors {
HostPrivateIp: *string,
InstanceId: *string,
- NodeAwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoExecutorsNodeAwsAttributes,
+ NodeAwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoExecutorsNodeAwsAttributes,
NodeId: *string,
PrivateIp: *string,
PublicDns: *string,
@@ -2106,7 +2151,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoExecutorsNodeAwsAttributes {
IsSpot: interface{},
@@ -2138,7 +2183,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoGcpAttributes {
Availability: *string,
@@ -2240,16 +2285,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScripts {
- Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsAbfss,
- Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsDbfs,
- File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsFile,
- Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsGcs,
- S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsS3,
- Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsVolumes,
- Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsWorkspace,
+ Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsAbfss,
+ Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsDbfs,
+ File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsFile,
+ Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsGcs,
+ S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsS3,
+ Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsVolumes,
+ Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfoInitScriptsWorkspace,
}
```
@@ -2370,7 +2415,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsAbfss {
Destination: *string,
@@ -2402,7 +2447,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsDbfs {
Destination: *string,
@@ -2434,7 +2479,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsFile {
Destination: *string,
@@ -2466,7 +2511,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsGcs {
Destination: *string,
@@ -2498,7 +2543,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsS3 {
Destination: *string,
@@ -2614,7 +2659,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsVolumes {
Destination: *string,
@@ -2646,7 +2691,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoInitScriptsWorkspace {
Destination: *string,
@@ -2678,7 +2723,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterClusterInfoTerminationReason {
Code: *string,
@@ -2738,7 +2783,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
&datadatabrickscluster.DataDatabricksClusterConfig {
Connection: interface{},
@@ -2749,7 +2794,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri
Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider,
Provisioners: *[]interface{},
ClusterId: *string,
- ClusterInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksCluster.DataDatabricksClusterClusterInfo,
+ ClusterInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksCluster.DataDatabricksClusterClusterInfo,
ClusterName: *string,
Id: *string,
}
@@ -2903,7 +2948,7 @@ If you experience problems setting this value it might not be settable. Please t
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoAutoscaleOutputReference
```
@@ -3210,7 +3255,7 @@ func InternalValue() DataDatabricksClusterClusterInfoAutoscale
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoAwsAttributesOutputReference
```
@@ -3691,7 +3736,7 @@ func InternalValue() DataDatabricksClusterClusterInfoAwsAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoAzureAttributesOutputReference
```
@@ -4027,7 +4072,7 @@ func InternalValue() DataDatabricksClusterClusterInfoAzureAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoClusterLogConfDbfsOutputReference
```
@@ -4298,7 +4343,7 @@ func InternalValue() DataDatabricksClusterClusterInfoClusterLogConfDbfs
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoClusterLogConfOutputReference
```
@@ -4631,7 +4676,7 @@ func InternalValue() DataDatabricksClusterClusterInfoClusterLogConf
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoClusterLogConfS3OutputReference
```
@@ -5076,7 +5121,7 @@ func InternalValue() DataDatabricksClusterClusterInfoClusterLogConfS3
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoClusterLogStatusOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoClusterLogStatusOutputReference
```
@@ -5383,7 +5428,7 @@ func InternalValue() DataDatabricksClusterClusterInfoClusterLogStatus
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoDockerImageBasicAuthOutputReference
```
@@ -5676,7 +5721,7 @@ func InternalValue() DataDatabricksClusterClusterInfoDockerImageBasicAuth
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoDockerImageOutputReference
```
@@ -5989,7 +6034,7 @@ func InternalValue() DataDatabricksClusterClusterInfoDockerImage
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoDriverNodeAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoDriverNodeAwsAttributesOutputReference
```
@@ -6267,7 +6312,7 @@ func InternalValue() DataDatabricksClusterClusterInfoDriverNodeAwsAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoDriverOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoDriverOutputReference
```
@@ -6732,7 +6777,7 @@ func InternalValue() DataDatabricksClusterClusterInfoDriver
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoExecutorsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksClusterClusterInfoExecutorsList
```
@@ -6875,7 +6920,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoExecutorsNodeAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoExecutorsNodeAwsAttributesOutputReference
```
@@ -7153,7 +7198,7 @@ func InternalValue() DataDatabricksClusterClusterInfoExecutorsNodeAwsAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoExecutorsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksClusterClusterInfoExecutorsOutputReference
```
@@ -7636,7 +7681,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoGcpAttributesOutputReference
```
@@ -8059,7 +8104,7 @@ func InternalValue() DataDatabricksClusterClusterInfoGcpAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsAbfssOutputReference
```
@@ -8337,7 +8382,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsAbfss
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsDbfsOutputReference
```
@@ -8608,7 +8653,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsDbfs
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsFileOutputReference
```
@@ -8886,7 +8931,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsFile
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsGcsOutputReference
```
@@ -9164,7 +9209,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsGcs
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksClusterClusterInfoInitScriptsList
```
@@ -9307,7 +9352,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksClusterClusterInfoInitScriptsOutputReference
```
@@ -9868,7 +9913,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsS3OutputReference
```
@@ -10313,7 +10358,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsS3
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsVolumesOutputReference
```
@@ -10591,7 +10636,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsVolumes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoInitScriptsWorkspaceOutputReference
```
@@ -10869,7 +10914,7 @@ func InternalValue() DataDatabricksClusterClusterInfoInitScriptsWorkspace
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoOutputReference
```
@@ -12487,7 +12532,7 @@ func InternalValue() DataDatabricksClusterClusterInfo
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscluster"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscluster"
datadatabrickscluster.NewDataDatabricksClusterClusterInfoTerminationReasonOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksClusterClusterInfoTerminationReasonOutputReference
```
diff --git a/docs/dataDatabricksCluster.java.md b/docs/dataDatabricksCluster.java.md
index 387620480..fce624859 100644
--- a/docs/dataDatabricksCluster.java.md
+++ b/docs/dataDatabricksCluster.java.md
@@ -404,6 +404,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ". |
---
@@ -467,6 +468,50 @@ DataDatabricksCluster.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_cluster.DataDatabricksCluster;
+
+DataDatabricksCluster.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksCluster.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksCluster to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksCluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCluster.python.md b/docs/dataDatabricksCluster.python.md
index 576a52a9d..d908d98a7 100644
--- a/docs/dataDatabricksCluster.python.md
+++ b/docs/dataDatabricksCluster.python.md
@@ -831,6 +831,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ". |
---
@@ -900,6 +901,55 @@ dataDatabricksCluster.DataDatabricksCluster.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_cluster
+
+dataDatabricksCluster.DataDatabricksCluster.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksCluster to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksCluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCluster.typescript.md b/docs/dataDatabricksCluster.typescript.md
index 0aac8f692..5766819b6 100644
--- a/docs/dataDatabricksCluster.typescript.md
+++ b/docs/dataDatabricksCluster.typescript.md
@@ -305,6 +305,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ". |
---
@@ -368,6 +369,50 @@ dataDatabricksCluster.DataDatabricksCluster.isTerraformDataSource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksCluster } from '@cdktf/provider-databricks'
+
+dataDatabricksCluster.DataDatabricksCluster.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksCluster to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksCluster that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCluster to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusterPolicy.csharp.md b/docs/dataDatabricksClusterPolicy.csharp.md
index 930233e93..e39ec16f9 100644
--- a/docs/dataDatabricksClusterPolicy.csharp.md
+++ b/docs/dataDatabricksClusterPolicy.csharp.md
@@ -320,6 +320,7 @@ private void ResetPolicyFamilyId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ". |
---
@@ -383,6 +384,50 @@ DataDatabricksClusterPolicy.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksClusterPolicy.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksClusterPolicy to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusterPolicy.go.md b/docs/dataDatabricksClusterPolicy.go.md
index 9718dcca5..466387570 100644
--- a/docs/dataDatabricksClusterPolicy.go.md
+++ b/docs/dataDatabricksClusterPolicy.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusterpolicy"
datadatabricksclusterpolicy.NewDataDatabricksClusterPolicy(scope Construct, id *string, config DataDatabricksClusterPolicyConfig) DataDatabricksClusterPolicy
```
@@ -320,13 +320,14 @@ func ResetPolicyFamilyId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusterpolicy"
datadatabricksclusterpolicy.DataDatabricksClusterPolicy_IsConstruct(x interface{}) *bool
```
@@ -358,7 +359,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusterpolicy"
datadatabricksclusterpolicy.DataDatabricksClusterPolicy_IsTerraformElement(x interface{}) *bool
```
@@ -372,7 +373,7 @@ datadatabricksclusterpolicy.DataDatabricksClusterPolicy_IsTerraformElement(x int
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusterpolicy"
datadatabricksclusterpolicy.DataDatabricksClusterPolicy_IsTerraformDataSource(x interface{}) *bool
```
@@ -383,6 +384,50 @@ datadatabricksclusterpolicy.DataDatabricksClusterPolicy_IsTerraformDataSource(x
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusterpolicy"
+
+datadatabricksclusterpolicy.DataDatabricksClusterPolicy_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksClusterPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -725,7 +770,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusterpolicy"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusterpolicy"
&datadatabricksclusterpolicy.DataDatabricksClusterPolicyConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksClusterPolicy.java.md b/docs/dataDatabricksClusterPolicy.java.md
index 47f3d7066..fbaee497e 100644
--- a/docs/dataDatabricksClusterPolicy.java.md
+++ b/docs/dataDatabricksClusterPolicy.java.md
@@ -458,6 +458,7 @@ public void resetPolicyFamilyId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ". |
---
@@ -521,6 +522,50 @@ DataDatabricksClusterPolicy.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_cluster_policy.DataDatabricksClusterPolicy;
+
+DataDatabricksClusterPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksClusterPolicy.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksClusterPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusterPolicy.python.md b/docs/dataDatabricksClusterPolicy.python.md
index 10407e83c..b76d7c714 100644
--- a/docs/dataDatabricksClusterPolicy.python.md
+++ b/docs/dataDatabricksClusterPolicy.python.md
@@ -480,6 +480,7 @@ def reset_policy_family_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ". |
---
@@ -549,6 +550,55 @@ dataDatabricksClusterPolicy.DataDatabricksClusterPolicy.is_terraform_data_source
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_cluster_policy
+
+dataDatabricksClusterPolicy.DataDatabricksClusterPolicy.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksClusterPolicy to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusterPolicy.typescript.md b/docs/dataDatabricksClusterPolicy.typescript.md
index 50d297eb3..de1cf1f0e 100644
--- a/docs/dataDatabricksClusterPolicy.typescript.md
+++ b/docs/dataDatabricksClusterPolicy.typescript.md
@@ -320,6 +320,7 @@ public resetPolicyFamilyId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ". |
---
@@ -383,6 +384,50 @@ dataDatabricksClusterPolicy.DataDatabricksClusterPolicy.isTerraformDataSource(x:
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksClusterPolicy } from '@cdktf/provider-databricks'
+
+dataDatabricksClusterPolicy.DataDatabricksClusterPolicy.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksClusterPolicy to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksClusterPolicy that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/cluster_policy#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusterPolicy to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusters.csharp.md b/docs/dataDatabricksClusters.csharp.md
index 9cc106874..bba2d0255 100644
--- a/docs/dataDatabricksClusters.csharp.md
+++ b/docs/dataDatabricksClusters.csharp.md
@@ -278,6 +278,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ DataDatabricksClusters.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksClusters.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksClusters to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksClusters that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/clusters#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusters to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusters.go.md b/docs/dataDatabricksClusters.go.md
index c64cecc7b..7e543c547 100644
--- a/docs/dataDatabricksClusters.go.md
+++ b/docs/dataDatabricksClusters.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusters"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusters"
datadatabricksclusters.NewDataDatabricksClusters(scope Construct, id *string, config DataDatabricksClustersConfig) DataDatabricksClusters
```
@@ -278,13 +278,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusters"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusters"
datadatabricksclusters.DataDatabricksClusters_IsConstruct(x interface{}) *bool
```
@@ -316,7 +317,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusters"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusters"
datadatabricksclusters.DataDatabricksClusters_IsTerraformElement(x interface{}) *bool
```
@@ -330,7 +331,7 @@ datadatabricksclusters.DataDatabricksClusters_IsTerraformElement(x interface{})
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusters"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusters"
datadatabricksclusters.DataDatabricksClusters_IsTerraformDataSource(x interface{}) *bool
```
@@ -341,6 +342,50 @@ datadatabricksclusters.DataDatabricksClusters_IsTerraformDataSource(x interface{
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusters"
+
+datadatabricksclusters.DataDatabricksClusters_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksClusters to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksClusters that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/clusters#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusters to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -562,7 +607,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksclusters"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksclusters"
&datadatabricksclusters.DataDatabricksClustersConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksClusters.java.md b/docs/dataDatabricksClusters.java.md
index 7c8a99ab5..4def2f0d9 100644
--- a/docs/dataDatabricksClusters.java.md
+++ b/docs/dataDatabricksClusters.java.md
@@ -355,6 +355,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ". |
---
@@ -418,6 +419,50 @@ DataDatabricksClusters.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_clusters.DataDatabricksClusters;
+
+DataDatabricksClusters.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksClusters.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksClusters to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksClusters that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/clusters#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusters to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusters.python.md b/docs/dataDatabricksClusters.python.md
index 605e5e4a7..9265557ea 100644
--- a/docs/dataDatabricksClusters.python.md
+++ b/docs/dataDatabricksClusters.python.md
@@ -378,6 +378,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ". |
---
@@ -447,6 +448,55 @@ dataDatabricksClusters.DataDatabricksClusters.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_clusters
+
+dataDatabricksClusters.DataDatabricksClusters.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksClusters to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksClusters that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/clusters#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusters to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksClusters.typescript.md b/docs/dataDatabricksClusters.typescript.md
index 15c6686df..df20a0400 100644
--- a/docs/dataDatabricksClusters.typescript.md
+++ b/docs/dataDatabricksClusters.typescript.md
@@ -278,6 +278,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ dataDatabricksClusters.DataDatabricksClusters.isTerraformDataSource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksClusters } from '@cdktf/provider-databricks'
+
+dataDatabricksClusters.DataDatabricksClusters.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksClusters to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksClusters that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/clusters#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksClusters to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCurrentUser.csharp.md b/docs/dataDatabricksCurrentUser.csharp.md
index 791edb074..d6dbb7e06 100644
--- a/docs/dataDatabricksCurrentUser.csharp.md
+++ b/docs/dataDatabricksCurrentUser.csharp.md
@@ -271,6 +271,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ". |
---
@@ -334,6 +335,50 @@ DataDatabricksCurrentUser.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksCurrentUser.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksCurrentUser to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksCurrentUser that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/current_user#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCurrentUser to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCurrentUser.go.md b/docs/dataDatabricksCurrentUser.go.md
index cc9dcc75e..e7aa29aa4 100644
--- a/docs/dataDatabricksCurrentUser.go.md
+++ b/docs/dataDatabricksCurrentUser.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscurrentuser"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscurrentuser"
datadatabrickscurrentuser.NewDataDatabricksCurrentUser(scope Construct, id *string, config DataDatabricksCurrentUserConfig) DataDatabricksCurrentUser
```
@@ -271,13 +271,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscurrentuser"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscurrentuser"
datadatabrickscurrentuser.DataDatabricksCurrentUser_IsConstruct(x interface{}) *bool
```
@@ -309,7 +310,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscurrentuser"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscurrentuser"
datadatabrickscurrentuser.DataDatabricksCurrentUser_IsTerraformElement(x interface{}) *bool
```
@@ -323,7 +324,7 @@ datadatabrickscurrentuser.DataDatabricksCurrentUser_IsTerraformElement(x interfa
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscurrentuser"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscurrentuser"
datadatabrickscurrentuser.DataDatabricksCurrentUser_IsTerraformDataSource(x interface{}) *bool
```
@@ -334,6 +335,50 @@ datadatabrickscurrentuser.DataDatabricksCurrentUser_IsTerraformDataSource(x inte
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscurrentuser"
+
+datadatabrickscurrentuser.DataDatabricksCurrentUser_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksCurrentUser to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksCurrentUser that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/current_user#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCurrentUser to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -599,7 +644,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickscurrentuser"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickscurrentuser"
&datadatabrickscurrentuser.DataDatabricksCurrentUserConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksCurrentUser.java.md b/docs/dataDatabricksCurrentUser.java.md
index f0269a60f..18e38a892 100644
--- a/docs/dataDatabricksCurrentUser.java.md
+++ b/docs/dataDatabricksCurrentUser.java.md
@@ -338,6 +338,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ". |
---
@@ -401,6 +402,50 @@ DataDatabricksCurrentUser.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_current_user.DataDatabricksCurrentUser;
+
+DataDatabricksCurrentUser.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksCurrentUser.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksCurrentUser to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksCurrentUser that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/current_user#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCurrentUser to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCurrentUser.python.md b/docs/dataDatabricksCurrentUser.python.md
index 48ec28d9e..6cfe95c31 100644
--- a/docs/dataDatabricksCurrentUser.python.md
+++ b/docs/dataDatabricksCurrentUser.python.md
@@ -361,6 +361,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ". |
---
@@ -430,6 +431,55 @@ dataDatabricksCurrentUser.DataDatabricksCurrentUser.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_current_user
+
+dataDatabricksCurrentUser.DataDatabricksCurrentUser.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksCurrentUser to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksCurrentUser that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/current_user#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCurrentUser to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksCurrentUser.typescript.md b/docs/dataDatabricksCurrentUser.typescript.md
index 0f11c5a46..eca977339 100644
--- a/docs/dataDatabricksCurrentUser.typescript.md
+++ b/docs/dataDatabricksCurrentUser.typescript.md
@@ -271,6 +271,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ". |
---
@@ -334,6 +335,50 @@ dataDatabricksCurrentUser.DataDatabricksCurrentUser.isTerraformDataSource(x: any
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksCurrentUser } from '@cdktf/provider-databricks'
+
+dataDatabricksCurrentUser.DataDatabricksCurrentUser.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksCurrentUser to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksCurrentUser that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/current_user#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksCurrentUser to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFile.csharp.md b/docs/dataDatabricksDbfsFile.csharp.md
index 6b51e0ae8..041c3b31c 100644
--- a/docs/dataDatabricksDbfsFile.csharp.md
+++ b/docs/dataDatabricksDbfsFile.csharp.md
@@ -271,6 +271,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ". |
---
@@ -334,6 +335,50 @@ DataDatabricksDbfsFile.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksDbfsFile.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksDbfsFile to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksDbfsFile that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFile to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFile.go.md b/docs/dataDatabricksDbfsFile.go.md
index f5293725d..8425da332 100644
--- a/docs/dataDatabricksDbfsFile.go.md
+++ b/docs/dataDatabricksDbfsFile.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfile"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfile"
datadatabricksdbfsfile.NewDataDatabricksDbfsFile(scope Construct, id *string, config DataDatabricksDbfsFileConfig) DataDatabricksDbfsFile
```
@@ -271,13 +271,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfile"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfile"
datadatabricksdbfsfile.DataDatabricksDbfsFile_IsConstruct(x interface{}) *bool
```
@@ -309,7 +310,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfile"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfile"
datadatabricksdbfsfile.DataDatabricksDbfsFile_IsTerraformElement(x interface{}) *bool
```
@@ -323,7 +324,7 @@ datadatabricksdbfsfile.DataDatabricksDbfsFile_IsTerraformElement(x interface{})
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfile"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfile"
datadatabricksdbfsfile.DataDatabricksDbfsFile_IsTerraformDataSource(x interface{}) *bool
```
@@ -334,6 +335,50 @@ datadatabricksdbfsfile.DataDatabricksDbfsFile_IsTerraformDataSource(x interface{
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfile"
+
+datadatabricksdbfsfile.DataDatabricksDbfsFile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksDbfsFile to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksDbfsFile that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFile to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -588,7 +633,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfile"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfile"
&datadatabricksdbfsfile.DataDatabricksDbfsFileConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksDbfsFile.java.md b/docs/dataDatabricksDbfsFile.java.md
index 970af8064..f43c254f2 100644
--- a/docs/dataDatabricksDbfsFile.java.md
+++ b/docs/dataDatabricksDbfsFile.java.md
@@ -359,6 +359,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ". |
---
@@ -422,6 +423,50 @@ DataDatabricksDbfsFile.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_dbfs_file.DataDatabricksDbfsFile;
+
+DataDatabricksDbfsFile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksDbfsFile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksDbfsFile to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksDbfsFile that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFile to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFile.python.md b/docs/dataDatabricksDbfsFile.python.md
index 52c625941..e5ed5b442 100644
--- a/docs/dataDatabricksDbfsFile.python.md
+++ b/docs/dataDatabricksDbfsFile.python.md
@@ -381,6 +381,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ". |
---
@@ -450,6 +451,55 @@ dataDatabricksDbfsFile.DataDatabricksDbfsFile.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_dbfs_file
+
+dataDatabricksDbfsFile.DataDatabricksDbfsFile.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksDbfsFile to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksDbfsFile that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFile to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFile.typescript.md b/docs/dataDatabricksDbfsFile.typescript.md
index 326edda50..0897d3dd1 100644
--- a/docs/dataDatabricksDbfsFile.typescript.md
+++ b/docs/dataDatabricksDbfsFile.typescript.md
@@ -271,6 +271,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ". |
---
@@ -334,6 +335,50 @@ dataDatabricksDbfsFile.DataDatabricksDbfsFile.isTerraformDataSource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksDbfsFile } from '@cdktf/provider-databricks'
+
+dataDatabricksDbfsFile.DataDatabricksDbfsFile.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksDbfsFile to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksDbfsFile that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFile to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFilePaths.csharp.md b/docs/dataDatabricksDbfsFilePaths.csharp.md
index 24886f715..21dbb60aa 100644
--- a/docs/dataDatabricksDbfsFilePaths.csharp.md
+++ b/docs/dataDatabricksDbfsFilePaths.csharp.md
@@ -271,6 +271,7 @@ private void ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ". |
---
@@ -334,6 +335,50 @@ DataDatabricksDbfsFilePaths.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksDbfsFilePaths.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksDbfsFilePaths to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksDbfsFilePaths that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file_paths#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFilePaths to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFilePaths.go.md b/docs/dataDatabricksDbfsFilePaths.go.md
index 5a05c37ad..1df0cebc7 100644
--- a/docs/dataDatabricksDbfsFilePaths.go.md
+++ b/docs/dataDatabricksDbfsFilePaths.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
datadatabricksdbfsfilepaths.NewDataDatabricksDbfsFilePaths(scope Construct, id *string, config DataDatabricksDbfsFilePathsConfig) DataDatabricksDbfsFilePaths
```
@@ -271,13 +271,14 @@ func ResetId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePaths_IsConstruct(x interface{}) *bool
```
@@ -309,7 +310,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePaths_IsTerraformElement(x interface{}) *bool
```
@@ -323,7 +324,7 @@ datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePaths_IsTerraformElement(x int
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePaths_IsTerraformDataSource(x interface{}) *bool
```
@@ -334,6 +335,50 @@ datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePaths_IsTerraformDataSource(x
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
+
+datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePaths_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksDbfsFilePaths to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksDbfsFilePaths that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file_paths#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFilePaths to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -577,7 +622,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
&datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePathsConfig {
Connection: interface{},
@@ -724,7 +769,7 @@ If you experience problems setting this value it might not be settable. Please t
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
&datadatabricksdbfsfilepaths.DataDatabricksDbfsFilePathsPathListStruct {
@@ -739,7 +784,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
datadatabricksdbfsfilepaths.NewDataDatabricksDbfsFilePathsPathListStructList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksDbfsFilePathsPathListStructList
```
@@ -871,7 +916,7 @@ func Fqn() *string
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdbfsfilepaths"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdbfsfilepaths"
datadatabricksdbfsfilepaths.NewDataDatabricksDbfsFilePathsPathListStructOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksDbfsFilePathsPathListStructOutputReference
```
diff --git a/docs/dataDatabricksDbfsFilePaths.java.md b/docs/dataDatabricksDbfsFilePaths.java.md
index f25ca4379..2441dd668 100644
--- a/docs/dataDatabricksDbfsFilePaths.java.md
+++ b/docs/dataDatabricksDbfsFilePaths.java.md
@@ -359,6 +359,7 @@ public void resetId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ". |
---
@@ -422,6 +423,50 @@ DataDatabricksDbfsFilePaths.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_dbfs_file_paths.DataDatabricksDbfsFilePaths;
+
+DataDatabricksDbfsFilePaths.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksDbfsFilePaths.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksDbfsFilePaths to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksDbfsFilePaths that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file_paths#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFilePaths to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFilePaths.python.md b/docs/dataDatabricksDbfsFilePaths.python.md
index 221e4a29f..85c18dfd5 100644
--- a/docs/dataDatabricksDbfsFilePaths.python.md
+++ b/docs/dataDatabricksDbfsFilePaths.python.md
@@ -381,6 +381,7 @@ def reset_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ". |
---
@@ -450,6 +451,55 @@ dataDatabricksDbfsFilePaths.DataDatabricksDbfsFilePaths.is_terraform_data_source
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_dbfs_file_paths
+
+dataDatabricksDbfsFilePaths.DataDatabricksDbfsFilePaths.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksDbfsFilePaths to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksDbfsFilePaths that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file_paths#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFilePaths to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDbfsFilePaths.typescript.md b/docs/dataDatabricksDbfsFilePaths.typescript.md
index bb6ad7ee0..d9b0e63f2 100644
--- a/docs/dataDatabricksDbfsFilePaths.typescript.md
+++ b/docs/dataDatabricksDbfsFilePaths.typescript.md
@@ -271,6 +271,7 @@ public resetId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ". |
---
@@ -334,6 +335,50 @@ dataDatabricksDbfsFilePaths.DataDatabricksDbfsFilePaths.isTerraformDataSource(x:
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksDbfsFilePaths } from '@cdktf/provider-databricks'
+
+dataDatabricksDbfsFilePaths.DataDatabricksDbfsFilePaths.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksDbfsFilePaths to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksDbfsFilePaths that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/dbfs_file_paths#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDbfsFilePaths to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDirectory.csharp.md b/docs/dataDatabricksDirectory.csharp.md
index 6f5f5c70c..0904f3226 100644
--- a/docs/dataDatabricksDirectory.csharp.md
+++ b/docs/dataDatabricksDirectory.csharp.md
@@ -278,6 +278,7 @@ private void ResetObjectId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ DataDatabricksDirectory.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksDirectory.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksDirectory to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksDirectory that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/directory#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDirectory to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDirectory.go.md b/docs/dataDatabricksDirectory.go.md
index 4ae09be5b..fa73cbc67 100644
--- a/docs/dataDatabricksDirectory.go.md
+++ b/docs/dataDatabricksDirectory.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdirectory"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdirectory"
datadatabricksdirectory.NewDataDatabricksDirectory(scope Construct, id *string, config DataDatabricksDirectoryConfig) DataDatabricksDirectory
```
@@ -278,13 +278,14 @@ func ResetObjectId()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdirectory"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdirectory"
datadatabricksdirectory.DataDatabricksDirectory_IsConstruct(x interface{}) *bool
```
@@ -316,7 +317,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdirectory"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdirectory"
datadatabricksdirectory.DataDatabricksDirectory_IsTerraformElement(x interface{}) *bool
```
@@ -330,7 +331,7 @@ datadatabricksdirectory.DataDatabricksDirectory_IsTerraformElement(x interface{}
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdirectory"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdirectory"
datadatabricksdirectory.DataDatabricksDirectory_IsTerraformDataSource(x interface{}) *bool
```
@@ -341,6 +342,50 @@ datadatabricksdirectory.DataDatabricksDirectory_IsTerraformDataSource(x interfac
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdirectory"
+
+datadatabricksdirectory.DataDatabricksDirectory_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksDirectory to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksDirectory that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/directory#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDirectory to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -573,7 +618,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksdirectory"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksdirectory"
&datadatabricksdirectory.DataDatabricksDirectoryConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksDirectory.java.md b/docs/dataDatabricksDirectory.java.md
index 449987d38..26910c9f5 100644
--- a/docs/dataDatabricksDirectory.java.md
+++ b/docs/dataDatabricksDirectory.java.md
@@ -365,6 +365,7 @@ public void resetObjectId()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ". |
---
@@ -428,6 +429,50 @@ DataDatabricksDirectory.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_directory.DataDatabricksDirectory;
+
+DataDatabricksDirectory.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksDirectory.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksDirectory to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksDirectory that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/directory#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDirectory to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDirectory.python.md b/docs/dataDatabricksDirectory.python.md
index 038c810d8..d171d6362 100644
--- a/docs/dataDatabricksDirectory.python.md
+++ b/docs/dataDatabricksDirectory.python.md
@@ -388,6 +388,7 @@ def reset_object_id() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ". |
---
@@ -457,6 +458,55 @@ dataDatabricksDirectory.DataDatabricksDirectory.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_directory
+
+dataDatabricksDirectory.DataDatabricksDirectory.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksDirectory to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksDirectory that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/directory#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDirectory to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksDirectory.typescript.md b/docs/dataDatabricksDirectory.typescript.md
index 2e860362c..80440ab1b 100644
--- a/docs/dataDatabricksDirectory.typescript.md
+++ b/docs/dataDatabricksDirectory.typescript.md
@@ -278,6 +278,7 @@ public resetObjectId(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ". |
---
@@ -341,6 +342,50 @@ dataDatabricksDirectory.DataDatabricksDirectory.isTerraformDataSource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksDirectory } from '@cdktf/provider-databricks'
+
+dataDatabricksDirectory.DataDatabricksDirectory.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksDirectory to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksDirectory that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/directory#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksDirectory to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksGroup.csharp.md b/docs/dataDatabricksGroup.csharp.md
index 02bfde1ad..e16f84795 100644
--- a/docs/dataDatabricksGroup.csharp.md
+++ b/docs/dataDatabricksGroup.csharp.md
@@ -362,6 +362,7 @@ private void ResetWorkspaceAccess()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ". |
---
@@ -425,6 +426,50 @@ DataDatabricksGroup.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksGroup.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksGroup to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksGroup that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/group#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksGroup to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksGroup.go.md b/docs/dataDatabricksGroup.go.md
index b89314d9e..3e716be10 100644
--- a/docs/dataDatabricksGroup.go.md
+++ b/docs/dataDatabricksGroup.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksgroup"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksgroup"
datadatabricksgroup.NewDataDatabricksGroup(scope Construct, id *string, config DataDatabricksGroupConfig) DataDatabricksGroup
```
@@ -362,13 +362,14 @@ func ResetWorkspaceAccess()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksgroup"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksgroup"
datadatabricksgroup.DataDatabricksGroup_IsConstruct(x interface{}) *bool
```
@@ -400,7 +401,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksgroup"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksgroup"
datadatabricksgroup.DataDatabricksGroup_IsTerraformElement(x interface{}) *bool
```
@@ -414,7 +415,7 @@ datadatabricksgroup.DataDatabricksGroup_IsTerraformElement(x interface{}) *bool
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksgroup"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksgroup"
datadatabricksgroup.DataDatabricksGroup_IsTerraformDataSource(x interface{}) *bool
```
@@ -425,6 +426,50 @@ datadatabricksgroup.DataDatabricksGroup_IsTerraformDataSource(x interface{}) *bo
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksgroup"
+
+datadatabricksgroup.DataDatabricksGroup_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksGroup to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksGroup that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/group#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksGroup to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -921,7 +966,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksgroup"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksgroup"
&datadatabricksgroup.DataDatabricksGroupConfig {
Connection: interface{},
diff --git a/docs/dataDatabricksGroup.java.md b/docs/dataDatabricksGroup.java.md
index 542ba6d22..f6502a667 100644
--- a/docs/dataDatabricksGroup.java.md
+++ b/docs/dataDatabricksGroup.java.md
@@ -574,6 +574,7 @@ public void resetWorkspaceAccess()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ". |
---
@@ -637,6 +638,50 @@ DataDatabricksGroup.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_group.DataDatabricksGroup;
+
+DataDatabricksGroup.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksGroup.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksGroup to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksGroup that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/group#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksGroup to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksGroup.python.md b/docs/dataDatabricksGroup.python.md
index dbc52e1f9..10aa22814 100644
--- a/docs/dataDatabricksGroup.python.md
+++ b/docs/dataDatabricksGroup.python.md
@@ -592,6 +592,7 @@ def reset_workspace_access() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ". |
---
@@ -661,6 +662,55 @@ dataDatabricksGroup.DataDatabricksGroup.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_group
+
+dataDatabricksGroup.DataDatabricksGroup.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksGroup to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksGroup that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/group#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksGroup to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksGroup.typescript.md b/docs/dataDatabricksGroup.typescript.md
index 4a3853bb5..4a25d6ccb 100644
--- a/docs/dataDatabricksGroup.typescript.md
+++ b/docs/dataDatabricksGroup.typescript.md
@@ -362,6 +362,7 @@ public resetWorkspaceAccess(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ". |
---
@@ -425,6 +426,50 @@ dataDatabricksGroup.DataDatabricksGroup.isTerraformDataSource(x: any)
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksGroup } from '@cdktf/provider-databricks'
+
+dataDatabricksGroup.DataDatabricksGroup.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksGroup to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksGroup that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/group#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksGroup to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksInstancePool.csharp.md b/docs/dataDatabricksInstancePool.csharp.md
index 16c061939..ecaf21c76 100644
--- a/docs/dataDatabricksInstancePool.csharp.md
+++ b/docs/dataDatabricksInstancePool.csharp.md
@@ -291,6 +291,7 @@ private void ResetPoolInfo()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ". |
---
@@ -354,6 +355,50 @@ DataDatabricksInstancePool.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksInstancePool.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksInstancePool to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksInstancePool that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/instance_pool#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksInstancePool to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksInstancePool.go.md b/docs/dataDatabricksInstancePool.go.md
index 11284747e..27b857f8a 100644
--- a/docs/dataDatabricksInstancePool.go.md
+++ b/docs/dataDatabricksInstancePool.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePool(scope Construct, id *string, config DataDatabricksInstancePoolConfig) DataDatabricksInstancePool
```
@@ -291,13 +291,14 @@ func ResetPoolInfo()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.DataDatabricksInstancePool_IsConstruct(x interface{}) *bool
```
@@ -329,7 +330,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.DataDatabricksInstancePool_IsTerraformElement(x interface{}) *bool
```
@@ -343,7 +344,7 @@ datadatabricksinstancepool.DataDatabricksInstancePool_IsTerraformElement(x inter
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.DataDatabricksInstancePool_IsTerraformDataSource(x interface{}) *bool
```
@@ -354,6 +355,50 @@ datadatabricksinstancepool.DataDatabricksInstancePool_IsTerraformDataSource(x in
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
+
+datadatabricksinstancepool.DataDatabricksInstancePool_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* github.com/aws/constructs-go/constructs/v10.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* *string
+
+The construct id used in the generated config for the DataDatabricksInstancePool to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* *string
+
+The id of the existing DataDatabricksInstancePool that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/instance_pool#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksInstancePool to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
@@ -586,7 +631,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolConfig {
Connection: interface{},
@@ -598,7 +643,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri
Provisioners: *[]interface{},
Name: *string,
Id: *string,
- PoolInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfo,
+ PoolInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfo,
}
```
@@ -735,18 +780,18 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfo {
IdleInstanceAutoterminationMinutes: *f64,
InstancePoolName: *string,
- AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoAwsAttributes,
- AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoAzureAttributes,
+ AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoAwsAttributes,
+ AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoAzureAttributes,
CustomTags: *map[string]*string,
DefaultTags: *map[string]*string,
- DiskSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoDiskSpec,
+ DiskSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoDiskSpec,
EnableElasticDisk: interface{},
- GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoGcpAttributes,
+ GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoGcpAttributes,
InstancePoolFleetAttributes: interface{},
InstancePoolId: *string,
MaxCapacity: *f64,
@@ -755,7 +800,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri
PreloadedDockerImage: interface{},
PreloadedSparkVersions: *[]*string,
State: *string,
- Stats: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoStats,
+ Stats: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoStats,
}
```
@@ -1019,7 +1064,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoAwsAttributes {
Availability: *string,
@@ -1079,7 +1124,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoAzureAttributes {
Availability: *string,
@@ -1125,12 +1170,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoDiskSpec {
DiskCount: *f64,
DiskSize: *f64,
- DiskType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoDiskSpecDiskType,
+ DiskType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoDiskSpecDiskType,
}
```
@@ -1187,7 +1232,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoDiskSpecDiskType {
AzureDiskVolumeType: *string,
@@ -1233,7 +1278,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoGcpAttributes {
GcpAvailability: *string,
@@ -1279,12 +1324,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributes {
LaunchTemplateOverride: interface{},
- FleetOnDemandOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetOnDemandOption,
- FleetSpotOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetSpotOption,
+ FleetOnDemandOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetOnDemandOption,
+ FleetSpotOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetSpotOption,
}
```
@@ -1345,7 +1390,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetOnDemandOption {
AllocationStrategy: *string,
@@ -1391,7 +1436,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetSpotOption {
AllocationStrategy: *string,
@@ -1437,7 +1482,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesLaunchTemplateOverride {
AvailabilityZone: *string,
@@ -1483,11 +1528,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoPreloadedDockerImage {
Url: *string,
- BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoPreloadedDockerImageBasicAuth,
+ BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksInstancePool.DataDatabricksInstancePoolPoolInfoPreloadedDockerImageBasicAuth,
}
```
@@ -1531,7 +1576,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoPreloadedDockerImageBasicAuth {
Password: *string,
@@ -1577,7 +1622,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
&datadatabricksinstancepool.DataDatabricksInstancePoolPoolInfoStats {
IdleCount: *f64,
@@ -1653,7 +1698,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoAwsAttributesOutputReference
```
@@ -1989,7 +2034,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoAwsAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoAzureAttributesOutputReference
```
@@ -2296,7 +2341,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoAzureAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoDiskSpecDiskTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoDiskSpecDiskTypeOutputReference
```
@@ -2603,7 +2648,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoDiskSpecDiskType
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoDiskSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoDiskSpecOutputReference
```
@@ -2952,7 +2997,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoDiskSpec
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoGcpAttributesOutputReference
```
@@ -3259,7 +3304,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoGcpAttributes
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetOnDemandOptionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetOnDemandOptionOutputReference
```
@@ -3559,7 +3604,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttribut
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetSpotOptionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesFleetSpotOptionOutputReference
```
@@ -3859,7 +3904,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttribut
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesLaunchTemplateOverrideList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesLaunchTemplateOverrideList
```
@@ -4002,7 +4047,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesLaunchTemplateOverrideOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesLaunchTemplateOverrideOutputReference
```
@@ -4313,7 +4358,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesList
```
@@ -4456,7 +4501,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksInstancePoolPoolInfoInstancePoolFleetAttributesOutputReference
```
@@ -4842,7 +4887,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoOutputReference
```
@@ -5690,7 +5735,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfo
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoPreloadedDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoPreloadedDockerImageBasicAuthOutputReference
```
@@ -5983,7 +6028,7 @@ func InternalValue() DataDatabricksInstancePoolPoolInfoPreloadedDockerImageBasic
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoPreloadedDockerImageList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksInstancePoolPoolInfoPreloadedDockerImageList
```
@@ -6126,7 +6171,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoPreloadedDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksInstancePoolPoolInfoPreloadedDockerImageOutputReference
```
@@ -6457,7 +6502,7 @@ func InternalValue() interface{}
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksinstancepool"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksinstancepool"
datadatabricksinstancepool.NewDataDatabricksInstancePoolPoolInfoStatsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksInstancePoolPoolInfoStatsOutputReference
```
diff --git a/docs/dataDatabricksInstancePool.java.md b/docs/dataDatabricksInstancePool.java.md
index 8aa177b44..5cd7459a9 100644
--- a/docs/dataDatabricksInstancePool.java.md
+++ b/docs/dataDatabricksInstancePool.java.md
@@ -380,6 +380,7 @@ public void resetPoolInfo()
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ". |
---
@@ -443,6 +444,50 @@ DataDatabricksInstancePool.isTerraformDataSource(java.lang.Object x)
---
+##### `generateConfigForImport`
+
+```java
+import com.hashicorp.cdktf.providers.databricks.data_databricks_instance_pool.DataDatabricksInstancePool;
+
+DataDatabricksInstancePool.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksInstancePool.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider)
+```
+
+Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* software.constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* java.lang.String
+
+The construct id used in the generated config for the DataDatabricksInstancePool to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* java.lang.String
+
+The id of the existing DataDatabricksInstancePool that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/instance_pool#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* com.hashicorp.cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksInstancePool to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksInstancePool.python.md b/docs/dataDatabricksInstancePool.python.md
index 3bd91189e..8e64f73f7 100644
--- a/docs/dataDatabricksInstancePool.python.md
+++ b/docs/dataDatabricksInstancePool.python.md
@@ -574,6 +574,7 @@ def reset_pool_info() -> None
| is_construct
| Checks if `x` is a construct. |
| is_terraform_element
| *No description.* |
| is_terraform_data_source
| *No description.* |
+| generate_config_for_import
| Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ". |
---
@@ -643,6 +644,55 @@ dataDatabricksInstancePool.DataDatabricksInstancePool.is_terraform_data_source(
---
+##### `generate_config_for_import`
+
+```python
+from cdktf_cdktf_provider_databricks import data_databricks_instance_pool
+
+dataDatabricksInstancePool.DataDatabricksInstancePool.generate_config_for_import(
+ scope: Construct,
+ import_to_id: str,
+ import_from_id: str,
+ provider: TerraformProvider = None
+)
+```
+
+Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `import_to_id`Required
+
+- *Type:* str
+
+The construct id used in the generated config for the DataDatabricksInstancePool to import.
+
+---
+
+###### `import_from_id`Required
+
+- *Type:* str
+
+The id of the existing DataDatabricksInstancePool that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/instance_pool#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksInstancePool to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksInstancePool.typescript.md b/docs/dataDatabricksInstancePool.typescript.md
index 9cbf3f155..7e703e926 100644
--- a/docs/dataDatabricksInstancePool.typescript.md
+++ b/docs/dataDatabricksInstancePool.typescript.md
@@ -291,6 +291,7 @@ public resetPoolInfo(): void
| isConstruct
| Checks if `x` is a construct. |
| isTerraformElement
| *No description.* |
| isTerraformDataSource
| *No description.* |
+| generateConfigForImport
| Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ". |
---
@@ -354,6 +355,50 @@ dataDatabricksInstancePool.DataDatabricksInstancePool.isTerraformDataSource(x: a
---
+##### `generateConfigForImport`
+
+```typescript
+import { dataDatabricksInstancePool } from '@cdktf/provider-databricks'
+
+dataDatabricksInstancePool.DataDatabricksInstancePool.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
+```
+
+Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan ".
+
+###### `scope`Required
+
+- *Type:* constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `importToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksInstancePool to import.
+
+---
+
+###### `importFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksInstancePool that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/instance_pool#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `provider`Optional
+
+- *Type:* cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksInstancePool to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksJob.csharp.md b/docs/dataDatabricksJob.csharp.md
index 038f24ae2..df9d7b8a1 100644
--- a/docs/dataDatabricksJob.csharp.md
+++ b/docs/dataDatabricksJob.csharp.md
@@ -312,6 +312,7 @@ private void ResetName()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksJob resource upon running "cdktf plan ". |
---
@@ -375,6 +376,50 @@ DataDatabricksJob.IsTerraformDataSource(object X);
---
+##### `GenerateConfigForImport`
+
+```csharp
+using HashiCorp.Cdktf.Providers.Databricks;
+
+DataDatabricksJob.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
+```
+
+Generates CDKTF code for importing a DataDatabricksJob resource upon running "cdktf plan ".
+
+###### `Scope`Required
+
+- *Type:* Constructs.Construct
+
+The scope in which to define this construct.
+
+---
+
+###### `ImportToId`Required
+
+- *Type:* string
+
+The construct id used in the generated config for the DataDatabricksJob to import.
+
+---
+
+###### `ImportFromId`Required
+
+- *Type:* string
+
+The id of the existing DataDatabricksJob that should be imported.
+
+Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/job#import import section} in the documentation of this resource for the id to use
+
+---
+
+###### `Provider`Optional
+
+- *Type:* HashiCorp.Cdktf.TerraformProvider
+
+? Optional instance of the provider where the DataDatabricksJob to import is found.
+
+---
+
#### Properties
| **Name** | **Type** | **Description** |
diff --git a/docs/dataDatabricksJob.go.md b/docs/dataDatabricksJob.go.md
index 848226a37..bc439d579 100644
--- a/docs/dataDatabricksJob.go.md
+++ b/docs/dataDatabricksJob.go.md
@@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/databricks/databrick
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob"
datadatabricksjob.NewDataDatabricksJob(scope Construct, id *string, config DataDatabricksJobConfig) DataDatabricksJob
```
@@ -312,13 +312,14 @@ func ResetName()
| IsConstruct
| Checks if `x` is a construct. |
| IsTerraformElement
| *No description.* |
| IsTerraformDataSource
| *No description.* |
+| GenerateConfigForImport
| Generates CDKTF code for importing a DataDatabricksJob resource upon running "cdktf plan ". |
---
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob"
datadatabricksjob.DataDatabricksJob_IsConstruct(x interface{}) *bool
```
@@ -350,7 +351,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob"
datadatabricksjob.DataDatabricksJob_IsTerraformElement(x interface{}) *bool
```
@@ -364,7 +365,7 @@ datadatabricksjob.DataDatabricksJob_IsTerraformElement(x interface{}) *bool
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob"
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob"
datadatabricksjob.DataDatabricksJob_IsTerraformDataSource(x interface{}) *bool
```
@@ -375,6 +376,50 @@ datadatabricksjob.DataDatabricksJob_IsTerraformDataSource(x interface{}) *bool
---
+##### `GenerateConfigForImport`
+
+```go
+import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob"
+
+datadatabricksjob.DataDatabricksJob_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
+```
+
+Generates CDKTF code for importing a DataDatabricksJob resource upon running "cdktf plan ".
+
+###### `scope`