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`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 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:* github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider + +? Optional instance of the provider where the DataDatabricksJob to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -651,7 +696,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobConfig { Connection: interface{}, @@ -664,7 +709,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri Id: *string, JobId: *string, JobName: *string, - JobSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettings, + JobSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettings, Name: *string, } ``` @@ -828,14 +873,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettings { CreatedTime: *f64, CreatorUserName: *string, JobId: *f64, RunAsUserName: *string, - Settings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettings, + Settings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettings, } ``` @@ -918,42 +963,42 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettings { Compute: interface{}, - Continuous: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsContinuous, - DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsDbtTask, - EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsEmailNotifications, + Continuous: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsContinuous, + DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsDbtTask, + EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsEmailNotifications, ExistingClusterId: *string, Format: *string, - GitSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsGitSource, - Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsHealth, + GitSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsGitSource, + Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsHealth, JobCluster: interface{}, Library: interface{}, MaxConcurrentRuns: *f64, MaxRetries: *f64, MinRetryIntervalMillis: *f64, Name: *string, - NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewCluster, - NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNotebookTask, - NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNotificationSettings, + NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewCluster, + NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNotebookTask, + NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNotificationSettings, Parameter: interface{}, - PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsPipelineTask, - PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsPythonWheelTask, - Queue: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsQueue, + PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsPipelineTask, + PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsPythonWheelTask, + Queue: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsQueue, RetryOnTimeout: interface{}, - RunAs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsRunAs, - RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsRunJobTask, - Schedule: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSchedule, - SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSparkJarTask, - SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSparkPythonTask, - SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSparkSubmitTask, + RunAs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsRunAs, + RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsRunJobTask, + Schedule: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSchedule, + SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSparkJarTask, + SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSparkPythonTask, + SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsSparkSubmitTask, Tags: *map[string]*string, Task: interface{}, TimeoutSeconds: *f64, - Trigger: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTrigger, - WebhookNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsWebhookNotifications, + Trigger: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTrigger, + WebhookNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsWebhookNotifications, } ``` @@ -1446,11 +1491,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsCompute { ComputeKey: *string, - Spec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsComputeSpec, + Spec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsComputeSpec, } ``` @@ -1494,7 +1539,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsComputeSpec { Kind: *string, @@ -1526,7 +1571,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsContinuous { PauseStatus: *string, @@ -1558,7 +1603,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsDbtTask { Commands: *[]*string, @@ -1660,7 +1705,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsEmailNotifications { AlertOnLastAttempt: interface{}, @@ -1762,13 +1807,13 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsGitSource { Url: *string, Branch: *string, Commit: *string, - JobSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsGitSourceJobSource, + JobSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsGitSourceJobSource, Provider: *string, Tag: *string, } @@ -1866,7 +1911,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsGitSourceJobSource { ImportFromGitBranch: *string, @@ -1926,7 +1971,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsHealth { Rules: interface{}, @@ -1960,7 +2005,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsHealthRules { Metric: *string, @@ -2020,11 +2065,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobCluster { JobClusterKey: *string, - NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewCluster, + NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewCluster, } ``` @@ -2068,28 +2113,28 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewCluster { NumWorkers: *f64, SparkVersion: *string, ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAutoscale, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAutoscale, AutoterminationMinutes: *f64, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAzureAttributes, ClusterId: *string, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConf, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConf, ClusterMountInfo: interface{}, ClusterName: *string, CustomTags: *map[string]*string, DataSecurityMode: *string, - DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImage, + DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImage, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableElasticDisk: interface{}, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterGcpAttributes, IdempotencyToken: *string, InitScripts: interface{}, InstancePoolId: *string, @@ -2100,7 +2145,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri SparkConf: *map[string]*string, SparkEnvVars: *map[string]*string, SshPublicKeys: *[]*string, - WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadType, + WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadType, } ``` @@ -2524,7 +2569,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAutoscale { MaxWorkers: *f64, @@ -2570,7 +2615,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAwsAttributes { Availability: *string, @@ -2700,7 +2745,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAzureAttributes { Availability: *string, @@ -2760,11 +2805,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3, } ``` @@ -2810,7 +2855,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfs { Destination: *string, @@ -2842,7 +2887,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3 { Destination: *string, @@ -2958,11 +3003,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo { LocalMountDirPath: *string, - NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo, + NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo, RemoteMountDirPath: *string, } ``` @@ -3020,7 +3065,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo { ServerAddress: *string, @@ -3066,11 +3111,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuth, } ``` @@ -3114,7 +3159,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuth { Password: *string, @@ -3160,7 +3205,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterGcpAttributes { Availability: *string, @@ -3262,16 +3307,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsWorkspace, } ``` @@ -3392,7 +3437,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsAbfss { Destination: *string, @@ -3424,7 +3469,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsDbfs { Destination: *string, @@ -3456,7 +3501,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsFile { Destination: *string, @@ -3488,7 +3533,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsGcs { Destination: *string, @@ -3520,7 +3565,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsS3 { Destination: *string, @@ -3636,7 +3681,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsVolumes { Destination: *string, @@ -3668,7 +3713,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsWorkspace { Destination: *string, @@ -3700,10 +3745,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadType { - Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClients, + Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClients, } ``` @@ -3734,7 +3779,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClients { Jobs: interface{}, @@ -3780,14 +3825,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsLibrary { - Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsLibraryCran, + Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsLibraryCran, Egg: *string, Jar: *string, - Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsLibraryMaven, - Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsLibraryPypi, + Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsLibraryMaven, + Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsLibraryPypi, Whl: *string, } ``` @@ -3888,7 +3933,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsLibraryCran { Package: *string, @@ -3934,7 +3979,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsLibraryMaven { Coordinates: *string, @@ -3994,7 +4039,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsLibraryPypi { Package: *string, @@ -4040,28 +4085,28 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewCluster { NumWorkers: *f64, SparkVersion: *string, ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterAutoscale, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterAutoscale, AutoterminationMinutes: *f64, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterAzureAttributes, ClusterId: *string, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConf, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConf, ClusterMountInfo: interface{}, ClusterName: *string, CustomTags: *map[string]*string, DataSecurityMode: *string, - DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterDockerImage, + DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterDockerImage, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableElasticDisk: interface{}, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterGcpAttributes, IdempotencyToken: *string, InitScripts: interface{}, InstancePoolId: *string, @@ -4072,7 +4117,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri SparkConf: *map[string]*string, SparkEnvVars: *map[string]*string, SshPublicKeys: *[]*string, - WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterWorkloadType, + WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterWorkloadType, } ``` @@ -4496,7 +4541,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterAutoscale { MaxWorkers: *f64, @@ -4542,7 +4587,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterAwsAttributes { Availability: *string, @@ -4672,7 +4717,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterAzureAttributes { Availability: *string, @@ -4732,11 +4777,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfS3, } ``` @@ -4782,7 +4827,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfDbfs { Destination: *string, @@ -4814,7 +4859,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfS3 { Destination: *string, @@ -4930,11 +4975,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfo { LocalMountDirPath: *string, - NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfo, + NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfo, RemoteMountDirPath: *string, } ``` @@ -4992,7 +5037,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfo { ServerAddress: *string, @@ -5038,11 +5083,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterDockerImageBasicAuth, } ``` @@ -5086,7 +5131,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterDockerImageBasicAuth { Password: *string, @@ -5132,7 +5177,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterGcpAttributes { Availability: *string, @@ -5234,16 +5279,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsWorkspace, } ``` @@ -5364,7 +5409,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsAbfss { Destination: *string, @@ -5396,7 +5441,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsDbfs { Destination: *string, @@ -5428,7 +5473,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsFile { Destination: *string, @@ -5460,7 +5505,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsGcs { Destination: *string, @@ -5492,7 +5537,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsS3 { Destination: *string, @@ -5608,7 +5653,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsVolumes { Destination: *string, @@ -5640,7 +5685,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsWorkspace { Destination: *string, @@ -5672,10 +5717,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterWorkloadType { - Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeClients, + Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeClients, } ``` @@ -5706,7 +5751,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeClients { Jobs: interface{}, @@ -5752,7 +5797,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNotebookTask { NotebookPath: *string, @@ -5812,7 +5857,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsNotificationSettings { NoAlertForCanceledRuns: interface{}, @@ -5858,7 +5903,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsParameter { Default: *string, @@ -5904,7 +5949,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsPipelineTask { PipelineId: *string, @@ -5950,7 +5995,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsPythonWheelTask { EntryPoint: *string, @@ -6024,7 +6069,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsQueue { Enabled: interface{}, @@ -6056,7 +6101,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsRunAs { ServicePrincipalName: *string, @@ -6102,7 +6147,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsRunJobTask { JobId: *f64, @@ -6148,7 +6193,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsSchedule { QuartzCronExpression: *string, @@ -6208,7 +6253,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsSparkJarTask { JarUri: *string, @@ -6268,7 +6313,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsSparkPythonTask { PythonFile: *string, @@ -6328,7 +6373,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsSparkSubmitTask { Parameters: *[]*string, @@ -6360,33 +6405,33 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTask { ComputeKey: *string, - ConditionTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskConditionTask, - DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskDbtTask, + ConditionTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskConditionTask, + DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskDbtTask, DependsOn: interface{}, Description: *string, - EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskEmailNotifications, + EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskEmailNotifications, ExistingClusterId: *string, - Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskHealth, + Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskHealth, JobClusterKey: *string, Library: interface{}, MaxRetries: *f64, MinRetryIntervalMillis: *f64, - NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewCluster, - NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNotebookTask, - NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNotificationSettings, - PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskPipelineTask, - PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskPythonWheelTask, + NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewCluster, + NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNotebookTask, + NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNotificationSettings, + PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskPipelineTask, + PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskPythonWheelTask, RetryOnTimeout: interface{}, RunIf: *string, - RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskRunJobTask, - SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSparkJarTask, - SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSparkPythonTask, - SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSparkSubmitTask, - SqlTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTask, + RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskRunJobTask, + SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSparkJarTask, + SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSparkPythonTask, + SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSparkSubmitTask, + SqlTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTask, TaskKey: *string, TimeoutSeconds: *f64, } @@ -6774,7 +6819,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskConditionTask { Left: *string, @@ -6834,7 +6879,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskDbtTask { Commands: *[]*string, @@ -6936,7 +6981,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskDependsOn { TaskKey: *string, @@ -6982,7 +7027,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskEmailNotifications { AlertOnLastAttempt: interface{}, @@ -7084,7 +7129,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskHealth { Rules: interface{}, @@ -7118,7 +7163,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskHealthRules { Metric: *string, @@ -7178,14 +7223,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskLibrary { - Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskLibraryCran, + Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskLibraryCran, Egg: *string, Jar: *string, - Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskLibraryMaven, - Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskLibraryPypi, + Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskLibraryMaven, + Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskLibraryPypi, Whl: *string, } ``` @@ -7286,7 +7331,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskLibraryCran { Package: *string, @@ -7332,7 +7377,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskLibraryMaven { Coordinates: *string, @@ -7392,7 +7437,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskLibraryPypi { Package: *string, @@ -7438,28 +7483,28 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewCluster { NumWorkers: *f64, SparkVersion: *string, ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAutoscale, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAutoscale, AutoterminationMinutes: *f64, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAzureAttributes, ClusterId: *string, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConf, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConf, ClusterMountInfo: interface{}, ClusterName: *string, CustomTags: *map[string]*string, DataSecurityMode: *string, - DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImage, + DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImage, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableElasticDisk: interface{}, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterGcpAttributes, IdempotencyToken: *string, InitScripts: interface{}, InstancePoolId: *string, @@ -7470,7 +7515,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri SparkConf: *map[string]*string, SparkEnvVars: *map[string]*string, SshPublicKeys: *[]*string, - WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadType, + WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadType, } ``` @@ -7894,7 +7939,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAutoscale { MaxWorkers: *f64, @@ -7940,7 +7985,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAwsAttributes { Availability: *string, @@ -8070,7 +8115,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterAzureAttributes { Availability: *string, @@ -8130,11 +8175,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfS3, } ``` @@ -8180,7 +8225,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfs { Destination: *string, @@ -8212,7 +8257,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfS3 { Destination: *string, @@ -8328,11 +8373,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfo { LocalMountDirPath: *string, - NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfo, + NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfo, RemoteMountDirPath: *string, } ``` @@ -8390,7 +8435,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfo { ServerAddress: *string, @@ -8436,11 +8481,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuth, } ``` @@ -8484,7 +8529,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuth { Password: *string, @@ -8530,7 +8575,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterGcpAttributes { Availability: *string, @@ -8632,16 +8677,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsWorkspace, } ``` @@ -8762,7 +8807,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsAbfss { Destination: *string, @@ -8794,7 +8839,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsDbfs { Destination: *string, @@ -8826,7 +8871,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsFile { Destination: *string, @@ -8858,7 +8903,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsGcs { Destination: *string, @@ -8890,7 +8935,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsS3 { Destination: *string, @@ -9006,7 +9051,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsVolumes { Destination: *string, @@ -9038,7 +9083,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsWorkspace { Destination: *string, @@ -9070,10 +9115,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadType { - Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeClients, + Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeClients, } ``` @@ -9104,7 +9149,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeClients { Jobs: interface{}, @@ -9150,7 +9195,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNotebookTask { NotebookPath: *string, @@ -9210,7 +9255,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskNotificationSettings { AlertOnLastAttempt: interface{}, @@ -9270,7 +9315,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskPipelineTask { PipelineId: *string, @@ -9316,7 +9361,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskPythonWheelTask { EntryPoint: *string, @@ -9390,7 +9435,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskRunJobTask { JobId: *f64, @@ -9436,7 +9481,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSparkJarTask { JarUri: *string, @@ -9496,7 +9541,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSparkPythonTask { PythonFile: *string, @@ -9556,7 +9601,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSparkSubmitTask { Parameters: *[]*string, @@ -9588,14 +9633,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTask { - Alert: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlert, - Dashboard: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboard, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskFile, + Alert: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlert, + Dashboard: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboard, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskFile, Parameters: *map[string]*string, - Query: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskQuery, + Query: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskQuery, WarehouseId: *string, } ``` @@ -9698,7 +9743,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlert { AlertId: *string, @@ -9760,7 +9805,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertSubscriptions { DestinationId: *string, @@ -9806,7 +9851,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboard { DashboardId: *string, @@ -9882,7 +9927,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardSubscriptions { DestinationId: *string, @@ -9928,7 +9973,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskFile { Path: *string, @@ -9960,7 +10005,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTaskSqlTaskQuery { QueryId: *string, @@ -9992,10 +10037,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTrigger { - FileArrival: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTriggerFileArrival, + FileArrival: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksJob.DataDatabricksJobJobSettingsSettingsTriggerFileArrival, PauseStatus: *string, } ``` @@ -10040,7 +10085,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsTriggerFileArrival { Url: *string, @@ -10100,7 +10145,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsWebhookNotifications { OnDurationWarningThresholdExceeded: interface{}, @@ -10182,7 +10227,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceeded { Id: *string, @@ -10217,7 +10262,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/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnFailure { Id: *string, @@ -10252,7 +10297,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/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnStart { Id: *string, @@ -10287,7 +10332,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/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" &datadatabricksjob.DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnSuccess { Id: *string, @@ -10324,7 +10369,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/datadatabricksjob" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjob" datadatabricksjob.NewDataDatabricksJobJobSettingsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsOutputReference ``` @@ -10731,7 +10776,7 @@ func InternalValue() DataDatabricksJobJobSettings #### 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.NewDataDatabricksJobJobSettingsSettingsComputeList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsComputeList ``` @@ -10874,7 +10919,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsComputeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsComputeOutputReference ``` @@ -11212,7 +11257,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsComputeSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsComputeSpecOutputReference ``` @@ -11490,7 +11535,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsComputeSpec #### 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.NewDataDatabricksJobJobSettingsSettingsContinuousOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsContinuousOutputReference ``` @@ -11768,7 +11813,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsContinuous #### 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.NewDataDatabricksJobJobSettingsSettingsDbtTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsDbtTaskOutputReference ``` @@ -12184,7 +12229,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsDbtTask #### 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.NewDataDatabricksJobJobSettingsSettingsEmailNotificationsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsEmailNotificationsOutputReference ``` @@ -12607,7 +12652,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsEmailNotifications #### 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.NewDataDatabricksJobJobSettingsSettingsGitSourceJobSourceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsGitSourceJobSourceOutputReference ``` @@ -12929,7 +12974,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsGitSourceJobSource #### 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.NewDataDatabricksJobJobSettingsSettingsGitSourceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsGitSourceOutputReference ``` @@ -13358,7 +13403,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsGitSource #### 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.NewDataDatabricksJobJobSettingsSettingsHealthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsHealthOutputReference ``` @@ -13642,7 +13687,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsHealth #### 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.NewDataDatabricksJobJobSettingsSettingsHealthRulesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsHealthRulesList ``` @@ -13785,7 +13830,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsHealthRulesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsHealthRulesOutputReference ``` @@ -14139,7 +14184,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsJobClusterList ``` @@ -14282,7 +14327,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAutoscaleOutputReference ``` @@ -14589,7 +14634,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAut #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAwsAttributesOutputReference ``` @@ -15070,7 +15115,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAws #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAzureAttributesOutputReference ``` @@ -15406,7 +15451,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterAzu #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfsOutputReference ``` @@ -15677,7 +15722,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClu #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfOutputReference ``` @@ -16010,7 +16055,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClu #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3OutputReference ``` @@ -16455,7 +16500,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClu #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoList ``` @@ -16598,7 +16643,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference ``` @@ -16898,7 +16943,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClu #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoOutputReference ``` @@ -17251,7 +17296,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuthOutputReference ``` @@ -17544,7 +17589,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDoc #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDockerImageOutputReference ``` @@ -17857,7 +17902,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterDoc #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterGcpAttributesOutputReference ``` @@ -18280,7 +18325,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterGcp #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsAbfssOutputReference ``` @@ -18558,7 +18603,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsDbfsOutputReference ``` @@ -18829,7 +18874,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsFileOutputReference ``` @@ -19107,7 +19152,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsGcsOutputReference ``` @@ -19385,7 +19430,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsList ``` @@ -19528,7 +19573,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsOutputReference ``` @@ -20089,7 +20134,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsS3OutputReference ``` @@ -20534,7 +20579,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsVolumesOutputReference ``` @@ -20812,7 +20857,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterInitScriptsWorkspaceOutputReference ``` @@ -21090,7 +21135,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterIni #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterOutputReference ``` @@ -22312,7 +22357,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewCluster #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClientsOutputReference ``` @@ -22619,7 +22664,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWor #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeOutputReference ``` @@ -22903,7 +22948,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsJobClusterNewClusterWor #### 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.NewDataDatabricksJobJobSettingsSettingsJobClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsJobClusterOutputReference ``` @@ -23241,7 +23286,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsLibraryCranOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsLibraryCranOutputReference ``` @@ -23541,7 +23586,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsLibraryCran #### 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.NewDataDatabricksJobJobSettingsSettingsLibraryList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsLibraryList ``` @@ -23684,7 +23729,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsLibraryMavenOutputReference ``` @@ -24013,7 +24058,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsLibraryMaven #### 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.NewDataDatabricksJobJobSettingsSettingsLibraryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsLibraryOutputReference ``` @@ -24493,7 +24538,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsLibraryPypiOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsLibraryPypiOutputReference ``` @@ -24793,7 +24838,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsLibraryPypi #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterAutoscaleOutputReference ``` @@ -25100,7 +25145,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterAutoscale #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterAwsAttributesOutputReference ``` @@ -25581,7 +25626,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterAwsAttributes #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterAzureAttributesOutputReference ``` @@ -25917,7 +25962,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterAzureAttribut #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfDbfsOutputReference ``` @@ -26188,7 +26233,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterClusterLogCon #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfOutputReference ``` @@ -26521,7 +26566,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterClusterLogCon #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterClusterLogConfS3OutputReference ``` @@ -26966,7 +27011,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterClusterLogCon #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoList ``` @@ -27109,7 +27154,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference ``` @@ -27409,7 +27454,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterClusterMountI #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsNewClusterClusterMountInfoOutputReference ``` @@ -27762,7 +27807,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterDockerImageBasicAuthOutputReference ``` @@ -28055,7 +28100,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterDockerImageBa #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterDockerImageOutputReference ``` @@ -28368,7 +28413,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterDockerImage #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterGcpAttributesOutputReference ``` @@ -28791,7 +28836,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterGcpAttributes #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsAbfssOutputReference ``` @@ -29069,7 +29114,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsAb #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsDbfsOutputReference ``` @@ -29340,7 +29385,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsDb #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsFileOutputReference ``` @@ -29618,7 +29663,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsFi #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsGcsOutputReference ``` @@ -29896,7 +29941,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsGc #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsList ``` @@ -30039,7 +30084,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsOutputReference ``` @@ -30600,7 +30645,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsS3OutputReference ``` @@ -31045,7 +31090,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsS3 #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsVolumesOutputReference ``` @@ -31323,7 +31368,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsVo #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsWorkspaceOutputReference ``` @@ -31601,7 +31646,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterInitScriptsWo #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterOutputReference ``` @@ -32823,7 +32868,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewCluster #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeClientsOutputReference ``` @@ -33130,7 +33175,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeC #### 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.NewDataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNewClusterWorkloadTypeOutputReference ``` @@ -33414,7 +33459,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNewClusterWorkloadType #### 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.NewDataDatabricksJobJobSettingsSettingsNotebookTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNotebookTaskOutputReference ``` @@ -33743,7 +33788,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNotebookTask #### 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.NewDataDatabricksJobJobSettingsSettingsNotificationSettingsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsNotificationSettingsOutputReference ``` @@ -34050,7 +34095,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsNotificationSettings #### 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.NewDataDatabricksJobJobSettingsSettingsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsOutputReference ``` @@ -35568,7 +35613,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettings #### 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.NewDataDatabricksJobJobSettingsSettingsParameterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsParameterList ``` @@ -35711,7 +35756,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsParameterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsParameterOutputReference ``` @@ -36036,7 +36081,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsPipelineTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsPipelineTaskOutputReference ``` @@ -36336,7 +36381,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsPipelineTask #### 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.NewDataDatabricksJobJobSettingsSettingsPythonWheelTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsPythonWheelTaskOutputReference ``` @@ -36701,7 +36746,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsPythonWheelTask #### 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.NewDataDatabricksJobJobSettingsSettingsQueueOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsQueueOutputReference ``` @@ -36972,7 +37017,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsQueue #### 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.NewDataDatabricksJobJobSettingsSettingsRunAsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsRunAsOutputReference ``` @@ -37279,7 +37324,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsRunAs #### 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.NewDataDatabricksJobJobSettingsSettingsRunJobTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsRunJobTaskOutputReference ``` @@ -37579,7 +37624,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsRunJobTask #### 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.NewDataDatabricksJobJobSettingsSettingsScheduleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsScheduleOutputReference ``` @@ -37901,7 +37946,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsSchedule #### 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.NewDataDatabricksJobJobSettingsSettingsSparkJarTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsSparkJarTaskOutputReference ``` @@ -38237,7 +38282,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsSparkJarTask #### 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.NewDataDatabricksJobJobSettingsSettingsSparkPythonTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsSparkPythonTaskOutputReference ``` @@ -38566,7 +38611,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsSparkPythonTask #### 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.NewDataDatabricksJobJobSettingsSettingsSparkSubmitTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsSparkSubmitTaskOutputReference ``` @@ -38844,7 +38889,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsSparkSubmitTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskConditionTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskConditionTaskOutputReference ``` @@ -39180,7 +39225,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskConditionTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskDbtTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskDbtTaskOutputReference ``` @@ -39596,7 +39641,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskDbtTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskDependsOnList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskDependsOnList ``` @@ -39739,7 +39784,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskDependsOnOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskDependsOnOutputReference ``` @@ -40057,7 +40102,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskEmailNotificationsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskEmailNotificationsOutputReference ``` @@ -40480,7 +40525,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskEmailNotifications #### 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.NewDataDatabricksJobJobSettingsSettingsTaskHealthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskHealthOutputReference ``` @@ -40764,7 +40809,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskHealth #### 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.NewDataDatabricksJobJobSettingsSettingsTaskHealthRulesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskHealthRulesList ``` @@ -40907,7 +40952,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskHealthRulesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskHealthRulesOutputReference ``` @@ -41261,7 +41306,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskLibraryCranOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskLibraryCranOutputReference ``` @@ -41561,7 +41606,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskLibraryCran #### 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.NewDataDatabricksJobJobSettingsSettingsTaskLibraryList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskLibraryList ``` @@ -41704,7 +41749,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskLibraryMavenOutputReference ``` @@ -42033,7 +42078,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskLibraryMaven #### 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.NewDataDatabricksJobJobSettingsSettingsTaskLibraryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskLibraryOutputReference ``` @@ -42513,7 +42558,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskLibraryPypiOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskLibraryPypiOutputReference ``` @@ -42813,7 +42858,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskLibraryPypi #### 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.NewDataDatabricksJobJobSettingsSettingsTaskList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskList ``` @@ -42956,7 +43001,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterAutoscaleOutputReference ``` @@ -43263,7 +43308,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterAutoscale #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterAwsAttributesOutputReference ``` @@ -43744,7 +43789,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterAwsAttrib #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterAzureAttributesOutputReference ``` @@ -44080,7 +44125,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterAzureAttr #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfsOutputReference ``` @@ -44351,7 +44396,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLo #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfOutputReference ``` @@ -44684,7 +44729,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLo #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLogConfS3OutputReference ``` @@ -45129,7 +45174,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterLo #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoList ``` @@ -45272,7 +45317,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference ``` @@ -45572,7 +45617,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMo #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskNewClusterClusterMountInfoOutputReference ``` @@ -45925,7 +45970,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuthOutputReference ``` @@ -46218,7 +46263,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerIma #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerImageOutputReference ``` @@ -46531,7 +46576,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterDockerIma #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterGcpAttributesOutputReference ``` @@ -46954,7 +46999,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterGcpAttrib #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsAbfssOutputReference ``` @@ -47232,7 +47277,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsDbfsOutputReference ``` @@ -47503,7 +47548,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsFileOutputReference ``` @@ -47781,7 +47826,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsGcsOutputReference ``` @@ -48059,7 +48104,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsList ``` @@ -48202,7 +48247,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsOutputReference ``` @@ -48763,7 +48808,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsS3OutputReference ``` @@ -49208,7 +49253,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsVolumesOutputReference ``` @@ -49486,7 +49531,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScriptsWorkspaceOutputReference ``` @@ -49764,7 +49809,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterInitScrip #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterOutputReference ``` @@ -50986,7 +51031,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewCluster #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeClientsOutputReference ``` @@ -51293,7 +51338,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadT #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadTypeOutputReference ``` @@ -51577,7 +51622,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNewClusterWorkloadT #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNotebookTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNotebookTaskOutputReference ``` @@ -51906,7 +51951,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNotebookTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskNotificationSettingsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskNotificationSettingsOutputReference ``` @@ -52242,7 +52287,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskNotificationSetting #### 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.NewDataDatabricksJobJobSettingsSettingsTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskOutputReference ``` @@ -53471,7 +53516,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskPipelineTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskPipelineTaskOutputReference ``` @@ -53771,7 +53816,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskPipelineTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskPythonWheelTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskPythonWheelTaskOutputReference ``` @@ -54136,7 +54181,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskPythonWheelTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskRunJobTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskRunJobTaskOutputReference ``` @@ -54436,7 +54481,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskRunJobTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSparkJarTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSparkJarTaskOutputReference ``` @@ -54772,7 +54817,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSparkJarTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSparkPythonTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSparkPythonTaskOutputReference ``` @@ -55101,7 +55146,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSparkPythonTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSparkSubmitTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSparkSubmitTaskOutputReference ``` @@ -55379,7 +55424,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSparkSubmitTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertOutputReference ``` @@ -55714,7 +55759,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlert #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertSubscriptionsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertSubscriptionsList ``` @@ -55857,7 +55902,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertSubscriptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskSqlTaskAlertSubscriptionsOutputReference ``` @@ -56182,7 +56227,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardOutputReference ``` @@ -56553,7 +56598,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboard #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardSubscriptionsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardSubscriptionsList ``` @@ -56696,7 +56741,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardSubscriptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsTaskSqlTaskDashboardSubscriptionsOutputReference ``` @@ -57021,7 +57066,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSqlTaskFileOutputReference ``` @@ -57292,7 +57337,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSqlTaskFile #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSqlTaskOutputReference ``` @@ -57767,7 +57812,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSqlTask #### 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.NewDataDatabricksJobJobSettingsSettingsTaskSqlTaskQueryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTaskSqlTaskQueryOutputReference ``` @@ -58038,7 +58083,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTaskSqlTaskQuery #### 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.NewDataDatabricksJobJobSettingsSettingsTriggerFileArrivalOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTriggerFileArrivalOutputReference ``` @@ -58367,7 +58412,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTriggerFileArrival #### 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.NewDataDatabricksJobJobSettingsSettingsTriggerOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsTriggerOutputReference ``` @@ -58680,7 +58725,7 @@ func InternalValue() DataDatabricksJobJobSettingsSettingsTrigger #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceededList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceededList ``` @@ -58823,7 +58868,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceededOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceededOutputReference ``` @@ -59112,7 +59157,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnFailureList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnFailureList ``` @@ -59255,7 +59300,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnFailureOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnFailureOutputReference ``` @@ -59544,7 +59589,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnStartList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnStartList ``` @@ -59687,7 +59732,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnStartOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnStartOutputReference ``` @@ -59976,7 +60021,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnSuccessList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnSuccessList ``` @@ -60119,7 +60164,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOnSuccessOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOnSuccessOutputReference ``` @@ -60408,7 +60453,7 @@ func InternalValue() interface{} #### 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.NewDataDatabricksJobJobSettingsSettingsWebhookNotificationsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksJobJobSettingsSettingsWebhookNotificationsOutputReference ``` diff --git a/docs/dataDatabricksJob.java.md b/docs/dataDatabricksJob.java.md index b3baecb50..7fa6e5807 100644 --- a/docs/dataDatabricksJob.java.md +++ b/docs/dataDatabricksJob.java.md @@ -421,6 +421,7 @@ public 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 ". | --- @@ -484,6 +485,50 @@ DataDatabricksJob.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_job.DataDatabricksJob; + +DataDatabricksJob.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksJob.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksJob 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 DataDatabricksJob to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.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:* com.hashicorp.cdktf.TerraformProvider + +? Optional instance of the provider where the DataDatabricksJob to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksJob.python.md b/docs/dataDatabricksJob.python.md index 6cf1caa64..5a18e0168 100644 --- a/docs/dataDatabricksJob.python.md +++ b/docs/dataDatabricksJob.python.md @@ -486,6 +486,7 @@ def reset_name() -> 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 DataDatabricksJob resource upon running "cdktf plan ". | --- @@ -555,6 +556,55 @@ dataDatabricksJob.DataDatabricksJob.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_job + +dataDatabricksJob.DataDatabricksJob.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +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. + +--- + +###### `import_to_id`Required + +- *Type:* str + +The construct id used in the generated config for the DataDatabricksJob to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +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:* cdktf.TerraformProvider + +? Optional instance of the provider where the DataDatabricksJob to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksJob.typescript.md b/docs/dataDatabricksJob.typescript.md index b4f4fa502..99aaa98c4 100644 --- a/docs/dataDatabricksJob.typescript.md +++ b/docs/dataDatabricksJob.typescript.md @@ -312,6 +312,7 @@ public resetName(): void | 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.DataDatabricksJob.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksJob } from '@cdktf/provider-databricks' + +dataDatabricksJob.DataDatabricksJob.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +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:* cdktf.TerraformProvider + +? Optional instance of the provider where the DataDatabricksJob to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksJobs.csharp.md b/docs/dataDatabricksJobs.csharp.md index 793a3eaaf..9860d6b62 100644 --- a/docs/dataDatabricksJobs.csharp.md +++ b/docs/dataDatabricksJobs.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 DataDatabricksJobs resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksJobs.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksJobs.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksJobs 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 DataDatabricksJobs to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksJobs that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/jobs#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 DataDatabricksJobs to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksJobs.go.md b/docs/dataDatabricksJobs.go.md index 8ea854632..69ccea650 100644 --- a/docs/dataDatabricksJobs.go.md +++ b/docs/dataDatabricksJobs.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/datadatabricksjobs" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjobs" datadatabricksjobs.NewDataDatabricksJobs(scope Construct, id *string, config DataDatabricksJobsConfig) DataDatabricksJobs ``` @@ -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 DataDatabricksJobs resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjobs" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjobs" datadatabricksjobs.DataDatabricksJobs_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjobs" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjobs" datadatabricksjobs.DataDatabricksJobs_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksjobs.DataDatabricksJobs_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksjobs" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjobs" datadatabricksjobs.DataDatabricksJobs_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksjobs.DataDatabricksJobs_IsTerraformDataSource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjobs" + +datadatabricksjobs.DataDatabricksJobs_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksJobs 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 DataDatabricksJobs to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksJobs that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/jobs#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 DataDatabricksJobs 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/datadatabricksjobs" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksjobs" &datadatabricksjobs.DataDatabricksJobsConfig { Connection: interface{}, diff --git a/docs/dataDatabricksJobs.java.md b/docs/dataDatabricksJobs.java.md index 483531afe..2e7697ea3 100644 --- a/docs/dataDatabricksJobs.java.md +++ b/docs/dataDatabricksJobs.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 DataDatabricksJobs resource upon running "cdktf plan ". | --- @@ -418,6 +419,50 @@ DataDatabricksJobs.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_jobs.DataDatabricksJobs; + +DataDatabricksJobs.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksJobs.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksJobs 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 DataDatabricksJobs to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksJobs that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/jobs#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 DataDatabricksJobs to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksJobs.python.md b/docs/dataDatabricksJobs.python.md index b7ca62dc9..93ccc3f8e 100644 --- a/docs/dataDatabricksJobs.python.md +++ b/docs/dataDatabricksJobs.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 DataDatabricksJobs resource upon running "cdktf plan ". | --- @@ -447,6 +448,55 @@ dataDatabricksJobs.DataDatabricksJobs.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_jobs + +dataDatabricksJobs.DataDatabricksJobs.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksJobs 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 DataDatabricksJobs to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksJobs that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/jobs#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 DataDatabricksJobs to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksJobs.typescript.md b/docs/dataDatabricksJobs.typescript.md index 594d01654..754560ebc 100644 --- a/docs/dataDatabricksJobs.typescript.md +++ b/docs/dataDatabricksJobs.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 DataDatabricksJobs resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksJobs.DataDatabricksJobs.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksJobs } from '@cdktf/provider-databricks' + +dataDatabricksJobs.DataDatabricksJobs.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksJobs 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 DataDatabricksJobs to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksJobs that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/jobs#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 DataDatabricksJobs to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastore.csharp.md b/docs/dataDatabricksMetastore.csharp.md index 20e142727..c8b2d1c7e 100644 --- a/docs/dataDatabricksMetastore.csharp.md +++ b/docs/dataDatabricksMetastore.csharp.md @@ -291,6 +291,7 @@ private void ResetMetastoreInfo() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksMetastore resource upon running "cdktf plan ". | --- @@ -354,6 +355,50 @@ DataDatabricksMetastore.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksMetastore.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksMetastore 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 DataDatabricksMetastore to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMetastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastore#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 DataDatabricksMetastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastore.go.md b/docs/dataDatabricksMetastore.go.md index c4e66fc8a..3b997736e 100644 --- a/docs/dataDatabricksMetastore.go.md +++ b/docs/dataDatabricksMetastore.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/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" datadatabricksmetastore.NewDataDatabricksMetastore(scope Construct, id *string, config DataDatabricksMetastoreConfig) DataDatabricksMetastore ``` @@ -291,13 +291,14 @@ func ResetMetastoreInfo() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksMetastore resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" datadatabricksmetastore.DataDatabricksMetastore_IsConstruct(x interface{}) *bool ``` @@ -329,7 +330,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" datadatabricksmetastore.DataDatabricksMetastore_IsTerraformElement(x interface{}) *bool ``` @@ -343,7 +344,7 @@ datadatabricksmetastore.DataDatabricksMetastore_IsTerraformElement(x interface{} ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" datadatabricksmetastore.DataDatabricksMetastore_IsTerraformDataSource(x interface{}) *bool ``` @@ -354,6 +355,50 @@ datadatabricksmetastore.DataDatabricksMetastore_IsTerraformDataSource(x interfac --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" + +datadatabricksmetastore.DataDatabricksMetastore_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksMetastore 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 DataDatabricksMetastore to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksMetastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastore#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 DataDatabricksMetastore 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/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" &datadatabricksmetastore.DataDatabricksMetastoreConfig { Connection: interface{}, @@ -598,7 +643,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri Provisioners: *[]interface{}, MetastoreId: *string, Id: *string, - MetastoreInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksMetastore.DataDatabricksMetastoreMetastoreInfo, + MetastoreInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksMetastore.DataDatabricksMetastoreMetastoreInfo, } ``` @@ -735,7 +780,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" &datadatabricksmetastore.DataDatabricksMetastoreMetastoreInfo { Cloud: *string, @@ -1007,7 +1052,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastore" datadatabricksmetastore.NewDataDatabricksMetastoreMetastoreInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksMetastoreMetastoreInfoOutputReference ``` diff --git a/docs/dataDatabricksMetastore.java.md b/docs/dataDatabricksMetastore.java.md index 0b6ba0d99..a73ff6693 100644 --- a/docs/dataDatabricksMetastore.java.md +++ b/docs/dataDatabricksMetastore.java.md @@ -380,6 +380,7 @@ public void resetMetastoreInfo() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksMetastore resource upon running "cdktf plan ". | --- @@ -443,6 +444,50 @@ DataDatabricksMetastore.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_metastore.DataDatabricksMetastore; + +DataDatabricksMetastore.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksMetastore.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksMetastore 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 DataDatabricksMetastore to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksMetastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastore#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 DataDatabricksMetastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastore.python.md b/docs/dataDatabricksMetastore.python.md index bad25d305..699a98068 100644 --- a/docs/dataDatabricksMetastore.python.md +++ b/docs/dataDatabricksMetastore.python.md @@ -560,6 +560,7 @@ def reset_metastore_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 DataDatabricksMetastore resource upon running "cdktf plan ". | --- @@ -629,6 +630,55 @@ dataDatabricksMetastore.DataDatabricksMetastore.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_metastore + +dataDatabricksMetastore.DataDatabricksMetastore.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksMetastore 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 DataDatabricksMetastore to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksMetastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastore#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 DataDatabricksMetastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastore.typescript.md b/docs/dataDatabricksMetastore.typescript.md index ed130739e..6f6d898a9 100644 --- a/docs/dataDatabricksMetastore.typescript.md +++ b/docs/dataDatabricksMetastore.typescript.md @@ -291,6 +291,7 @@ public resetMetastoreInfo(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksMetastore resource upon running "cdktf plan ". | --- @@ -354,6 +355,50 @@ dataDatabricksMetastore.DataDatabricksMetastore.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksMetastore } from '@cdktf/provider-databricks' + +dataDatabricksMetastore.DataDatabricksMetastore.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksMetastore 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 DataDatabricksMetastore to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMetastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastore#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 DataDatabricksMetastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastores.csharp.md b/docs/dataDatabricksMetastores.csharp.md index d3b5a0ae4..f5e87d80e 100644 --- a/docs/dataDatabricksMetastores.csharp.md +++ b/docs/dataDatabricksMetastores.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 DataDatabricksMetastores resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksMetastores.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksMetastores.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksMetastores 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 DataDatabricksMetastores to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMetastores that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastores#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 DataDatabricksMetastores to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastores.go.md b/docs/dataDatabricksMetastores.go.md index c4e3194ae..07d51f5db 100644 --- a/docs/dataDatabricksMetastores.go.md +++ b/docs/dataDatabricksMetastores.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/datadatabricksmetastores" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastores" datadatabricksmetastores.NewDataDatabricksMetastores(scope Construct, id *string, config DataDatabricksMetastoresConfig) DataDatabricksMetastores ``` @@ -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 DataDatabricksMetastores resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastores" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastores" datadatabricksmetastores.DataDatabricksMetastores_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastores" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastores" datadatabricksmetastores.DataDatabricksMetastores_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksmetastores.DataDatabricksMetastores_IsTerraformElement(x interface ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmetastores" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastores" datadatabricksmetastores.DataDatabricksMetastores_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksmetastores.DataDatabricksMetastores_IsTerraformDataSource(x interf --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastores" + +datadatabricksmetastores.DataDatabricksMetastores_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksMetastores 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 DataDatabricksMetastores to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksMetastores that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastores#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 DataDatabricksMetastores 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/datadatabricksmetastores" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmetastores" &datadatabricksmetastores.DataDatabricksMetastoresConfig { Connection: interface{}, diff --git a/docs/dataDatabricksMetastores.java.md b/docs/dataDatabricksMetastores.java.md index 974831acd..2506b3564 100644 --- a/docs/dataDatabricksMetastores.java.md +++ b/docs/dataDatabricksMetastores.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 DataDatabricksMetastores resource upon running "cdktf plan ". | --- @@ -418,6 +419,50 @@ DataDatabricksMetastores.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_metastores.DataDatabricksMetastores; + +DataDatabricksMetastores.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksMetastores.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksMetastores 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 DataDatabricksMetastores to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksMetastores that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastores#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 DataDatabricksMetastores to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastores.python.md b/docs/dataDatabricksMetastores.python.md index 11b0637d6..8bfaa4090 100644 --- a/docs/dataDatabricksMetastores.python.md +++ b/docs/dataDatabricksMetastores.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 DataDatabricksMetastores resource upon running "cdktf plan ". | --- @@ -447,6 +448,55 @@ dataDatabricksMetastores.DataDatabricksMetastores.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_metastores + +dataDatabricksMetastores.DataDatabricksMetastores.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksMetastores 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 DataDatabricksMetastores to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksMetastores that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastores#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 DataDatabricksMetastores to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMetastores.typescript.md b/docs/dataDatabricksMetastores.typescript.md index 87dada522..9207ca364 100644 --- a/docs/dataDatabricksMetastores.typescript.md +++ b/docs/dataDatabricksMetastores.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 DataDatabricksMetastores resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksMetastores.DataDatabricksMetastores.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksMetastores } from '@cdktf/provider-databricks' + +dataDatabricksMetastores.DataDatabricksMetastores.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksMetastores 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 DataDatabricksMetastores to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMetastores that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastores#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 DataDatabricksMetastores to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsCredentials.csharp.md b/docs/dataDatabricksMwsCredentials.csharp.md index 865826f14..69edecca9 100644 --- a/docs/dataDatabricksMwsCredentials.csharp.md +++ b/docs/dataDatabricksMwsCredentials.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 DataDatabricksMwsCredentials resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksMwsCredentials.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksMwsCredentials.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksMwsCredentials 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 DataDatabricksMwsCredentials to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_credentials#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 DataDatabricksMwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsCredentials.go.md b/docs/dataDatabricksMwsCredentials.go.md index c37b9e50f..b129eca10 100644 --- a/docs/dataDatabricksMwsCredentials.go.md +++ b/docs/dataDatabricksMwsCredentials.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/datadatabricksmwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwscredentials" datadatabricksmwscredentials.NewDataDatabricksMwsCredentials(scope Construct, id *string, config DataDatabricksMwsCredentialsConfig) DataDatabricksMwsCredentials ``` @@ -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 DataDatabricksMwsCredentials resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwscredentials" datadatabricksmwscredentials.DataDatabricksMwsCredentials_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwscredentials" datadatabricksmwscredentials.DataDatabricksMwsCredentials_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksmwscredentials.DataDatabricksMwsCredentials_IsTerraformElement(x i ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwscredentials" datadatabricksmwscredentials.DataDatabricksMwsCredentials_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksmwscredentials.DataDatabricksMwsCredentials_IsTerraformDataSource( --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwscredentials" + +datadatabricksmwscredentials.DataDatabricksMwsCredentials_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksMwsCredentials 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 DataDatabricksMwsCredentials to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksMwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_credentials#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 DataDatabricksMwsCredentials 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/datadatabricksmwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwscredentials" &datadatabricksmwscredentials.DataDatabricksMwsCredentialsConfig { Connection: interface{}, diff --git a/docs/dataDatabricksMwsCredentials.java.md b/docs/dataDatabricksMwsCredentials.java.md index f59cbf7a4..d8dd4bf6c 100644 --- a/docs/dataDatabricksMwsCredentials.java.md +++ b/docs/dataDatabricksMwsCredentials.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 DataDatabricksMwsCredentials resource upon running "cdktf plan ". | --- @@ -418,6 +419,50 @@ DataDatabricksMwsCredentials.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_mws_credentials.DataDatabricksMwsCredentials; + +DataDatabricksMwsCredentials.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksMwsCredentials.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksMwsCredentials 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 DataDatabricksMwsCredentials to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksMwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_credentials#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 DataDatabricksMwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsCredentials.python.md b/docs/dataDatabricksMwsCredentials.python.md index 1025a541d..899b193f2 100644 --- a/docs/dataDatabricksMwsCredentials.python.md +++ b/docs/dataDatabricksMwsCredentials.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 DataDatabricksMwsCredentials resource upon running "cdktf plan ". | --- @@ -447,6 +448,55 @@ dataDatabricksMwsCredentials.DataDatabricksMwsCredentials.is_terraform_data_sour --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_mws_credentials + +dataDatabricksMwsCredentials.DataDatabricksMwsCredentials.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksMwsCredentials 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 DataDatabricksMwsCredentials to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksMwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_credentials#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 DataDatabricksMwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsCredentials.typescript.md b/docs/dataDatabricksMwsCredentials.typescript.md index 3315f7c2a..a70c2f008 100644 --- a/docs/dataDatabricksMwsCredentials.typescript.md +++ b/docs/dataDatabricksMwsCredentials.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 DataDatabricksMwsCredentials resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksMwsCredentials.DataDatabricksMwsCredentials.isTerraformDataSource( --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksMwsCredentials } from '@cdktf/provider-databricks' + +dataDatabricksMwsCredentials.DataDatabricksMwsCredentials.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksMwsCredentials 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 DataDatabricksMwsCredentials to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_credentials#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 DataDatabricksMwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsWorkspaces.csharp.md b/docs/dataDatabricksMwsWorkspaces.csharp.md index 327287995..8bd895d02 100644 --- a/docs/dataDatabricksMwsWorkspaces.csharp.md +++ b/docs/dataDatabricksMwsWorkspaces.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 DataDatabricksMwsWorkspaces resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksMwsWorkspaces.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksMwsWorkspaces.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksMwsWorkspaces 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 DataDatabricksMwsWorkspaces to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_workspaces#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 DataDatabricksMwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsWorkspaces.go.md b/docs/dataDatabricksMwsWorkspaces.go.md index 001824586..c8ce7e52b 100644 --- a/docs/dataDatabricksMwsWorkspaces.go.md +++ b/docs/dataDatabricksMwsWorkspaces.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/datadatabricksmwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwsworkspaces" datadatabricksmwsworkspaces.NewDataDatabricksMwsWorkspaces(scope Construct, id *string, config DataDatabricksMwsWorkspacesConfig) DataDatabricksMwsWorkspaces ``` @@ -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 DataDatabricksMwsWorkspaces resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwsworkspaces" datadatabricksmwsworkspaces.DataDatabricksMwsWorkspaces_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwsworkspaces" datadatabricksmwsworkspaces.DataDatabricksMwsWorkspaces_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksmwsworkspaces.DataDatabricksMwsWorkspaces_IsTerraformElement(x int ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksmwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwsworkspaces" datadatabricksmwsworkspaces.DataDatabricksMwsWorkspaces_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksmwsworkspaces.DataDatabricksMwsWorkspaces_IsTerraformDataSource(x --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwsworkspaces" + +datadatabricksmwsworkspaces.DataDatabricksMwsWorkspaces_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksMwsWorkspaces 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 DataDatabricksMwsWorkspaces to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksMwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_workspaces#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 DataDatabricksMwsWorkspaces 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/datadatabricksmwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksmwsworkspaces" &datadatabricksmwsworkspaces.DataDatabricksMwsWorkspacesConfig { Connection: interface{}, diff --git a/docs/dataDatabricksMwsWorkspaces.java.md b/docs/dataDatabricksMwsWorkspaces.java.md index d0c969c20..4947974ef 100644 --- a/docs/dataDatabricksMwsWorkspaces.java.md +++ b/docs/dataDatabricksMwsWorkspaces.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 DataDatabricksMwsWorkspaces resource upon running "cdktf plan ". | --- @@ -418,6 +419,50 @@ DataDatabricksMwsWorkspaces.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_mws_workspaces.DataDatabricksMwsWorkspaces; + +DataDatabricksMwsWorkspaces.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksMwsWorkspaces.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksMwsWorkspaces 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 DataDatabricksMwsWorkspaces to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksMwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_workspaces#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 DataDatabricksMwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsWorkspaces.python.md b/docs/dataDatabricksMwsWorkspaces.python.md index 9c661dcbf..74065c1b5 100644 --- a/docs/dataDatabricksMwsWorkspaces.python.md +++ b/docs/dataDatabricksMwsWorkspaces.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 DataDatabricksMwsWorkspaces resource upon running "cdktf plan ". | --- @@ -447,6 +448,55 @@ dataDatabricksMwsWorkspaces.DataDatabricksMwsWorkspaces.is_terraform_data_source --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_mws_workspaces + +dataDatabricksMwsWorkspaces.DataDatabricksMwsWorkspaces.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksMwsWorkspaces 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 DataDatabricksMwsWorkspaces to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksMwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_workspaces#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 DataDatabricksMwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksMwsWorkspaces.typescript.md b/docs/dataDatabricksMwsWorkspaces.typescript.md index 86d895d4c..b32b88794 100644 --- a/docs/dataDatabricksMwsWorkspaces.typescript.md +++ b/docs/dataDatabricksMwsWorkspaces.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 DataDatabricksMwsWorkspaces resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksMwsWorkspaces.DataDatabricksMwsWorkspaces.isTerraformDataSource(x: --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksMwsWorkspaces } from '@cdktf/provider-databricks' + +dataDatabricksMwsWorkspaces.DataDatabricksMwsWorkspaces.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksMwsWorkspaces 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 DataDatabricksMwsWorkspaces to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksMwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_workspaces#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 DataDatabricksMwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNodeType.csharp.md b/docs/dataDatabricksNodeType.csharp.md index 0939d7433..bfadeae5d 100644 --- a/docs/dataDatabricksNodeType.csharp.md +++ b/docs/dataDatabricksNodeType.csharp.md @@ -362,6 +362,7 @@ private void ResetSupportPortForwarding() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksNodeType resource upon running "cdktf plan ". | --- @@ -425,6 +426,50 @@ DataDatabricksNodeType.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksNodeType.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksNodeType 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 DataDatabricksNodeType to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksNodeType that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/node_type#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 DataDatabricksNodeType to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNodeType.go.md b/docs/dataDatabricksNodeType.go.md index 745d66b6e..529a98cd0 100644 --- a/docs/dataDatabricksNodeType.go.md +++ b/docs/dataDatabricksNodeType.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/datadatabricksnodetype" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnodetype" datadatabricksnodetype.NewDataDatabricksNodeType(scope Construct, id *string, config DataDatabricksNodeTypeConfig) DataDatabricksNodeType ``` @@ -362,13 +362,14 @@ func ResetSupportPortForwarding() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksNodeType resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnodetype" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnodetype" datadatabricksnodetype.DataDatabricksNodeType_IsConstruct(x interface{}) *bool ``` @@ -400,7 +401,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnodetype" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnodetype" datadatabricksnodetype.DataDatabricksNodeType_IsTerraformElement(x interface{}) *bool ``` @@ -414,7 +415,7 @@ datadatabricksnodetype.DataDatabricksNodeType_IsTerraformElement(x interface{}) ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnodetype" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnodetype" datadatabricksnodetype.DataDatabricksNodeType_IsTerraformDataSource(x interface{}) *bool ``` @@ -425,6 +426,50 @@ datadatabricksnodetype.DataDatabricksNodeType_IsTerraformDataSource(x interface{ --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnodetype" + +datadatabricksnodetype.DataDatabricksNodeType_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksNodeType 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 DataDatabricksNodeType to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksNodeType that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/node_type#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 DataDatabricksNodeType to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -899,7 +944,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnodetype" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnodetype" &datadatabricksnodetype.DataDatabricksNodeTypeConfig { Connection: interface{}, diff --git a/docs/dataDatabricksNodeType.java.md b/docs/dataDatabricksNodeType.java.md index bdd4fa3bd..2b368e6e2 100644 --- a/docs/dataDatabricksNodeType.java.md +++ b/docs/dataDatabricksNodeType.java.md @@ -566,6 +566,7 @@ public void resetSupportPortForwarding() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksNodeType resource upon running "cdktf plan ". | --- @@ -629,6 +630,50 @@ DataDatabricksNodeType.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_node_type.DataDatabricksNodeType; + +DataDatabricksNodeType.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksNodeType.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksNodeType 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 DataDatabricksNodeType to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksNodeType that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/node_type#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 DataDatabricksNodeType to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNodeType.python.md b/docs/dataDatabricksNodeType.python.md index 805f4acce..643ceddf8 100644 --- a/docs/dataDatabricksNodeType.python.md +++ b/docs/dataDatabricksNodeType.python.md @@ -582,6 +582,7 @@ def reset_support_port_forwarding() -> 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 DataDatabricksNodeType resource upon running "cdktf plan ". | --- @@ -651,6 +652,55 @@ dataDatabricksNodeType.DataDatabricksNodeType.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_node_type + +dataDatabricksNodeType.DataDatabricksNodeType.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksNodeType 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 DataDatabricksNodeType to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksNodeType that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/node_type#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 DataDatabricksNodeType to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNodeType.typescript.md b/docs/dataDatabricksNodeType.typescript.md index 3f25a5432..ea5cbaffa 100644 --- a/docs/dataDatabricksNodeType.typescript.md +++ b/docs/dataDatabricksNodeType.typescript.md @@ -362,6 +362,7 @@ public resetSupportPortForwarding(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksNodeType resource upon running "cdktf plan ". | --- @@ -425,6 +426,50 @@ dataDatabricksNodeType.DataDatabricksNodeType.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksNodeType } from '@cdktf/provider-databricks' + +dataDatabricksNodeType.DataDatabricksNodeType.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksNodeType 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 DataDatabricksNodeType to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksNodeType that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/node_type#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 DataDatabricksNodeType to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebook.csharp.md b/docs/dataDatabricksNotebook.csharp.md index 540941df8..f9f2bbbb8 100644 --- a/docs/dataDatabricksNotebook.csharp.md +++ b/docs/dataDatabricksNotebook.csharp.md @@ -292,6 +292,7 @@ private void ResetObjectType() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksNotebook resource upon running "cdktf plan ". | --- @@ -355,6 +356,50 @@ DataDatabricksNotebook.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksNotebook.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksNotebook 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 DataDatabricksNotebook to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksNotebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook#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 DataDatabricksNotebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebook.go.md b/docs/dataDatabricksNotebook.go.md index a7a71d037..aeb66ee06 100644 --- a/docs/dataDatabricksNotebook.go.md +++ b/docs/dataDatabricksNotebook.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/datadatabricksnotebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebook" datadatabricksnotebook.NewDataDatabricksNotebook(scope Construct, id *string, config DataDatabricksNotebookConfig) DataDatabricksNotebook ``` @@ -292,13 +292,14 @@ func ResetObjectType() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksNotebook resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebook" datadatabricksnotebook.DataDatabricksNotebook_IsConstruct(x interface{}) *bool ``` @@ -330,7 +331,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebook" datadatabricksnotebook.DataDatabricksNotebook_IsTerraformElement(x interface{}) *bool ``` @@ -344,7 +345,7 @@ datadatabricksnotebook.DataDatabricksNotebook_IsTerraformElement(x interface{}) ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebook" datadatabricksnotebook.DataDatabricksNotebook_IsTerraformDataSource(x interface{}) *bool ``` @@ -355,6 +356,50 @@ datadatabricksnotebook.DataDatabricksNotebook_IsTerraformDataSource(x interface{ --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebook" + +datadatabricksnotebook.DataDatabricksNotebook_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksNotebook 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 DataDatabricksNotebook to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksNotebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook#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 DataDatabricksNotebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -664,7 +709,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebook" &datadatabricksnotebook.DataDatabricksNotebookConfig { Connection: interface{}, diff --git a/docs/dataDatabricksNotebook.java.md b/docs/dataDatabricksNotebook.java.md index 549a7e6a7..c58fa4a95 100644 --- a/docs/dataDatabricksNotebook.java.md +++ b/docs/dataDatabricksNotebook.java.md @@ -409,6 +409,7 @@ public void resetObjectType() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksNotebook resource upon running "cdktf plan ". | --- @@ -472,6 +473,50 @@ DataDatabricksNotebook.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_notebook.DataDatabricksNotebook; + +DataDatabricksNotebook.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksNotebook.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksNotebook 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 DataDatabricksNotebook to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksNotebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook#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 DataDatabricksNotebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebook.python.md b/docs/dataDatabricksNotebook.python.md index 1aaa2c625..351bb5c43 100644 --- a/docs/dataDatabricksNotebook.python.md +++ b/docs/dataDatabricksNotebook.python.md @@ -432,6 +432,7 @@ def reset_object_type() -> 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 DataDatabricksNotebook resource upon running "cdktf plan ". | --- @@ -501,6 +502,55 @@ dataDatabricksNotebook.DataDatabricksNotebook.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_notebook + +dataDatabricksNotebook.DataDatabricksNotebook.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksNotebook 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 DataDatabricksNotebook to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksNotebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook#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 DataDatabricksNotebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebook.typescript.md b/docs/dataDatabricksNotebook.typescript.md index 0659a2cc7..58a0870f8 100644 --- a/docs/dataDatabricksNotebook.typescript.md +++ b/docs/dataDatabricksNotebook.typescript.md @@ -292,6 +292,7 @@ public resetObjectType(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksNotebook resource upon running "cdktf plan ". | --- @@ -355,6 +356,50 @@ dataDatabricksNotebook.DataDatabricksNotebook.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksNotebook } from '@cdktf/provider-databricks' + +dataDatabricksNotebook.DataDatabricksNotebook.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksNotebook 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 DataDatabricksNotebook to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksNotebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook#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 DataDatabricksNotebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebookPaths.csharp.md b/docs/dataDatabricksNotebookPaths.csharp.md index fccce2205..9001e0df4 100644 --- a/docs/dataDatabricksNotebookPaths.csharp.md +++ b/docs/dataDatabricksNotebookPaths.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 DataDatabricksNotebookPaths resource upon running "cdktf plan ". | --- @@ -334,6 +335,50 @@ DataDatabricksNotebookPaths.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksNotebookPaths.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksNotebookPaths 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 DataDatabricksNotebookPaths to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksNotebookPaths that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook_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 DataDatabricksNotebookPaths to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebookPaths.go.md b/docs/dataDatabricksNotebookPaths.go.md index a7b59bbe9..0acd2cc4f 100644 --- a/docs/dataDatabricksNotebookPaths.go.md +++ b/docs/dataDatabricksNotebookPaths.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/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" datadatabricksnotebookpaths.NewDataDatabricksNotebookPaths(scope Construct, id *string, config DataDatabricksNotebookPathsConfig) DataDatabricksNotebookPaths ``` @@ -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 DataDatabricksNotebookPaths resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" datadatabricksnotebookpaths.DataDatabricksNotebookPaths_IsConstruct(x interface{}) *bool ``` @@ -309,7 +310,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" datadatabricksnotebookpaths.DataDatabricksNotebookPaths_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +324,7 @@ datadatabricksnotebookpaths.DataDatabricksNotebookPaths_IsTerraformElement(x int ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" datadatabricksnotebookpaths.DataDatabricksNotebookPaths_IsTerraformDataSource(x interface{}) *bool ``` @@ -334,6 +335,50 @@ datadatabricksnotebookpaths.DataDatabricksNotebookPaths_IsTerraformDataSource(x --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" + +datadatabricksnotebookpaths.DataDatabricksNotebookPaths_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksNotebookPaths 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 DataDatabricksNotebookPaths to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksNotebookPaths that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook_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 DataDatabricksNotebookPaths 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/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" &datadatabricksnotebookpaths.DataDatabricksNotebookPathsConfig { 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/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" &datadatabricksnotebookpaths.DataDatabricksNotebookPathsNotebookPathListStruct { @@ -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/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" datadatabricksnotebookpaths.NewDataDatabricksNotebookPathsNotebookPathListStructList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksNotebookPathsNotebookPathListStructList ``` @@ -871,7 +916,7 @@ func Fqn() *string #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksnotebookpaths" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksnotebookpaths" datadatabricksnotebookpaths.NewDataDatabricksNotebookPathsNotebookPathListStructOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksNotebookPathsNotebookPathListStructOutputReference ``` diff --git a/docs/dataDatabricksNotebookPaths.java.md b/docs/dataDatabricksNotebookPaths.java.md index 4849019a3..191b4e4ca 100644 --- a/docs/dataDatabricksNotebookPaths.java.md +++ b/docs/dataDatabricksNotebookPaths.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 DataDatabricksNotebookPaths resource upon running "cdktf plan ". | --- @@ -422,6 +423,50 @@ DataDatabricksNotebookPaths.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_notebook_paths.DataDatabricksNotebookPaths; + +DataDatabricksNotebookPaths.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksNotebookPaths.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksNotebookPaths 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 DataDatabricksNotebookPaths to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksNotebookPaths that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook_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 DataDatabricksNotebookPaths to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebookPaths.python.md b/docs/dataDatabricksNotebookPaths.python.md index da6ac491f..3bf161de9 100644 --- a/docs/dataDatabricksNotebookPaths.python.md +++ b/docs/dataDatabricksNotebookPaths.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 DataDatabricksNotebookPaths resource upon running "cdktf plan ". | --- @@ -450,6 +451,55 @@ dataDatabricksNotebookPaths.DataDatabricksNotebookPaths.is_terraform_data_source --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_notebook_paths + +dataDatabricksNotebookPaths.DataDatabricksNotebookPaths.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksNotebookPaths 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 DataDatabricksNotebookPaths to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksNotebookPaths that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook_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 DataDatabricksNotebookPaths to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksNotebookPaths.typescript.md b/docs/dataDatabricksNotebookPaths.typescript.md index 51fd8284f..d8adfe7e2 100644 --- a/docs/dataDatabricksNotebookPaths.typescript.md +++ b/docs/dataDatabricksNotebookPaths.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 DataDatabricksNotebookPaths resource upon running "cdktf plan ". | --- @@ -334,6 +335,50 @@ dataDatabricksNotebookPaths.DataDatabricksNotebookPaths.isTerraformDataSource(x: --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksNotebookPaths } from '@cdktf/provider-databricks' + +dataDatabricksNotebookPaths.DataDatabricksNotebookPaths.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksNotebookPaths 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 DataDatabricksNotebookPaths to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksNotebookPaths that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook_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 DataDatabricksNotebookPaths to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksPipelines.csharp.md b/docs/dataDatabricksPipelines.csharp.md index 7302d2f39..b8c2d7eec 100644 --- a/docs/dataDatabricksPipelines.csharp.md +++ b/docs/dataDatabricksPipelines.csharp.md @@ -285,6 +285,7 @@ private void ResetPipelineName() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksPipelines resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ DataDatabricksPipelines.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksPipelines.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksPipelines 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 DataDatabricksPipelines to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksPipelines that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/pipelines#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 DataDatabricksPipelines to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksPipelines.go.md b/docs/dataDatabricksPipelines.go.md index 3a88c8d5c..0603178f8 100644 --- a/docs/dataDatabricksPipelines.go.md +++ b/docs/dataDatabricksPipelines.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/datadatabrickspipelines" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickspipelines" datadatabrickspipelines.NewDataDatabricksPipelines(scope Construct, id *string, config DataDatabricksPipelinesConfig) DataDatabricksPipelines ``` @@ -285,13 +285,14 @@ func ResetPipelineName() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksPipelines resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickspipelines" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickspipelines" datadatabrickspipelines.DataDatabricksPipelines_IsConstruct(x interface{}) *bool ``` @@ -323,7 +324,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickspipelines" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickspipelines" datadatabrickspipelines.DataDatabricksPipelines_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +338,7 @@ datadatabrickspipelines.DataDatabricksPipelines_IsTerraformElement(x interface{} ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickspipelines" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickspipelines" datadatabrickspipelines.DataDatabricksPipelines_IsTerraformDataSource(x interface{}) *bool ``` @@ -348,6 +349,50 @@ datadatabrickspipelines.DataDatabricksPipelines_IsTerraformDataSource(x interfac --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickspipelines" + +datadatabrickspipelines.DataDatabricksPipelines_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksPipelines 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 DataDatabricksPipelines to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksPipelines that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/pipelines#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 DataDatabricksPipelines to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -580,7 +625,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickspipelines" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickspipelines" &datadatabrickspipelines.DataDatabricksPipelinesConfig { Connection: interface{}, diff --git a/docs/dataDatabricksPipelines.java.md b/docs/dataDatabricksPipelines.java.md index c2d65954d..6d03ad8f3 100644 --- a/docs/dataDatabricksPipelines.java.md +++ b/docs/dataDatabricksPipelines.java.md @@ -372,6 +372,7 @@ public void resetPipelineName() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksPipelines resource upon running "cdktf plan ". | --- @@ -435,6 +436,50 @@ DataDatabricksPipelines.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_pipelines.DataDatabricksPipelines; + +DataDatabricksPipelines.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksPipelines.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksPipelines 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 DataDatabricksPipelines to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksPipelines that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/pipelines#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 DataDatabricksPipelines to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksPipelines.python.md b/docs/dataDatabricksPipelines.python.md index 6dfaab447..150c314ec 100644 --- a/docs/dataDatabricksPipelines.python.md +++ b/docs/dataDatabricksPipelines.python.md @@ -395,6 +395,7 @@ def reset_pipeline_name() -> 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 DataDatabricksPipelines resource upon running "cdktf plan ". | --- @@ -464,6 +465,55 @@ dataDatabricksPipelines.DataDatabricksPipelines.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_pipelines + +dataDatabricksPipelines.DataDatabricksPipelines.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksPipelines 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 DataDatabricksPipelines to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksPipelines that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/pipelines#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 DataDatabricksPipelines to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksPipelines.typescript.md b/docs/dataDatabricksPipelines.typescript.md index ecad6f22f..db63510eb 100644 --- a/docs/dataDatabricksPipelines.typescript.md +++ b/docs/dataDatabricksPipelines.typescript.md @@ -285,6 +285,7 @@ public resetPipelineName(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksPipelines resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ dataDatabricksPipelines.DataDatabricksPipelines.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksPipelines } from '@cdktf/provider-databricks' + +dataDatabricksPipelines.DataDatabricksPipelines.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksPipelines 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 DataDatabricksPipelines to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksPipelines that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/pipelines#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 DataDatabricksPipelines to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSchemas.csharp.md b/docs/dataDatabricksSchemas.csharp.md index 2fb7de381..40602e046 100644 --- a/docs/dataDatabricksSchemas.csharp.md +++ b/docs/dataDatabricksSchemas.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 DataDatabricksSchemas resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksSchemas.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksSchemas.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksSchemas 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 DataDatabricksSchemas to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSchemas that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/schemas#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 DataDatabricksSchemas to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSchemas.go.md b/docs/dataDatabricksSchemas.go.md index 4ebd3dbc0..1d88757e6 100644 --- a/docs/dataDatabricksSchemas.go.md +++ b/docs/dataDatabricksSchemas.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/datadatabricksschemas" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksschemas" datadatabricksschemas.NewDataDatabricksSchemas(scope Construct, id *string, config DataDatabricksSchemasConfig) DataDatabricksSchemas ``` @@ -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 DataDatabricksSchemas resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksschemas" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksschemas" datadatabricksschemas.DataDatabricksSchemas_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksschemas" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksschemas" datadatabricksschemas.DataDatabricksSchemas_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksschemas.DataDatabricksSchemas_IsTerraformElement(x interface{}) *b ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksschemas" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksschemas" datadatabricksschemas.DataDatabricksSchemas_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksschemas.DataDatabricksSchemas_IsTerraformDataSource(x interface{}) --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksschemas" + +datadatabricksschemas.DataDatabricksSchemas_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksSchemas 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 DataDatabricksSchemas to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksSchemas that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/schemas#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 DataDatabricksSchemas 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/datadatabricksschemas" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksschemas" &datadatabricksschemas.DataDatabricksSchemasConfig { Connection: interface{}, diff --git a/docs/dataDatabricksSchemas.java.md b/docs/dataDatabricksSchemas.java.md index 64840cd57..b0489c1ce 100644 --- a/docs/dataDatabricksSchemas.java.md +++ b/docs/dataDatabricksSchemas.java.md @@ -365,6 +365,7 @@ public void resetIds() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSchemas resource upon running "cdktf plan ". | --- @@ -428,6 +429,50 @@ DataDatabricksSchemas.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_schemas.DataDatabricksSchemas; + +DataDatabricksSchemas.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksSchemas.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksSchemas 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 DataDatabricksSchemas to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksSchemas that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/schemas#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 DataDatabricksSchemas to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSchemas.python.md b/docs/dataDatabricksSchemas.python.md index 611d91e9b..cde995656 100644 --- a/docs/dataDatabricksSchemas.python.md +++ b/docs/dataDatabricksSchemas.python.md @@ -388,6 +388,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 DataDatabricksSchemas resource upon running "cdktf plan ". | --- @@ -457,6 +458,55 @@ dataDatabricksSchemas.DataDatabricksSchemas.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_schemas + +dataDatabricksSchemas.DataDatabricksSchemas.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksSchemas 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 DataDatabricksSchemas to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksSchemas that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/schemas#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 DataDatabricksSchemas to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSchemas.typescript.md b/docs/dataDatabricksSchemas.typescript.md index 635b0a9d2..7c66523d9 100644 --- a/docs/dataDatabricksSchemas.typescript.md +++ b/docs/dataDatabricksSchemas.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 DataDatabricksSchemas resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksSchemas.DataDatabricksSchemas.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksSchemas } from '@cdktf/provider-databricks' + +dataDatabricksSchemas.DataDatabricksSchemas.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksSchemas 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 DataDatabricksSchemas to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSchemas that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/schemas#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 DataDatabricksSchemas to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipal.csharp.md b/docs/dataDatabricksServicePrincipal.csharp.md index 861a6ca4f..f7eb42499 100644 --- a/docs/dataDatabricksServicePrincipal.csharp.md +++ b/docs/dataDatabricksServicePrincipal.csharp.md @@ -327,6 +327,7 @@ private void ResetSpId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksServicePrincipal resource upon running "cdktf plan ". | --- @@ -390,6 +391,50 @@ DataDatabricksServicePrincipal.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksServicePrincipal.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipal 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 DataDatabricksServicePrincipal to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principal#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 DataDatabricksServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipal.go.md b/docs/dataDatabricksServicePrincipal.go.md index e18625b4d..f304e4808 100644 --- a/docs/dataDatabricksServicePrincipal.go.md +++ b/docs/dataDatabricksServicePrincipal.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/datadatabricksserviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipal" datadatabricksserviceprincipal.NewDataDatabricksServicePrincipal(scope Construct, id *string, config DataDatabricksServicePrincipalConfig) DataDatabricksServicePrincipal ``` @@ -327,13 +327,14 @@ func ResetSpId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksServicePrincipal resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipal" datadatabricksserviceprincipal.DataDatabricksServicePrincipal_IsConstruct(x interface{}) *bool ``` @@ -365,7 +366,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipal" datadatabricksserviceprincipal.DataDatabricksServicePrincipal_IsTerraformElement(x interface{}) *bool ``` @@ -379,7 +380,7 @@ datadatabricksserviceprincipal.DataDatabricksServicePrincipal_IsTerraformElement ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipal" datadatabricksserviceprincipal.DataDatabricksServicePrincipal_IsTerraformDataSource(x interface{}) *bool ``` @@ -390,6 +391,50 @@ datadatabricksserviceprincipal.DataDatabricksServicePrincipal_IsTerraformDataSou --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipal" + +datadatabricksserviceprincipal.DataDatabricksServicePrincipal_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipal 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 DataDatabricksServicePrincipal to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principal#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 DataDatabricksServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -754,7 +799,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipal" &datadatabricksserviceprincipal.DataDatabricksServicePrincipalConfig { Connection: interface{}, diff --git a/docs/dataDatabricksServicePrincipal.java.md b/docs/dataDatabricksServicePrincipal.java.md index b79dd0926..274ffbf71 100644 --- a/docs/dataDatabricksServicePrincipal.java.md +++ b/docs/dataDatabricksServicePrincipal.java.md @@ -475,6 +475,7 @@ public void resetSpId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksServicePrincipal resource upon running "cdktf plan ". | --- @@ -538,6 +539,50 @@ DataDatabricksServicePrincipal.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_service_principal.DataDatabricksServicePrincipal; + +DataDatabricksServicePrincipal.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksServicePrincipal.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipal 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 DataDatabricksServicePrincipal to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principal#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 DataDatabricksServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipal.python.md b/docs/dataDatabricksServicePrincipal.python.md index 41b3173f0..8b1ce631b 100644 --- a/docs/dataDatabricksServicePrincipal.python.md +++ b/docs/dataDatabricksServicePrincipal.python.md @@ -497,6 +497,7 @@ def reset_sp_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 DataDatabricksServicePrincipal resource upon running "cdktf plan ". | --- @@ -566,6 +567,55 @@ dataDatabricksServicePrincipal.DataDatabricksServicePrincipal.is_terraform_data_ --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_service_principal + +dataDatabricksServicePrincipal.DataDatabricksServicePrincipal.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipal 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 DataDatabricksServicePrincipal to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principal#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 DataDatabricksServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipal.typescript.md b/docs/dataDatabricksServicePrincipal.typescript.md index 2d1c0f7ef..cbeba5a83 100644 --- a/docs/dataDatabricksServicePrincipal.typescript.md +++ b/docs/dataDatabricksServicePrincipal.typescript.md @@ -327,6 +327,7 @@ public resetSpId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksServicePrincipal resource upon running "cdktf plan ". | --- @@ -390,6 +391,50 @@ dataDatabricksServicePrincipal.DataDatabricksServicePrincipal.isTerraformDataSou --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksServicePrincipal } from '@cdktf/provider-databricks' + +dataDatabricksServicePrincipal.DataDatabricksServicePrincipal.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipal 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 DataDatabricksServicePrincipal to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principal#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 DataDatabricksServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipals.csharp.md b/docs/dataDatabricksServicePrincipals.csharp.md index b8bc1016f..c3f481006 100644 --- a/docs/dataDatabricksServicePrincipals.csharp.md +++ b/docs/dataDatabricksServicePrincipals.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 DataDatabricksServicePrincipals resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ DataDatabricksServicePrincipals.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksServicePrincipals.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipals 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 DataDatabricksServicePrincipals to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksServicePrincipals that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principals#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 DataDatabricksServicePrincipals to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipals.go.md b/docs/dataDatabricksServicePrincipals.go.md index 7508a117d..bad609728 100644 --- a/docs/dataDatabricksServicePrincipals.go.md +++ b/docs/dataDatabricksServicePrincipals.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/datadatabricksserviceprincipals" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipals" datadatabricksserviceprincipals.NewDataDatabricksServicePrincipals(scope Construct, id *string, config DataDatabricksServicePrincipalsConfig) DataDatabricksServicePrincipals ``` @@ -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 DataDatabricksServicePrincipals resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipals" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipals" datadatabricksserviceprincipals.DataDatabricksServicePrincipals_IsConstruct(x interface{}) *bool ``` @@ -323,7 +324,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipals" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipals" datadatabricksserviceprincipals.DataDatabricksServicePrincipals_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +338,7 @@ datadatabricksserviceprincipals.DataDatabricksServicePrincipals_IsTerraformEleme ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipals" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipals" datadatabricksserviceprincipals.DataDatabricksServicePrincipals_IsTerraformDataSource(x interface{}) *bool ``` @@ -348,6 +349,50 @@ datadatabricksserviceprincipals.DataDatabricksServicePrincipals_IsTerraformDataS --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipals" + +datadatabricksserviceprincipals.DataDatabricksServicePrincipals_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipals 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 DataDatabricksServicePrincipals to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksServicePrincipals that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principals#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 DataDatabricksServicePrincipals to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -580,7 +625,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksserviceprincipals" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksserviceprincipals" &datadatabricksserviceprincipals.DataDatabricksServicePrincipalsConfig { Connection: interface{}, diff --git a/docs/dataDatabricksServicePrincipals.java.md b/docs/dataDatabricksServicePrincipals.java.md index ee8465521..7afef80ee 100644 --- a/docs/dataDatabricksServicePrincipals.java.md +++ b/docs/dataDatabricksServicePrincipals.java.md @@ -372,6 +372,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksServicePrincipals resource upon running "cdktf plan ". | --- @@ -435,6 +436,50 @@ DataDatabricksServicePrincipals.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_service_principals.DataDatabricksServicePrincipals; + +DataDatabricksServicePrincipals.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksServicePrincipals.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipals 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 DataDatabricksServicePrincipals to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksServicePrincipals that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principals#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 DataDatabricksServicePrincipals to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipals.python.md b/docs/dataDatabricksServicePrincipals.python.md index e56cd1b2a..72f388551 100644 --- a/docs/dataDatabricksServicePrincipals.python.md +++ b/docs/dataDatabricksServicePrincipals.python.md @@ -395,6 +395,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 DataDatabricksServicePrincipals resource upon running "cdktf plan ". | --- @@ -464,6 +465,55 @@ dataDatabricksServicePrincipals.DataDatabricksServicePrincipals.is_terraform_dat --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_service_principals + +dataDatabricksServicePrincipals.DataDatabricksServicePrincipals.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipals 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 DataDatabricksServicePrincipals to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksServicePrincipals that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principals#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 DataDatabricksServicePrincipals to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksServicePrincipals.typescript.md b/docs/dataDatabricksServicePrincipals.typescript.md index 066db6bf6..2460e916b 100644 --- a/docs/dataDatabricksServicePrincipals.typescript.md +++ b/docs/dataDatabricksServicePrincipals.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 DataDatabricksServicePrincipals resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ dataDatabricksServicePrincipals.DataDatabricksServicePrincipals.isTerraformDataS --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksServicePrincipals } from '@cdktf/provider-databricks' + +dataDatabricksServicePrincipals.DataDatabricksServicePrincipals.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksServicePrincipals 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 DataDatabricksServicePrincipals to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksServicePrincipals that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principals#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 DataDatabricksServicePrincipals to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShare.csharp.md b/docs/dataDatabricksShare.csharp.md index bb21ed467..f29f9337d 100644 --- a/docs/dataDatabricksShare.csharp.md +++ b/docs/dataDatabricksShare.csharp.md @@ -312,6 +312,7 @@ private void ResetObject() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksShare resource upon running "cdktf plan ". | --- @@ -375,6 +376,50 @@ DataDatabricksShare.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksShare.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksShare 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 DataDatabricksShare to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksShare that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/share#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 DataDatabricksShare to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShare.go.md b/docs/dataDatabricksShare.go.md index 92d335e6e..f024b5d13 100644 --- a/docs/dataDatabricksShare.go.md +++ b/docs/dataDatabricksShare.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/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShare(scope Construct, id *string, config DataDatabricksShareConfig) DataDatabricksShare ``` @@ -312,13 +312,14 @@ func ResetObject() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksShare resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.DataDatabricksShare_IsConstruct(x interface{}) *bool ``` @@ -350,7 +351,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.DataDatabricksShare_IsTerraformElement(x interface{}) *bool ``` @@ -364,7 +365,7 @@ datadatabricksshare.DataDatabricksShare_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.DataDatabricksShare_IsTerraformDataSource(x interface{}) *bool ``` @@ -375,6 +376,50 @@ datadatabricksshare.DataDatabricksShare_IsTerraformDataSource(x interface{}) *bo --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" + +datadatabricksshare.DataDatabricksShare_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksShare 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 DataDatabricksShare to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksShare that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/share#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 DataDatabricksShare to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -651,7 +696,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" &datadatabricksshare.DataDatabricksShareConfig { Connection: interface{}, @@ -828,7 +873,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" &datadatabricksshare.DataDatabricksShareObject { DataObjectType: *string, @@ -1002,7 +1047,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" &datadatabricksshare.DataDatabricksShareObjectPartition { Value: interface{}, @@ -1036,7 +1081,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" &datadatabricksshare.DataDatabricksShareObjectPartitionValue { Name: *string, @@ -1112,7 +1157,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShareObjectList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksShareObjectList ``` @@ -1255,7 +1300,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShareObjectOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksShareObjectOutputReference ``` @@ -1840,7 +1885,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShareObjectPartitionList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksShareObjectPartitionList ``` @@ -1983,7 +2028,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShareObjectPartitionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksShareObjectPartitionOutputReference ``` @@ -2285,7 +2330,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShareObjectPartitionValueList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksShareObjectPartitionValueList ``` @@ -2428,7 +2473,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshare" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshare" datadatabricksshare.NewDataDatabricksShareObjectPartitionValueOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksShareObjectPartitionValueOutputReference ``` diff --git a/docs/dataDatabricksShare.java.md b/docs/dataDatabricksShare.java.md index 9af83fa1c..ee79e7799 100644 --- a/docs/dataDatabricksShare.java.md +++ b/docs/dataDatabricksShare.java.md @@ -422,6 +422,7 @@ public void resetObject() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksShare resource upon running "cdktf plan ". | --- @@ -485,6 +486,50 @@ DataDatabricksShare.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_share.DataDatabricksShare; + +DataDatabricksShare.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksShare.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksShare 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 DataDatabricksShare to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksShare that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/share#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 DataDatabricksShare to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShare.python.md b/docs/dataDatabricksShare.python.md index d52ae634a..08ea5c0c9 100644 --- a/docs/dataDatabricksShare.python.md +++ b/docs/dataDatabricksShare.python.md @@ -446,6 +446,7 @@ def reset_object() -> 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 DataDatabricksShare resource upon running "cdktf plan ". | --- @@ -515,6 +516,55 @@ dataDatabricksShare.DataDatabricksShare.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_share + +dataDatabricksShare.DataDatabricksShare.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksShare 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 DataDatabricksShare to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksShare that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/share#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 DataDatabricksShare to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShare.typescript.md b/docs/dataDatabricksShare.typescript.md index 0a92f64b1..14c6931ed 100644 --- a/docs/dataDatabricksShare.typescript.md +++ b/docs/dataDatabricksShare.typescript.md @@ -312,6 +312,7 @@ public resetObject(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksShare resource upon running "cdktf plan ". | --- @@ -375,6 +376,50 @@ dataDatabricksShare.DataDatabricksShare.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksShare } from '@cdktf/provider-databricks' + +dataDatabricksShare.DataDatabricksShare.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksShare 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 DataDatabricksShare to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksShare that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/share#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 DataDatabricksShare to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShares.csharp.md b/docs/dataDatabricksShares.csharp.md index 7a5281c23..c249c3374 100644 --- a/docs/dataDatabricksShares.csharp.md +++ b/docs/dataDatabricksShares.csharp.md @@ -278,6 +278,7 @@ private void ResetShares() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksShares resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksShares.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksShares.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksShares 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 DataDatabricksShares to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksShares that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/shares#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 DataDatabricksShares to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShares.go.md b/docs/dataDatabricksShares.go.md index 5e3b0bab0..de4738c5f 100644 --- a/docs/dataDatabricksShares.go.md +++ b/docs/dataDatabricksShares.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/datadatabricksshares" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshares" datadatabricksshares.NewDataDatabricksShares(scope Construct, id *string, config DataDatabricksSharesConfig) DataDatabricksShares ``` @@ -278,13 +278,14 @@ func ResetShares() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksShares resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshares" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshares" datadatabricksshares.DataDatabricksShares_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshares" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshares" datadatabricksshares.DataDatabricksShares_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksshares.DataDatabricksShares_IsTerraformElement(x interface{}) *boo ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksshares" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshares" datadatabricksshares.DataDatabricksShares_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksshares.DataDatabricksShares_IsTerraformDataSource(x interface{}) * --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshares" + +datadatabricksshares.DataDatabricksShares_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksShares 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 DataDatabricksShares to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksShares that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/shares#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 DataDatabricksShares 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/datadatabricksshares" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksshares" &datadatabricksshares.DataDatabricksSharesConfig { Connection: interface{}, diff --git a/docs/dataDatabricksShares.java.md b/docs/dataDatabricksShares.java.md index 588cee201..22c3059c9 100644 --- a/docs/dataDatabricksShares.java.md +++ b/docs/dataDatabricksShares.java.md @@ -355,6 +355,7 @@ public void resetShares() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksShares resource upon running "cdktf plan ". | --- @@ -418,6 +419,50 @@ DataDatabricksShares.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_shares.DataDatabricksShares; + +DataDatabricksShares.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksShares.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksShares 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 DataDatabricksShares to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksShares that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/shares#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 DataDatabricksShares to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShares.python.md b/docs/dataDatabricksShares.python.md index cdcde99be..fb48b5d2b 100644 --- a/docs/dataDatabricksShares.python.md +++ b/docs/dataDatabricksShares.python.md @@ -378,6 +378,7 @@ def reset_shares() -> 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 DataDatabricksShares resource upon running "cdktf plan ". | --- @@ -447,6 +448,55 @@ dataDatabricksShares.DataDatabricksShares.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_shares + +dataDatabricksShares.DataDatabricksShares.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksShares 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 DataDatabricksShares to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksShares that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/shares#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 DataDatabricksShares to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksShares.typescript.md b/docs/dataDatabricksShares.typescript.md index 2586fb4bb..b170b4bce 100644 --- a/docs/dataDatabricksShares.typescript.md +++ b/docs/dataDatabricksShares.typescript.md @@ -278,6 +278,7 @@ public resetShares(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksShares resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksShares.DataDatabricksShares.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksShares } from '@cdktf/provider-databricks' + +dataDatabricksShares.DataDatabricksShares.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksShares 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 DataDatabricksShares to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksShares that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/shares#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 DataDatabricksShares to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSparkVersion.csharp.md b/docs/dataDatabricksSparkVersion.csharp.md index af9ff6231..09253742b 100644 --- a/docs/dataDatabricksSparkVersion.csharp.md +++ b/docs/dataDatabricksSparkVersion.csharp.md @@ -341,6 +341,7 @@ private void ResetSparkVersion() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksSparkVersion resource upon running "cdktf plan ". | --- @@ -404,6 +405,50 @@ DataDatabricksSparkVersion.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksSparkVersion.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksSparkVersion 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 DataDatabricksSparkVersion to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSparkVersion that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/spark_version#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 DataDatabricksSparkVersion to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSparkVersion.go.md b/docs/dataDatabricksSparkVersion.go.md index c13ae09fa..457f4624e 100644 --- a/docs/dataDatabricksSparkVersion.go.md +++ b/docs/dataDatabricksSparkVersion.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/datadatabrickssparkversion" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssparkversion" datadatabrickssparkversion.NewDataDatabricksSparkVersion(scope Construct, id *string, config DataDatabricksSparkVersionConfig) DataDatabricksSparkVersion ``` @@ -341,13 +341,14 @@ func ResetSparkVersion() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksSparkVersion resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssparkversion" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssparkversion" datadatabrickssparkversion.DataDatabricksSparkVersion_IsConstruct(x interface{}) *bool ``` @@ -379,7 +380,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssparkversion" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssparkversion" datadatabrickssparkversion.DataDatabricksSparkVersion_IsTerraformElement(x interface{}) *bool ``` @@ -393,7 +394,7 @@ datadatabrickssparkversion.DataDatabricksSparkVersion_IsTerraformElement(x inter ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssparkversion" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssparkversion" datadatabrickssparkversion.DataDatabricksSparkVersion_IsTerraformDataSource(x interface{}) *bool ``` @@ -404,6 +405,50 @@ datadatabrickssparkversion.DataDatabricksSparkVersion_IsTerraformDataSource(x in --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssparkversion" + +datadatabrickssparkversion.DataDatabricksSparkVersion_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksSparkVersion 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 DataDatabricksSparkVersion to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksSparkVersion that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/spark_version#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 DataDatabricksSparkVersion to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -812,7 +857,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssparkversion" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssparkversion" &datadatabrickssparkversion.DataDatabricksSparkVersionConfig { Connection: interface{}, diff --git a/docs/dataDatabricksSparkVersion.java.md b/docs/dataDatabricksSparkVersion.java.md index 9625bb880..f22626e41 100644 --- a/docs/dataDatabricksSparkVersion.java.md +++ b/docs/dataDatabricksSparkVersion.java.md @@ -516,6 +516,7 @@ public void resetSparkVersion() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSparkVersion resource upon running "cdktf plan ". | --- @@ -579,6 +580,50 @@ DataDatabricksSparkVersion.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_spark_version.DataDatabricksSparkVersion; + +DataDatabricksSparkVersion.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksSparkVersion.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksSparkVersion 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 DataDatabricksSparkVersion to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksSparkVersion that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/spark_version#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 DataDatabricksSparkVersion to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSparkVersion.python.md b/docs/dataDatabricksSparkVersion.python.md index 50722a580..e4c970810 100644 --- a/docs/dataDatabricksSparkVersion.python.md +++ b/docs/dataDatabricksSparkVersion.python.md @@ -531,6 +531,7 @@ def reset_spark_version() -> 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 DataDatabricksSparkVersion resource upon running "cdktf plan ". | --- @@ -600,6 +601,55 @@ dataDatabricksSparkVersion.DataDatabricksSparkVersion.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_spark_version + +dataDatabricksSparkVersion.DataDatabricksSparkVersion.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksSparkVersion 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 DataDatabricksSparkVersion to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksSparkVersion that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/spark_version#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 DataDatabricksSparkVersion to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSparkVersion.typescript.md b/docs/dataDatabricksSparkVersion.typescript.md index df98b4219..6aa009b1c 100644 --- a/docs/dataDatabricksSparkVersion.typescript.md +++ b/docs/dataDatabricksSparkVersion.typescript.md @@ -341,6 +341,7 @@ public resetSparkVersion(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSparkVersion resource upon running "cdktf plan ". | --- @@ -404,6 +405,50 @@ dataDatabricksSparkVersion.DataDatabricksSparkVersion.isTerraformDataSource(x: a --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksSparkVersion } from '@cdktf/provider-databricks' + +dataDatabricksSparkVersion.DataDatabricksSparkVersion.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksSparkVersion 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 DataDatabricksSparkVersion to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSparkVersion that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/spark_version#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 DataDatabricksSparkVersion to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouse.csharp.md b/docs/dataDatabricksSqlWarehouse.csharp.md index e49c6b146..00c68aa76 100644 --- a/docs/dataDatabricksSqlWarehouse.csharp.md +++ b/docs/dataDatabricksSqlWarehouse.csharp.md @@ -422,6 +422,7 @@ private void ResetTags() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouse resource upon running "cdktf plan ". | --- @@ -485,6 +486,50 @@ DataDatabricksSqlWarehouse.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksSqlWarehouse.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouse 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 DataDatabricksSqlWarehouse to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSqlWarehouse that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouse#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 DataDatabricksSqlWarehouse to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouse.go.md b/docs/dataDatabricksSqlWarehouse.go.md index c962f75d2..734a250b0 100644 --- a/docs/dataDatabricksSqlWarehouse.go.md +++ b/docs/dataDatabricksSqlWarehouse.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/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.NewDataDatabricksSqlWarehouse(scope Construct, id *string, config DataDatabricksSqlWarehouseConfig) DataDatabricksSqlWarehouse ``` @@ -422,13 +422,14 @@ func ResetTags() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouse resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.DataDatabricksSqlWarehouse_IsConstruct(x interface{}) *bool ``` @@ -460,7 +461,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.DataDatabricksSqlWarehouse_IsTerraformElement(x interface{}) *bool ``` @@ -474,7 +475,7 @@ datadatabrickssqlwarehouse.DataDatabricksSqlWarehouse_IsTerraformElement(x inter ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.DataDatabricksSqlWarehouse_IsTerraformDataSource(x interface{}) *bool ``` @@ -485,6 +486,50 @@ datadatabrickssqlwarehouse.DataDatabricksSqlWarehouse_IsTerraformDataSource(x in --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" + +datadatabrickssqlwarehouse.DataDatabricksSqlWarehouse_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouse 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 DataDatabricksSqlWarehouse to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksSqlWarehouse that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouse#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 DataDatabricksSqlWarehouse to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1025,7 +1070,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" &datadatabrickssqlwarehouse.DataDatabricksSqlWarehouseChannel { Name: *string, @@ -1057,7 +1102,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" &datadatabrickssqlwarehouse.DataDatabricksSqlWarehouseConfig { Connection: interface{}, @@ -1068,7 +1113,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider, Provisioners: *[]interface{}, AutoStopMins: *f64, - Channel: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouseChannel, + Channel: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouseChannel, ClusterSize: *string, DataSourceId: *string, EnablePhoton: interface{}, @@ -1080,10 +1125,10 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabri MinNumClusters: *f64, Name: *string, NumClusters: *f64, - OdbcParams: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouseOdbcParams, + OdbcParams: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouseOdbcParams, SpotInstancePolicy: *string, State: *string, - Tags: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouseTags, + Tags: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouseTags, } ``` @@ -1406,7 +1451,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" &datadatabrickssqlwarehouse.DataDatabricksSqlWarehouseOdbcParams { Path: *string, @@ -1494,7 +1539,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" &datadatabrickssqlwarehouse.DataDatabricksSqlWarehouseTags { CustomTags: interface{}, @@ -1528,7 +1573,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" &datadatabrickssqlwarehouse.DataDatabricksSqlWarehouseTagsCustomTags { Key: *string, @@ -1576,7 +1621,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.NewDataDatabricksSqlWarehouseChannelOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksSqlWarehouseChannelOutputReference ``` @@ -1854,7 +1899,7 @@ func InternalValue() DataDatabricksSqlWarehouseChannel #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.NewDataDatabricksSqlWarehouseOdbcParamsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksSqlWarehouseOdbcParamsOutputReference ``` @@ -2227,7 +2272,7 @@ func InternalValue() DataDatabricksSqlWarehouseOdbcParams #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.NewDataDatabricksSqlWarehouseTagsCustomTagsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataDatabricksSqlWarehouseTagsCustomTagsList ``` @@ -2370,7 +2415,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.NewDataDatabricksSqlWarehouseTagsCustomTagsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataDatabricksSqlWarehouseTagsCustomTagsOutputReference ``` @@ -2681,7 +2726,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouse" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouse" datadatabrickssqlwarehouse.NewDataDatabricksSqlWarehouseTagsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) DataDatabricksSqlWarehouseTagsOutputReference ``` diff --git a/docs/dataDatabricksSqlWarehouse.java.md b/docs/dataDatabricksSqlWarehouse.java.md index 22d1fc33a..7ee081872 100644 --- a/docs/dataDatabricksSqlWarehouse.java.md +++ b/docs/dataDatabricksSqlWarehouse.java.md @@ -657,6 +657,7 @@ public void resetTags() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouse resource upon running "cdktf plan ". | --- @@ -720,6 +721,50 @@ DataDatabricksSqlWarehouse.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_sql_warehouse.DataDatabricksSqlWarehouse; + +DataDatabricksSqlWarehouse.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksSqlWarehouse.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouse 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 DataDatabricksSqlWarehouse to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksSqlWarehouse that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouse#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 DataDatabricksSqlWarehouse to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouse.python.md b/docs/dataDatabricksSqlWarehouse.python.md index 705a0757d..54017fbdf 100644 --- a/docs/dataDatabricksSqlWarehouse.python.md +++ b/docs/dataDatabricksSqlWarehouse.python.md @@ -728,6 +728,7 @@ def reset_tags() -> 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 DataDatabricksSqlWarehouse resource upon running "cdktf plan ". | --- @@ -797,6 +798,55 @@ dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouse.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_sql_warehouse + +dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouse.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouse 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 DataDatabricksSqlWarehouse to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksSqlWarehouse that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouse#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 DataDatabricksSqlWarehouse to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouse.typescript.md b/docs/dataDatabricksSqlWarehouse.typescript.md index 6fbb56ddf..ba990ccfe 100644 --- a/docs/dataDatabricksSqlWarehouse.typescript.md +++ b/docs/dataDatabricksSqlWarehouse.typescript.md @@ -422,6 +422,7 @@ public resetTags(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouse resource upon running "cdktf plan ". | --- @@ -485,6 +486,50 @@ dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouse.isTerraformDataSource(x: a --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksSqlWarehouse } from '@cdktf/provider-databricks' + +dataDatabricksSqlWarehouse.DataDatabricksSqlWarehouse.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouse 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 DataDatabricksSqlWarehouse to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSqlWarehouse that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouse#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 DataDatabricksSqlWarehouse to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouses.csharp.md b/docs/dataDatabricksSqlWarehouses.csharp.md index def718013..9c42706a6 100644 --- a/docs/dataDatabricksSqlWarehouses.csharp.md +++ b/docs/dataDatabricksSqlWarehouses.csharp.md @@ -285,6 +285,7 @@ private void ResetWarehouseNameContains() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouses resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ DataDatabricksSqlWarehouses.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksSqlWarehouses.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouses 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 DataDatabricksSqlWarehouses to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSqlWarehouses that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouses#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 DataDatabricksSqlWarehouses to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouses.go.md b/docs/dataDatabricksSqlWarehouses.go.md index acc8292da..54d71c955 100644 --- a/docs/dataDatabricksSqlWarehouses.go.md +++ b/docs/dataDatabricksSqlWarehouses.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/datadatabrickssqlwarehouses" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouses" datadatabrickssqlwarehouses.NewDataDatabricksSqlWarehouses(scope Construct, id *string, config DataDatabricksSqlWarehousesConfig) DataDatabricksSqlWarehouses ``` @@ -285,13 +285,14 @@ func ResetWarehouseNameContains() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouses resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouses" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouses" datadatabrickssqlwarehouses.DataDatabricksSqlWarehouses_IsConstruct(x interface{}) *bool ``` @@ -323,7 +324,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouses" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouses" datadatabrickssqlwarehouses.DataDatabricksSqlWarehouses_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +338,7 @@ datadatabrickssqlwarehouses.DataDatabricksSqlWarehouses_IsTerraformElement(x int ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouses" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouses" datadatabrickssqlwarehouses.DataDatabricksSqlWarehouses_IsTerraformDataSource(x interface{}) *bool ``` @@ -348,6 +349,50 @@ datadatabrickssqlwarehouses.DataDatabricksSqlWarehouses_IsTerraformDataSource(x --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouses" + +datadatabrickssqlwarehouses.DataDatabricksSqlWarehouses_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouses 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 DataDatabricksSqlWarehouses to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksSqlWarehouses that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouses#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 DataDatabricksSqlWarehouses to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -580,7 +625,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickssqlwarehouses" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickssqlwarehouses" &datadatabrickssqlwarehouses.DataDatabricksSqlWarehousesConfig { Connection: interface{}, diff --git a/docs/dataDatabricksSqlWarehouses.java.md b/docs/dataDatabricksSqlWarehouses.java.md index 70f90e385..c3b5d909c 100644 --- a/docs/dataDatabricksSqlWarehouses.java.md +++ b/docs/dataDatabricksSqlWarehouses.java.md @@ -372,6 +372,7 @@ public void resetWarehouseNameContains() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouses resource upon running "cdktf plan ". | --- @@ -435,6 +436,50 @@ DataDatabricksSqlWarehouses.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_sql_warehouses.DataDatabricksSqlWarehouses; + +DataDatabricksSqlWarehouses.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksSqlWarehouses.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouses 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 DataDatabricksSqlWarehouses to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksSqlWarehouses that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouses#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 DataDatabricksSqlWarehouses to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouses.python.md b/docs/dataDatabricksSqlWarehouses.python.md index 9b07a3c17..d2f773d5e 100644 --- a/docs/dataDatabricksSqlWarehouses.python.md +++ b/docs/dataDatabricksSqlWarehouses.python.md @@ -395,6 +395,7 @@ def reset_warehouse_name_contains() -> 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 DataDatabricksSqlWarehouses resource upon running "cdktf plan ". | --- @@ -464,6 +465,55 @@ dataDatabricksSqlWarehouses.DataDatabricksSqlWarehouses.is_terraform_data_source --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_sql_warehouses + +dataDatabricksSqlWarehouses.DataDatabricksSqlWarehouses.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouses 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 DataDatabricksSqlWarehouses to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksSqlWarehouses that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouses#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 DataDatabricksSqlWarehouses to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksSqlWarehouses.typescript.md b/docs/dataDatabricksSqlWarehouses.typescript.md index 08f9a67ba..2b89966eb 100644 --- a/docs/dataDatabricksSqlWarehouses.typescript.md +++ b/docs/dataDatabricksSqlWarehouses.typescript.md @@ -285,6 +285,7 @@ public resetWarehouseNameContains(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksSqlWarehouses resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ dataDatabricksSqlWarehouses.DataDatabricksSqlWarehouses.isTerraformDataSource(x: --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksSqlWarehouses } from '@cdktf/provider-databricks' + +dataDatabricksSqlWarehouses.DataDatabricksSqlWarehouses.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksSqlWarehouses 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 DataDatabricksSqlWarehouses to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksSqlWarehouses that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouses#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 DataDatabricksSqlWarehouses to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksTables.csharp.md b/docs/dataDatabricksTables.csharp.md index 126c11c3e..0637f8f9e 100644 --- a/docs/dataDatabricksTables.csharp.md +++ b/docs/dataDatabricksTables.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 DataDatabricksTables resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksTables.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksTables.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksTables 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 DataDatabricksTables to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksTables that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/tables#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 DataDatabricksTables to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksTables.go.md b/docs/dataDatabricksTables.go.md index c817e99c0..bc183e4b9 100644 --- a/docs/dataDatabricksTables.go.md +++ b/docs/dataDatabricksTables.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/datadatabrickstables" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickstables" datadatabrickstables.NewDataDatabricksTables(scope Construct, id *string, config DataDatabricksTablesConfig) DataDatabricksTables ``` @@ -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 DataDatabricksTables resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickstables" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickstables" datadatabrickstables.DataDatabricksTables_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickstables" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickstables" datadatabrickstables.DataDatabricksTables_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabrickstables.DataDatabricksTables_IsTerraformElement(x interface{}) *boo ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickstables" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickstables" datadatabrickstables.DataDatabricksTables_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabrickstables.DataDatabricksTables_IsTerraformDataSource(x interface{}) * --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickstables" + +datadatabrickstables.DataDatabricksTables_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksTables 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 DataDatabricksTables to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksTables that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/tables#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 DataDatabricksTables to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -595,7 +640,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickstables" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickstables" &datadatabrickstables.DataDatabricksTablesConfig { Connection: interface{}, diff --git a/docs/dataDatabricksTables.java.md b/docs/dataDatabricksTables.java.md index e178cafb2..5dadf7c96 100644 --- a/docs/dataDatabricksTables.java.md +++ b/docs/dataDatabricksTables.java.md @@ -375,6 +375,7 @@ public void resetIds() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksTables resource upon running "cdktf plan ". | --- @@ -438,6 +439,50 @@ DataDatabricksTables.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_tables.DataDatabricksTables; + +DataDatabricksTables.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksTables.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksTables 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 DataDatabricksTables to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksTables that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/tables#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 DataDatabricksTables to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksTables.python.md b/docs/dataDatabricksTables.python.md index da45f4f1e..433006b9a 100644 --- a/docs/dataDatabricksTables.python.md +++ b/docs/dataDatabricksTables.python.md @@ -398,6 +398,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 DataDatabricksTables resource upon running "cdktf plan ". | --- @@ -467,6 +468,55 @@ dataDatabricksTables.DataDatabricksTables.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_tables + +dataDatabricksTables.DataDatabricksTables.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksTables 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 DataDatabricksTables to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksTables that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/tables#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 DataDatabricksTables to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksTables.typescript.md b/docs/dataDatabricksTables.typescript.md index e594cbca6..7265c949d 100644 --- a/docs/dataDatabricksTables.typescript.md +++ b/docs/dataDatabricksTables.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 DataDatabricksTables resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksTables.DataDatabricksTables.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksTables } from '@cdktf/provider-databricks' + +dataDatabricksTables.DataDatabricksTables.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksTables 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 DataDatabricksTables to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksTables that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/tables#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 DataDatabricksTables to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksUser.csharp.md b/docs/dataDatabricksUser.csharp.md index b14493527..6f2dfda29 100644 --- a/docs/dataDatabricksUser.csharp.md +++ b/docs/dataDatabricksUser.csharp.md @@ -285,6 +285,7 @@ private void ResetUserName() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksUser resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ DataDatabricksUser.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksUser.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksUser 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 DataDatabricksUser to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksUser that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/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 DataDatabricksUser to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksUser.go.md b/docs/dataDatabricksUser.go.md index 026571906..332bac420 100644 --- a/docs/dataDatabricksUser.go.md +++ b/docs/dataDatabricksUser.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/datadatabricksuser" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksuser" datadatabricksuser.NewDataDatabricksUser(scope Construct, id *string, config DataDatabricksUserConfig) DataDatabricksUser ``` @@ -285,13 +285,14 @@ func ResetUserName() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformDataSource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DataDatabricksUser resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksuser" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksuser" datadatabricksuser.DataDatabricksUser_IsConstruct(x interface{}) *bool ``` @@ -323,7 +324,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksuser" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksuser" datadatabricksuser.DataDatabricksUser_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +338,7 @@ datadatabricksuser.DataDatabricksUser_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksuser" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksuser" datadatabricksuser.DataDatabricksUser_IsTerraformDataSource(x interface{}) *bool ``` @@ -348,6 +349,50 @@ datadatabricksuser.DataDatabricksUser_IsTerraformDataSource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksuser" + +datadatabricksuser.DataDatabricksUser_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksUser 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 DataDatabricksUser to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksUser that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/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 DataDatabricksUser to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -657,7 +702,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksuser" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksuser" &datadatabricksuser.DataDatabricksUserConfig { Connection: interface{}, diff --git a/docs/dataDatabricksUser.java.md b/docs/dataDatabricksUser.java.md index 23614d850..84c7f2807 100644 --- a/docs/dataDatabricksUser.java.md +++ b/docs/dataDatabricksUser.java.md @@ -372,6 +372,7 @@ public void resetUserName() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksUser resource upon running "cdktf plan ". | --- @@ -435,6 +436,50 @@ DataDatabricksUser.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_user.DataDatabricksUser; + +DataDatabricksUser.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksUser.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksUser 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 DataDatabricksUser to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksUser that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/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 DataDatabricksUser to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksUser.python.md b/docs/dataDatabricksUser.python.md index 7d6ece7a4..055c8442e 100644 --- a/docs/dataDatabricksUser.python.md +++ b/docs/dataDatabricksUser.python.md @@ -395,6 +395,7 @@ def reset_user_name() -> 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 DataDatabricksUser resource upon running "cdktf plan ". | --- @@ -464,6 +465,55 @@ dataDatabricksUser.DataDatabricksUser.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_user + +dataDatabricksUser.DataDatabricksUser.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksUser 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 DataDatabricksUser to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksUser that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/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 DataDatabricksUser to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksUser.typescript.md b/docs/dataDatabricksUser.typescript.md index 4ddc5eaf1..68310cd10 100644 --- a/docs/dataDatabricksUser.typescript.md +++ b/docs/dataDatabricksUser.typescript.md @@ -285,6 +285,7 @@ public resetUserName(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksUser resource upon running "cdktf plan ". | --- @@ -348,6 +349,50 @@ dataDatabricksUser.DataDatabricksUser.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksUser } from '@cdktf/provider-databricks' + +dataDatabricksUser.DataDatabricksUser.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksUser 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 DataDatabricksUser to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksUser that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/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 DataDatabricksUser to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksViews.csharp.md b/docs/dataDatabricksViews.csharp.md index c99f1cb7d..36344071d 100644 --- a/docs/dataDatabricksViews.csharp.md +++ b/docs/dataDatabricksViews.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 DataDatabricksViews resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ DataDatabricksViews.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksViews.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksViews 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 DataDatabricksViews to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksViews that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/views#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 DataDatabricksViews to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksViews.go.md b/docs/dataDatabricksViews.go.md index 66b0943fc..a2359ede3 100644 --- a/docs/dataDatabricksViews.go.md +++ b/docs/dataDatabricksViews.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/datadatabricksviews" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksviews" datadatabricksviews.NewDataDatabricksViews(scope Construct, id *string, config DataDatabricksViewsConfig) DataDatabricksViews ``` @@ -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 DataDatabricksViews resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksviews" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksviews" datadatabricksviews.DataDatabricksViews_IsConstruct(x interface{}) *bool ``` @@ -316,7 +317,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksviews" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksviews" datadatabricksviews.DataDatabricksViews_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +331,7 @@ datadatabricksviews.DataDatabricksViews_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksviews" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksviews" datadatabricksviews.DataDatabricksViews_IsTerraformDataSource(x interface{}) *bool ``` @@ -341,6 +342,50 @@ datadatabricksviews.DataDatabricksViews_IsTerraformDataSource(x interface{}) *bo --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksviews" + +datadatabricksviews.DataDatabricksViews_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksViews 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 DataDatabricksViews to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksViews that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/views#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 DataDatabricksViews to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -595,7 +640,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabricksviews" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabricksviews" &datadatabricksviews.DataDatabricksViewsConfig { Connection: interface{}, diff --git a/docs/dataDatabricksViews.java.md b/docs/dataDatabricksViews.java.md index 83a9bf7c4..b5bb811b1 100644 --- a/docs/dataDatabricksViews.java.md +++ b/docs/dataDatabricksViews.java.md @@ -375,6 +375,7 @@ public void resetIds() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformDataSource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DataDatabricksViews resource upon running "cdktf plan ". | --- @@ -438,6 +439,50 @@ DataDatabricksViews.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_views.DataDatabricksViews; + +DataDatabricksViews.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksViews.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksViews 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 DataDatabricksViews to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksViews that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/views#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 DataDatabricksViews to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksViews.python.md b/docs/dataDatabricksViews.python.md index cc88747c1..298f1d4ba 100644 --- a/docs/dataDatabricksViews.python.md +++ b/docs/dataDatabricksViews.python.md @@ -398,6 +398,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 DataDatabricksViews resource upon running "cdktf plan ". | --- @@ -467,6 +468,55 @@ dataDatabricksViews.DataDatabricksViews.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_views + +dataDatabricksViews.DataDatabricksViews.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksViews 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 DataDatabricksViews to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksViews that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/views#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 DataDatabricksViews to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksViews.typescript.md b/docs/dataDatabricksViews.typescript.md index a1f14b2dc..b755958bd 100644 --- a/docs/dataDatabricksViews.typescript.md +++ b/docs/dataDatabricksViews.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 DataDatabricksViews resource upon running "cdktf plan ". | --- @@ -341,6 +342,50 @@ dataDatabricksViews.DataDatabricksViews.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksViews } from '@cdktf/provider-databricks' + +dataDatabricksViews.DataDatabricksViews.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksViews 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 DataDatabricksViews to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksViews that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/views#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 DataDatabricksViews to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksZones.csharp.md b/docs/dataDatabricksZones.csharp.md index 686c2f37d..68e41bee2 100644 --- a/docs/dataDatabricksZones.csharp.md +++ b/docs/dataDatabricksZones.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 DataDatabricksZones resource upon running "cdktf plan ". | --- @@ -334,6 +335,50 @@ DataDatabricksZones.IsTerraformDataSource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DataDatabricksZones.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DataDatabricksZones 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 DataDatabricksZones to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksZones that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/zones#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 DataDatabricksZones to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksZones.go.md b/docs/dataDatabricksZones.go.md index fa6a9ee46..dee060368 100644 --- a/docs/dataDatabricksZones.go.md +++ b/docs/dataDatabricksZones.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/datadatabrickszones" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickszones" datadatabrickszones.NewDataDatabricksZones(scope Construct, id *string, config DataDatabricksZonesConfig) DataDatabricksZones ``` @@ -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 DataDatabricksZones resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickszones" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickszones" datadatabrickszones.DataDatabricksZones_IsConstruct(x interface{}) *bool ``` @@ -309,7 +310,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickszones" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickszones" datadatabrickszones.DataDatabricksZones_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +324,7 @@ datadatabrickszones.DataDatabricksZones_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickszones" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickszones" datadatabrickszones.DataDatabricksZones_IsTerraformDataSource(x interface{}) *bool ``` @@ -334,6 +335,50 @@ datadatabrickszones.DataDatabricksZones_IsTerraformDataSource(x interface{}) *bo --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickszones" + +datadatabrickszones.DataDatabricksZones_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DataDatabricksZones 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 DataDatabricksZones to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DataDatabricksZones that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/zones#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 DataDatabricksZones to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -544,7 +589,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/datadatabrickszones" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/datadatabrickszones" &datadatabrickszones.DataDatabricksZonesConfig { Connection: interface{}, diff --git a/docs/dataDatabricksZones.java.md b/docs/dataDatabricksZones.java.md index cc8d31987..b730bd3e4 100644 --- a/docs/dataDatabricksZones.java.md +++ b/docs/dataDatabricksZones.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 DataDatabricksZones resource upon running "cdktf plan ". | --- @@ -401,6 +402,50 @@ DataDatabricksZones.isTerraformDataSource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.data_databricks_zones.DataDatabricksZones; + +DataDatabricksZones.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DataDatabricksZones.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DataDatabricksZones 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 DataDatabricksZones to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DataDatabricksZones that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/zones#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 DataDatabricksZones to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksZones.python.md b/docs/dataDatabricksZones.python.md index a7bfaa4fd..06f83731b 100644 --- a/docs/dataDatabricksZones.python.md +++ b/docs/dataDatabricksZones.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 DataDatabricksZones resource upon running "cdktf plan ". | --- @@ -430,6 +431,55 @@ dataDatabricksZones.DataDatabricksZones.is_terraform_data_source( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import data_databricks_zones + +dataDatabricksZones.DataDatabricksZones.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DataDatabricksZones 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 DataDatabricksZones to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DataDatabricksZones that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/zones#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 DataDatabricksZones to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dataDatabricksZones.typescript.md b/docs/dataDatabricksZones.typescript.md index 17f5686ab..e8f6852c1 100644 --- a/docs/dataDatabricksZones.typescript.md +++ b/docs/dataDatabricksZones.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 DataDatabricksZones resource upon running "cdktf plan ". | --- @@ -334,6 +335,50 @@ dataDatabricksZones.DataDatabricksZones.isTerraformDataSource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dataDatabricksZones } from '@cdktf/provider-databricks' + +dataDatabricksZones.DataDatabricksZones.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DataDatabricksZones 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 DataDatabricksZones to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DataDatabricksZones that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/zones#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 DataDatabricksZones to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dbfsFile.csharp.md b/docs/dbfsFile.csharp.md index d6dcf22ae..504676677 100644 --- a/docs/dbfsFile.csharp.md +++ b/docs/dbfsFile.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. | | ResetContentBase64 | *No description.* | | ResetId | *No description.* | | ResetMd5 | *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. + +--- + ##### `ResetContentBase64` ```csharp @@ -292,6 +353,7 @@ private void ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DbfsFile resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ DbfsFile.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DbfsFile.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DbfsFile 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 DbfsFile to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DbfsFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 DbfsFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dbfsFile.go.md b/docs/dbfsFile.go.md index d6e7c3657..0ec43e29c 100644 --- a/docs/dbfsFile.go.md +++ b/docs/dbfsFile.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/dbfsfile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/dbfsfile" dbfsfile.NewDbfsFile(scope Construct, id *string, config DbfsFileConfig) DbfsFile ``` @@ -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. | | ResetContentBase64 | *No description.* | | ResetId | *No description.* | | ResetMd5 | *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. + +--- + ##### `ResetContentBase64` ```go @@ -292,13 +353,14 @@ func ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DbfsFile resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/dbfsfile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/dbfsfile" dbfsfile.DbfsFile_IsConstruct(x interface{}) *bool ``` @@ -330,7 +392,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/dbfsfile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/dbfsfile" dbfsfile.DbfsFile_IsTerraformElement(x interface{}) *bool ``` @@ -344,7 +406,7 @@ dbfsfile.DbfsFile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/dbfsfile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/dbfsfile" dbfsfile.DbfsFile_IsTerraformResource(x interface{}) *bool ``` @@ -355,6 +417,50 @@ dbfsfile.DbfsFile_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/dbfsfile" + +dbfsfile.DbfsFile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DbfsFile 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 DbfsFile to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DbfsFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 DbfsFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -675,7 +781,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/dbfsfile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/dbfsfile" &dbfsfile.DbfsFileConfig { Connection: interface{}, diff --git a/docs/dbfsFile.java.md b/docs/dbfsFile.java.md index 8ef4240c3..61d3eda68 100644 --- a/docs/dbfsFile.java.md +++ b/docs/dbfsFile.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. | | resetContentBase64 | *No description.* | | resetId | *No description.* | | resetMd5 | *No description.* | @@ -248,6 +251,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 @@ -356,6 +375,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 @@ -368,6 +406,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. + +--- + ##### `resetContentBase64` ```java @@ -399,6 +462,7 @@ public void resetSource() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DbfsFile resource upon running "cdktf plan ". | --- @@ -462,6 +526,50 @@ DbfsFile.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.dbfs_file.DbfsFile; + +DbfsFile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DbfsFile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DbfsFile 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 DbfsFile to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DbfsFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 DbfsFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dbfsFile.python.md b/docs/dbfsFile.python.md index 082c6d126..ebd0714ad 100644 --- a/docs/dbfsFile.python.md +++ b/docs/dbfsFile.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_content_base64 | *No description.* | | reset_id | *No description.* | | reset_md5 | *No description.* | @@ -251,6 +254,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 @@ -377,6 +398,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 @@ -391,6 +433,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_content_base64` ```python @@ -422,6 +491,7 @@ def reset_source() -> 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 DbfsFile resource upon running "cdktf plan ". | --- @@ -491,6 +561,55 @@ dbfsFile.DbfsFile.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import dbfs_file + +dbfsFile.DbfsFile.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DbfsFile 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 DbfsFile to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DbfsFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 DbfsFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/dbfsFile.typescript.md b/docs/dbfsFile.typescript.md index 0f492b76e..6bc27c9e5 100644 --- a/docs/dbfsFile.typescript.md +++ b/docs/dbfsFile.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. | | resetContentBase64 | *No description.* | | resetId | *No description.* | | resetMd5 | *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. + +--- + ##### `resetContentBase64` ```typescript @@ -292,6 +353,7 @@ public resetSource(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DbfsFile resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ dbfsFile.DbfsFile.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { dbfsFile } from '@cdktf/provider-databricks' + +dbfsFile.DbfsFile.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DbfsFile 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 DbfsFile to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DbfsFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 DbfsFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/directory.csharp.md b/docs/directory.csharp.md index b62bae58e..6b0331991 100644 --- a/docs/directory.csharp.md +++ b/docs/directory.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. | | ResetDeleteRecursive | *No description.* | | ResetId | *No description.* | | ResetObjectId | *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. + +--- + ##### `ResetDeleteRecursive` ```csharp @@ -285,6 +346,7 @@ private void ResetObjectId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Directory resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ Directory.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Directory.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Directory 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 Directory to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Directory that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Directory to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/directory.go.md b/docs/directory.go.md index a73639eae..5ea5da8c7 100644 --- a/docs/directory.go.md +++ b/docs/directory.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/directory" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/directory" directory.NewDirectory(scope Construct, id *string, config DirectoryConfig) Directory ``` @@ -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. | | ResetDeleteRecursive | *No description.* | | ResetId | *No description.* | | ResetObjectId | *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. + +--- + ##### `ResetDeleteRecursive` ```go @@ -285,13 +346,14 @@ func ResetObjectId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Directory resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/directory" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/directory" directory.Directory_IsConstruct(x interface{}) *bool ``` @@ -323,7 +385,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/directory" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/directory" directory.Directory_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +399,7 @@ directory.Directory_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/directory" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/directory" directory.Directory_IsTerraformResource(x interface{}) *bool ``` @@ -348,6 +410,50 @@ directory.Directory_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/directory" + +directory.Directory_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Directory 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 Directory to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Directory that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Directory to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -624,7 +730,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/directory" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/directory" &directory.DirectoryConfig { Connection: interface{}, diff --git a/docs/directory.java.md b/docs/directory.java.md index 1b238ebf2..d7a717aab 100644 --- a/docs/directory.java.md +++ b/docs/directory.java.md @@ -158,6 +158,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.* | @@ -167,7 +168,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. | | resetDeleteRecursive | *No description.* | | resetId | *No description.* | | resetObjectId | *No description.* | @@ -238,6 +241,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 @@ -346,6 +365,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 @@ -358,6 +396,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. + +--- + ##### `resetDeleteRecursive` ```java @@ -383,6 +446,7 @@ public void resetObjectId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Directory resource upon running "cdktf plan ". | --- @@ -446,6 +510,50 @@ Directory.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.directory.Directory; + +Directory.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Directory.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Directory 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 Directory to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Directory that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Directory to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/directory.python.md b/docs/directory.python.md index b6c3a420f..cb56ea70a 100644 --- a/docs/directory.python.md +++ b/docs/directory.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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_delete_recursive | *No description.* | | reset_id | *No description.* | | reset_object_id | *No description.* | @@ -240,6 +243,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 @@ -366,6 +387,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 @@ -380,6 +422,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_delete_recursive` ```python @@ -405,6 +474,7 @@ def reset_object_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 Directory resource upon running "cdktf plan ". | --- @@ -474,6 +544,55 @@ directory.Directory.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import directory + +directory.Directory.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Directory 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 Directory to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Directory that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Directory to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/directory.typescript.md b/docs/directory.typescript.md index 04ff25ac4..cec8de625 100644 --- a/docs/directory.typescript.md +++ b/docs/directory.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. | | resetDeleteRecursive | *No description.* | | resetId | *No description.* | | resetObjectId | *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. + +--- + ##### `resetDeleteRecursive` ```typescript @@ -285,6 +346,7 @@ public resetObjectId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Directory resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ directory.Directory.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { directory } from '@cdktf/provider-databricks' + +directory.Directory.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Directory 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 Directory to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Directory that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Directory to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/entitlements.csharp.md b/docs/entitlements.csharp.md index efb15df5d..2b91e4286 100644 --- a/docs/entitlements.csharp.md +++ b/docs/entitlements.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. | | ResetAllowClusterCreate | *No description.* | | ResetAllowInstancePoolCreate | *No description.* | | ResetDatabricksSqlAccess | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `ResetAllowClusterCreate` ```csharp @@ -320,6 +381,7 @@ private void ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Entitlements resource upon running "cdktf plan ". | --- @@ -383,6 +445,50 @@ Entitlements.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Entitlements.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Entitlements 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 Entitlements to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Entitlements that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/entitlements#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 Entitlements to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/entitlements.go.md b/docs/entitlements.go.md index 81e8a3059..98f7f07e2 100644 --- a/docs/entitlements.go.md +++ b/docs/entitlements.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/entitlements" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/entitlements" entitlements.NewEntitlements(scope Construct, id *string, config EntitlementsConfig) Entitlements ``` @@ -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. | | ResetAllowClusterCreate | *No description.* | | ResetAllowInstancePoolCreate | *No description.* | | ResetDatabricksSqlAccess | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `ResetAllowClusterCreate` ```go @@ -320,13 +381,14 @@ func ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Entitlements resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/entitlements" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/entitlements" entitlements.Entitlements_IsConstruct(x interface{}) *bool ``` @@ -358,7 +420,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/entitlements" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/entitlements" entitlements.Entitlements_IsTerraformElement(x interface{}) *bool ``` @@ -372,7 +434,7 @@ entitlements.Entitlements_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/entitlements" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/entitlements" entitlements.Entitlements_IsTerraformResource(x interface{}) *bool ``` @@ -383,6 +445,50 @@ entitlements.Entitlements_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/entitlements" + +entitlements.Entitlements_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Entitlements 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 Entitlements to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Entitlements that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/entitlements#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 Entitlements to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -747,7 +853,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/entitlements" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/entitlements" &entitlements.EntitlementsConfig { Connection: interface{}, diff --git a/docs/entitlements.java.md b/docs/entitlements.java.md index 00b1a1d19..deb2d2033 100644 --- a/docs/entitlements.java.md +++ b/docs/entitlements.java.md @@ -201,6 +201,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.* | @@ -210,7 +211,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. | | resetAllowClusterCreate | *No description.* | | resetAllowInstancePoolCreate | *No description.* | | resetDatabricksSqlAccess | *No description.* | @@ -286,6 +289,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 @@ -394,6 +413,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 @@ -406,6 +444,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. + +--- + ##### `resetAllowClusterCreate` ```java @@ -461,6 +524,7 @@ public void resetWorkspaceAccess() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Entitlements resource upon running "cdktf plan ". | --- @@ -524,6 +588,50 @@ Entitlements.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.entitlements.Entitlements; + +Entitlements.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Entitlements.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Entitlements 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 Entitlements to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Entitlements that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/entitlements#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 Entitlements to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/entitlements.python.md b/docs/entitlements.python.md index 2759d1ce0..ecc2774be 100644 --- a/docs/entitlements.python.md +++ b/docs/entitlements.python.md @@ -195,6 +195,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.* | @@ -204,7 +205,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_allow_cluster_create | *No description.* | | reset_allow_instance_pool_create | *No description.* | | reset_databricks_sql_access | *No description.* | @@ -285,6 +288,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 @@ -411,6 +432,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 @@ -425,6 +467,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_allow_cluster_create` ```python @@ -480,6 +549,7 @@ def reset_workspace_access() -> 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 Entitlements resource upon running "cdktf plan ". | --- @@ -549,6 +619,55 @@ entitlements.Entitlements.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import entitlements + +entitlements.Entitlements.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Entitlements 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 Entitlements to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Entitlements that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/entitlements#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 Entitlements to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/entitlements.typescript.md b/docs/entitlements.typescript.md index 1d018199d..eef3c7fc0 100644 --- a/docs/entitlements.typescript.md +++ b/docs/entitlements.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. | | resetAllowClusterCreate | *No description.* | | resetAllowInstancePoolCreate | *No description.* | | resetDatabricksSqlAccess | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `resetAllowClusterCreate` ```typescript @@ -320,6 +381,7 @@ public resetWorkspaceAccess(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Entitlements resource upon running "cdktf plan ". | --- @@ -383,6 +445,50 @@ entitlements.Entitlements.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { entitlements } from '@cdktf/provider-databricks' + +entitlements.Entitlements.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Entitlements 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 Entitlements to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Entitlements that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/entitlements#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 Entitlements to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/externalLocation.csharp.md b/docs/externalLocation.csharp.md index 06053962c..79c3a83f7 100644 --- a/docs/externalLocation.csharp.md +++ b/docs/externalLocation.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. | | PutEncryptionDetails | *No description.* | | ResetAccessPoint | *No description.* | | ResetComment | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `PutEncryptionDetails` ```csharp @@ -347,6 +408,7 @@ private void ResetSkipValidation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ExternalLocation resource upon running "cdktf plan ". | --- @@ -410,6 +472,50 @@ ExternalLocation.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +ExternalLocation.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a ExternalLocation 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 ExternalLocation to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing ExternalLocation that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/external_location#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 ExternalLocation to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/externalLocation.go.md b/docs/externalLocation.go.md index f91f3a94a..98baac582 100644 --- a/docs/externalLocation.go.md +++ b/docs/externalLocation.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/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" externallocation.NewExternalLocation(scope Construct, id *string, config ExternalLocationConfig) ExternalLocation ``` @@ -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. | | PutEncryptionDetails | *No description.* | | ResetAccessPoint | *No description.* | | ResetComment | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `PutEncryptionDetails` ```go @@ -347,13 +408,14 @@ func ResetSkipValidation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ExternalLocation resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" externallocation.ExternalLocation_IsConstruct(x interface{}) *bool ``` @@ -385,7 +447,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" externallocation.ExternalLocation_IsTerraformElement(x interface{}) *bool ``` @@ -399,7 +461,7 @@ externallocation.ExternalLocation_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" externallocation.ExternalLocation_IsTerraformResource(x interface{}) *bool ``` @@ -410,6 +472,50 @@ externallocation.ExternalLocation_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" + +externallocation.ExternalLocation_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a ExternalLocation 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 ExternalLocation to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing ExternalLocation that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/external_location#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 ExternalLocation to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -884,7 +990,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" &externallocation.ExternalLocationConfig { Connection: interface{}, @@ -899,7 +1005,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externalloc Url: *string, AccessPoint: *string, Comment: *string, - EncryptionDetails: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.externalLocation.ExternalLocationEncryptionDetails, + EncryptionDetails: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.externalLocation.ExternalLocationEncryptionDetails, ForceDestroy: interface{}, ForceUpdate: interface{}, Id: *string, @@ -1173,10 +1279,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" &externallocation.ExternalLocationEncryptionDetails { - SseEncryptionDetails: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.externalLocation.ExternalLocationEncryptionDetailsSseEncryptionDetails, + SseEncryptionDetails: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.externalLocation.ExternalLocationEncryptionDetailsSseEncryptionDetails, } ``` @@ -1207,7 +1313,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" &externallocation.ExternalLocationEncryptionDetailsSseEncryptionDetails { Algorithm: *string, @@ -1255,7 +1361,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" externallocation.NewExternalLocationEncryptionDetailsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ExternalLocationEncryptionDetailsOutputReference ``` @@ -1546,7 +1652,7 @@ func InternalValue() ExternalLocationEncryptionDetails #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/externallocation" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/externallocation" externallocation.NewExternalLocationEncryptionDetailsSseEncryptionDetailsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ExternalLocationEncryptionDetailsSseEncryptionDetailsOutputReference ``` diff --git a/docs/externalLocation.java.md b/docs/externalLocation.java.md index c49677adf..d9b71f571 100644 --- a/docs/externalLocation.java.md +++ b/docs/externalLocation.java.md @@ -253,6 +253,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.* | @@ -262,7 +263,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. | | putEncryptionDetails | *No description.* | | resetAccessPoint | *No description.* | | resetComment | *No description.* | @@ -341,6 +344,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 @@ -449,6 +468,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 @@ -461,6 +499,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. + +--- + ##### `putEncryptionDetails` ```java @@ -540,6 +603,7 @@ public void resetSkipValidation() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ExternalLocation resource upon running "cdktf plan ". | --- @@ -603,6 +667,50 @@ ExternalLocation.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.external_location.ExternalLocation; + +ExternalLocation.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ExternalLocation.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a ExternalLocation 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 ExternalLocation to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing ExternalLocation that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/external_location#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 ExternalLocation to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/externalLocation.python.md b/docs/externalLocation.python.md index eb60ce67a..85e43be75 100644 --- a/docs/externalLocation.python.md +++ b/docs/externalLocation.python.md @@ -247,6 +247,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.* | @@ -256,7 +257,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_encryption_details | *No description.* | | reset_access_point | *No description.* | | reset_comment | *No description.* | @@ -340,6 +343,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 @@ -466,6 +487,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 @@ -480,6 +522,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_encryption_details` ```python @@ -565,6 +634,7 @@ def reset_skip_validation() -> 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 ExternalLocation resource upon running "cdktf plan ". | --- @@ -634,6 +704,55 @@ externalLocation.ExternalLocation.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import external_location + +externalLocation.ExternalLocation.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a ExternalLocation 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 ExternalLocation to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing ExternalLocation that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/external_location#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 ExternalLocation to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/externalLocation.typescript.md b/docs/externalLocation.typescript.md index a63afc982..ebcbe8a1f 100644 --- a/docs/externalLocation.typescript.md +++ b/docs/externalLocation.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. | | putEncryptionDetails | *No description.* | | resetAccessPoint | *No description.* | | resetComment | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `putEncryptionDetails` ```typescript @@ -347,6 +408,7 @@ public resetSkipValidation(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ExternalLocation resource upon running "cdktf plan ". | --- @@ -410,6 +472,50 @@ externalLocation.ExternalLocation.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { externalLocation } from '@cdktf/provider-databricks' + +externalLocation.ExternalLocation.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a ExternalLocation 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 ExternalLocation to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing ExternalLocation that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/external_location#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 ExternalLocation to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/gitCredential.csharp.md b/docs/gitCredential.csharp.md index 096019682..45a9c54ca 100644 --- a/docs/gitCredential.csharp.md +++ b/docs/gitCredential.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. | | ResetForce | *No description.* | | ResetGitUsername | *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. + +--- + ##### `ResetForce` ```csharp @@ -292,6 +353,7 @@ private void ResetPersonalAccessToken() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a GitCredential resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ GitCredential.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +GitCredential.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a GitCredential 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 GitCredential to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing GitCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/git_credential#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 GitCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/gitCredential.go.md b/docs/gitCredential.go.md index a0d9d9fcf..1f8f8ebda 100644 --- a/docs/gitCredential.go.md +++ b/docs/gitCredential.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/gitcredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/gitcredential" gitcredential.NewGitCredential(scope Construct, id *string, config GitCredentialConfig) GitCredential ``` @@ -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. | | ResetForce | *No description.* | | ResetGitUsername | *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. + +--- + ##### `ResetForce` ```go @@ -292,13 +353,14 @@ func ResetPersonalAccessToken() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a GitCredential resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/gitcredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/gitcredential" gitcredential.GitCredential_IsConstruct(x interface{}) *bool ``` @@ -330,7 +392,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/gitcredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/gitcredential" gitcredential.GitCredential_IsTerraformElement(x interface{}) *bool ``` @@ -344,7 +406,7 @@ gitcredential.GitCredential_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/gitcredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/gitcredential" gitcredential.GitCredential_IsTerraformResource(x interface{}) *bool ``` @@ -355,6 +417,50 @@ gitcredential.GitCredential_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/gitcredential" + +gitcredential.GitCredential_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a GitCredential 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 GitCredential to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing GitCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/git_credential#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 GitCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -653,7 +759,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/gitcredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/gitcredential" &gitcredential.GitCredentialConfig { Connection: interface{}, diff --git a/docs/gitCredential.java.md b/docs/gitCredential.java.md index a2e9b3075..e1f67f45e 100644 --- a/docs/gitCredential.java.md +++ b/docs/gitCredential.java.md @@ -168,6 +168,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.* | @@ -177,7 +178,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. | | resetForce | *No description.* | | resetGitUsername | *No description.* | | resetId | *No description.* | @@ -249,6 +252,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 @@ -357,6 +376,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 @@ -369,6 +407,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. + +--- + ##### `resetForce` ```java @@ -400,6 +463,7 @@ public void resetPersonalAccessToken() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a GitCredential resource upon running "cdktf plan ". | --- @@ -463,6 +527,50 @@ GitCredential.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.git_credential.GitCredential; + +GitCredential.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),GitCredential.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a GitCredential 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 GitCredential to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing GitCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/git_credential#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 GitCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/gitCredential.python.md b/docs/gitCredential.python.md index d36deb4e0..79bbf0758 100644 --- a/docs/gitCredential.python.md +++ b/docs/gitCredential.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_force | *No description.* | | reset_git_username | *No description.* | | reset_id | *No description.* | @@ -251,6 +254,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 @@ -377,6 +398,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 @@ -391,6 +433,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_force` ```python @@ -422,6 +491,7 @@ def reset_personal_access_token() -> 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 GitCredential resource upon running "cdktf plan ". | --- @@ -491,6 +561,55 @@ gitCredential.GitCredential.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import git_credential + +gitCredential.GitCredential.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a GitCredential 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 GitCredential to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing GitCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/git_credential#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 GitCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/gitCredential.typescript.md b/docs/gitCredential.typescript.md index 9ae4e96c2..4f5332812 100644 --- a/docs/gitCredential.typescript.md +++ b/docs/gitCredential.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. | | resetForce | *No description.* | | resetGitUsername | *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. + +--- + ##### `resetForce` ```typescript @@ -292,6 +353,7 @@ public resetPersonalAccessToken(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a GitCredential resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ gitCredential.GitCredential.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { gitCredential } from '@cdktf/provider-databricks' + +gitCredential.GitCredential.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a GitCredential 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 GitCredential to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing GitCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/git_credential#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 GitCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/globalInitScript.csharp.md b/docs/globalInitScript.csharp.md index f5ddb2162..769688de7 100644 --- a/docs/globalInitScript.csharp.md +++ b/docs/globalInitScript.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. | | PutTimeouts | *No description.* | | ResetContentBase64 | *No description.* | | ResetEnabled | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `PutTimeouts` ```csharp @@ -319,6 +380,7 @@ private void ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a GlobalInitScript resource upon running "cdktf plan ". | --- @@ -382,6 +444,50 @@ GlobalInitScript.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +GlobalInitScript.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a GlobalInitScript 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 GlobalInitScript to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing GlobalInitScript that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/global_init_script#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 GlobalInitScript to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/globalInitScript.go.md b/docs/globalInitScript.go.md index 4f7d90a90..1fb03f122 100644 --- a/docs/globalInitScript.go.md +++ b/docs/globalInitScript.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/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" globalinitscript.NewGlobalInitScript(scope Construct, id *string, config GlobalInitScriptConfig) GlobalInitScript ``` @@ -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. | | PutTimeouts | *No description.* | | ResetContentBase64 | *No description.* | | ResetEnabled | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `PutTimeouts` ```go @@ -319,13 +380,14 @@ func ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a GlobalInitScript resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" globalinitscript.GlobalInitScript_IsConstruct(x interface{}) *bool ``` @@ -357,7 +419,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" globalinitscript.GlobalInitScript_IsTerraformElement(x interface{}) *bool ``` @@ -371,7 +433,7 @@ globalinitscript.GlobalInitScript_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" globalinitscript.GlobalInitScript_IsTerraformResource(x interface{}) *bool ``` @@ -382,6 +444,50 @@ globalinitscript.GlobalInitScript_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" + +globalinitscript.GlobalInitScript_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a GlobalInitScript 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 GlobalInitScript to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing GlobalInitScript that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/global_init_script#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 GlobalInitScript to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -746,7 +852,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" &globalinitscript.GlobalInitScriptConfig { Connection: interface{}, @@ -763,7 +869,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinits Md5: *string, Position: *f64, Source: *string, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.globalInitScript.GlobalInitScriptTimeouts, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.globalInitScript.GlobalInitScriptTimeouts, } ``` @@ -965,7 +1071,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" &globalinitscript.GlobalInitScriptTimeouts { @@ -980,7 +1086,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinits #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/globalinitscript" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/globalinitscript" globalinitscript.NewGlobalInitScriptTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) GlobalInitScriptTimeoutsOutputReference ``` diff --git a/docs/globalInitScript.java.md b/docs/globalInitScript.java.md index e0177c265..f8089d387 100644 --- a/docs/globalInitScript.java.md +++ b/docs/globalInitScript.java.md @@ -200,6 +200,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.* | @@ -209,7 +210,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. | | putTimeouts | *No description.* | | resetContentBase64 | *No description.* | | resetEnabled | *No description.* | @@ -284,6 +287,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 @@ -392,6 +411,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 @@ -404,6 +442,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. + +--- + ##### `putTimeouts` ```java @@ -459,6 +522,7 @@ public void resetSource() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a GlobalInitScript resource upon running "cdktf plan ". | --- @@ -522,6 +586,50 @@ GlobalInitScript.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.global_init_script.GlobalInitScript; + +GlobalInitScript.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),GlobalInitScript.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a GlobalInitScript 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 GlobalInitScript to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing GlobalInitScript that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/global_init_script#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 GlobalInitScript to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/globalInitScript.python.md b/docs/globalInitScript.python.md index 940129b3c..921194f94 100644 --- a/docs/globalInitScript.python.md +++ b/docs/globalInitScript.python.md @@ -197,6 +197,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.* | @@ -206,7 +207,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_timeouts | *No description.* | | reset_content_base64 | *No description.* | | reset_enabled | *No description.* | @@ -286,6 +289,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 @@ -412,6 +433,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 @@ -426,6 +468,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_timeouts` ```python @@ -475,6 +544,7 @@ def reset_source() -> 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 GlobalInitScript resource upon running "cdktf plan ". | --- @@ -544,6 +614,55 @@ globalInitScript.GlobalInitScript.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import global_init_script + +globalInitScript.GlobalInitScript.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a GlobalInitScript 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 GlobalInitScript to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing GlobalInitScript that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/global_init_script#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 GlobalInitScript to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/globalInitScript.typescript.md b/docs/globalInitScript.typescript.md index 0d9555420..16142f2e3 100644 --- a/docs/globalInitScript.typescript.md +++ b/docs/globalInitScript.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. | | putTimeouts | *No description.* | | resetContentBase64 | *No description.* | | resetEnabled | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `putTimeouts` ```typescript @@ -319,6 +380,7 @@ public resetSource(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a GlobalInitScript resource upon running "cdktf plan ". | --- @@ -382,6 +444,50 @@ globalInitScript.GlobalInitScript.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { globalInitScript } from '@cdktf/provider-databricks' + +globalInitScript.GlobalInitScript.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a GlobalInitScript 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 GlobalInitScript to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing GlobalInitScript that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/global_init_script#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 GlobalInitScript to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/grants.csharp.md b/docs/grants.csharp.md index 8bff95497..43282c1f7 100644 --- a/docs/grants.csharp.md +++ b/docs/grants.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. | | PutGrant | *No description.* | | ResetCatalog | *No description.* | | ResetExternalLocation | *No description.* | @@ -152,6 +155,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 @@ -260,6 +279,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 @@ -272,6 +309,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. + +--- + ##### `PutGrant` ```csharp @@ -375,6 +436,7 @@ private void ResetVolume() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Grants resource upon running "cdktf plan ". | --- @@ -438,6 +500,50 @@ Grants.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Grants.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Grants 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 Grants to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Grants that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/grants#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 Grants to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/grants.go.md b/docs/grants.go.md index 7f1fbd619..cbf60558b 100644 --- a/docs/grants.go.md +++ b/docs/grants.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/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" grants.NewGrants(scope Construct, id *string, config GrantsConfig) Grants ``` @@ -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. | | PutGrant | *No description.* | | ResetCatalog | *No description.* | | ResetExternalLocation | *No description.* | @@ -152,6 +155,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 @@ -260,6 +279,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 @@ -272,6 +309,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. + +--- + ##### `PutGrant` ```go @@ -375,13 +436,14 @@ func ResetVolume() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Grants resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" grants.Grants_IsConstruct(x interface{}) *bool ``` @@ -413,7 +475,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" grants.Grants_IsTerraformElement(x interface{}) *bool ``` @@ -427,7 +489,7 @@ grants.Grants_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" grants.Grants_IsTerraformResource(x interface{}) *bool ``` @@ -438,6 +500,50 @@ grants.Grants_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" + +grants.Grants_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Grants 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 Grants to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Grants that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/grants#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 Grants to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -956,7 +1062,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" &grants.GrantsConfig { Connection: interface{}, @@ -1273,7 +1379,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" &grants.GrantsGrant { Principal: *string, @@ -1321,7 +1427,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" grants.NewGrantsGrantList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GrantsGrantList ``` @@ -1464,7 +1570,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grants" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grants" grants.NewGrantsGrantOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) GrantsGrantOutputReference ``` diff --git a/docs/grants.java.md b/docs/grants.java.md index fa647956b..2fafe83cd 100644 --- a/docs/grants.java.md +++ b/docs/grants.java.md @@ -270,6 +270,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.* | @@ -279,7 +280,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. | | putGrant | *No description.* | | resetCatalog | *No description.* | | resetExternalLocation | *No description.* | @@ -362,6 +365,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 @@ -470,6 +489,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 @@ -482,6 +520,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. + +--- + ##### `putGrant` ```java @@ -585,6 +648,7 @@ public void resetVolume() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Grants resource upon running "cdktf plan ". | --- @@ -648,6 +712,50 @@ Grants.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.grants.Grants; + +Grants.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Grants.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Grants 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 Grants to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Grants that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/grants#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 Grants to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/grants.python.md b/docs/grants.python.md index 49e3e5604..ea35efbab 100644 --- a/docs/grants.python.md +++ b/docs/grants.python.md @@ -267,6 +267,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.* | @@ -276,7 +277,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_grant | *No description.* | | reset_catalog | *No description.* | | reset_external_location | *No description.* | @@ -364,6 +367,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 @@ -490,6 +511,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 @@ -504,6 +546,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` ```python @@ -609,6 +678,7 @@ def reset_volume() -> 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 Grants resource upon running "cdktf plan ". | --- @@ -678,6 +748,55 @@ grants.Grants.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import grants + +grants.Grants.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Grants 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 Grants to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Grants that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/grants#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 Grants to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/grants.typescript.md b/docs/grants.typescript.md index 470326ba0..be4db6443 100644 --- a/docs/grants.typescript.md +++ b/docs/grants.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. | | putGrant | *No description.* | | resetCatalog | *No description.* | | resetExternalLocation | *No description.* | @@ -152,6 +155,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 @@ -260,6 +279,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 @@ -272,6 +309,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. + +--- + ##### `putGrant` ```typescript @@ -375,6 +436,7 @@ public resetVolume(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Grants resource upon running "cdktf plan ". | --- @@ -438,6 +500,50 @@ grants.Grants.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { grants } from '@cdktf/provider-databricks' + +grants.Grants.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Grants 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 Grants to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Grants that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/grants#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 Grants to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/group.csharp.md b/docs/group.csharp.md index a1c2ac390..f725e4803 100644 --- a/docs/group.csharp.md +++ b/docs/group.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. | | ResetAclPrincipalId | *No description.* | | ResetAllowClusterCreate | *No description.* | | ResetAllowInstancePoolCreate | *No description.* | @@ -146,6 +149,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 @@ -254,6 +273,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 @@ -266,6 +303,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. + +--- + ##### `ResetAclPrincipalId` ```csharp @@ -327,6 +388,7 @@ private void ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Group resource upon running "cdktf plan ". | --- @@ -390,6 +452,50 @@ Group.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Group.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Group 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 Group to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Group that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Group to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/group.go.md b/docs/group.go.md index bbfc323e9..1a1742f2d 100644 --- a/docs/group.go.md +++ b/docs/group.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/group" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/group" group.NewGroup(scope Construct, id *string, config GroupConfig) Group ``` @@ -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. | | ResetAclPrincipalId | *No description.* | | ResetAllowClusterCreate | *No description.* | | ResetAllowInstancePoolCreate | *No description.* | @@ -146,6 +149,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 @@ -254,6 +273,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 @@ -266,6 +303,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. + +--- + ##### `ResetAclPrincipalId` ```go @@ -327,13 +388,14 @@ func ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Group resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/group" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/group" group.Group_IsConstruct(x interface{}) *bool ``` @@ -365,7 +427,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/group" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/group" group.Group_IsTerraformElement(x interface{}) *bool ``` @@ -379,7 +441,7 @@ group.Group_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/group" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/group" group.Group_IsTerraformResource(x interface{}) *bool ``` @@ -390,6 +452,50 @@ group.Group_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/group" + +group.Group_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Group 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 Group to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Group that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Group to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -798,7 +904,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/group" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/group" &group.GroupConfig { Connection: interface{}, diff --git a/docs/group.java.md b/docs/group.java.md index 0ba72ef9e..f05ed6d41 100644 --- a/docs/group.java.md +++ b/docs/group.java.md @@ -222,6 +222,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.* | @@ -231,7 +232,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. | | resetAclPrincipalId | *No description.* | | resetAllowClusterCreate | *No description.* | | resetAllowInstancePoolCreate | *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. + +--- + ##### `resetAclPrincipalId` ```java @@ -489,6 +552,7 @@ public void resetWorkspaceAccess() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Group resource upon running "cdktf plan ". | --- @@ -552,6 +616,50 @@ Group.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.group.Group; + +Group.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Group.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Group 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 Group to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Group that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Group to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/group.python.md b/docs/group.python.md index aa8bd1759..0b80d5dcc 100644 --- a/docs/group.python.md +++ b/docs/group.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_acl_principal_id | *No description.* | | reset_allow_cluster_create | *No description.* | | reset_allow_instance_pool_create | *No description.* | @@ -306,6 +309,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 @@ -432,6 +453,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 @@ -446,6 +488,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_acl_principal_id` ```python @@ -507,6 +576,7 @@ def reset_workspace_access() -> 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 Group resource upon running "cdktf plan ". | --- @@ -576,6 +646,55 @@ group.Group.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import group + +group.Group.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Group 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 Group to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Group that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Group to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/group.typescript.md b/docs/group.typescript.md index c47b3d875..dffe83f5c 100644 --- a/docs/group.typescript.md +++ b/docs/group.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. | | resetAclPrincipalId | *No description.* | | resetAllowClusterCreate | *No description.* | | resetAllowInstancePoolCreate | *No description.* | @@ -146,6 +149,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 @@ -254,6 +273,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 @@ -266,6 +303,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. + +--- + ##### `resetAclPrincipalId` ```typescript @@ -327,6 +388,7 @@ public resetWorkspaceAccess(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Group resource upon running "cdktf plan ". | --- @@ -390,6 +452,50 @@ group.Group.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { group } from '@cdktf/provider-databricks' + +group.Group.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Group 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 Group to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Group that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Group to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupInstanceProfile.csharp.md b/docs/groupInstanceProfile.csharp.md index 2d8e2af48..8ff8b9097 100644 --- a/docs/groupInstanceProfile.csharp.md +++ b/docs/groupInstanceProfile.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 GroupInstanceProfile resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ GroupInstanceProfile.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +GroupInstanceProfile.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a GroupInstanceProfile 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 GroupInstanceProfile to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing GroupInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_instance_profile#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 GroupInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupInstanceProfile.go.md b/docs/groupInstanceProfile.go.md index e972c1274..4183535e2 100644 --- a/docs/groupInstanceProfile.go.md +++ b/docs/groupInstanceProfile.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/groupinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupinstanceprofile" groupinstanceprofile.NewGroupInstanceProfile(scope Construct, id *string, config GroupInstanceProfileConfig) GroupInstanceProfile ``` @@ -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 GroupInstanceProfile resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/groupinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupinstanceprofile" groupinstanceprofile.GroupInstanceProfile_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/groupinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupinstanceprofile" groupinstanceprofile.GroupInstanceProfile_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ groupinstanceprofile.GroupInstanceProfile_IsTerraformElement(x interface{}) *boo ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/groupinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupinstanceprofile" groupinstanceprofile.GroupInstanceProfile_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ groupinstanceprofile.GroupInstanceProfile_IsTerraformResource(x interface{}) *bo --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupinstanceprofile" + +groupinstanceprofile.GroupInstanceProfile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a GroupInstanceProfile 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 GroupInstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing GroupInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_instance_profile#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 GroupInstanceProfile 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/groupinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupinstanceprofile" &groupinstanceprofile.GroupInstanceProfileConfig { Connection: interface{}, diff --git a/docs/groupInstanceProfile.java.md b/docs/groupInstanceProfile.java.md index 1353f56ea..eb53658a6 100644 --- a/docs/groupInstanceProfile.java.md +++ b/docs/groupInstanceProfile.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 GroupInstanceProfile resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ GroupInstanceProfile.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.group_instance_profile.GroupInstanceProfile; + +GroupInstanceProfile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),GroupInstanceProfile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a GroupInstanceProfile 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 GroupInstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing GroupInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_instance_profile#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 GroupInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupInstanceProfile.python.md b/docs/groupInstanceProfile.python.md index 57af15751..2f88f4205 100644 --- a/docs/groupInstanceProfile.python.md +++ b/docs/groupInstanceProfile.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 GroupInstanceProfile resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ groupInstanceProfile.GroupInstanceProfile.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import group_instance_profile + +groupInstanceProfile.GroupInstanceProfile.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a GroupInstanceProfile 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 GroupInstanceProfile to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing GroupInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_instance_profile#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 GroupInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupInstanceProfile.typescript.md b/docs/groupInstanceProfile.typescript.md index d8ea04c0a..160759c22 100644 --- a/docs/groupInstanceProfile.typescript.md +++ b/docs/groupInstanceProfile.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 GroupInstanceProfile resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ groupInstanceProfile.GroupInstanceProfile.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { groupInstanceProfile } from '@cdktf/provider-databricks' + +groupInstanceProfile.GroupInstanceProfile.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a GroupInstanceProfile 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 GroupInstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing GroupInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_instance_profile#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 GroupInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupMember.csharp.md b/docs/groupMember.csharp.md index 25d1b5857..8254f4e5a 100644 --- a/docs/groupMember.csharp.md +++ b/docs/groupMember.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 GroupMember resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ GroupMember.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +GroupMember.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a GroupMember 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 GroupMember to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing GroupMember that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_member#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 GroupMember to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupMember.go.md b/docs/groupMember.go.md index 69d048963..079b5599b 100644 --- a/docs/groupMember.go.md +++ b/docs/groupMember.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/groupmember" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupmember" groupmember.NewGroupMember(scope Construct, id *string, config GroupMemberConfig) GroupMember ``` @@ -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 GroupMember resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/groupmember" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupmember" groupmember.GroupMember_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/groupmember" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupmember" groupmember.GroupMember_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ groupmember.GroupMember_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/groupmember" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupmember" groupmember.GroupMember_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ groupmember.GroupMember_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupmember" + +groupmember.GroupMember_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a GroupMember 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 GroupMember to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing GroupMember that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_member#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 GroupMember 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/groupmember" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/groupmember" &groupmember.GroupMemberConfig { Connection: interface{}, diff --git a/docs/groupMember.java.md b/docs/groupMember.java.md index c8b026953..7ffbe805b 100644 --- a/docs/groupMember.java.md +++ b/docs/groupMember.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 GroupMember resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ GroupMember.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.group_member.GroupMember; + +GroupMember.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),GroupMember.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a GroupMember 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 GroupMember to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing GroupMember that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_member#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 GroupMember to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupMember.python.md b/docs/groupMember.python.md index 1ab0b2d33..32f02e7cc 100644 --- a/docs/groupMember.python.md +++ b/docs/groupMember.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 GroupMember resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ groupMember.GroupMember.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import group_member + +groupMember.GroupMember.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a GroupMember 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 GroupMember to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing GroupMember that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_member#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 GroupMember to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupMember.typescript.md b/docs/groupMember.typescript.md index 187762d09..3f1287cc7 100644 --- a/docs/groupMember.typescript.md +++ b/docs/groupMember.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 GroupMember resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ groupMember.GroupMember.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { groupMember } from '@cdktf/provider-databricks' + +groupMember.GroupMember.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a GroupMember 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 GroupMember to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing GroupMember that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_member#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 GroupMember to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupRole.csharp.md b/docs/groupRole.csharp.md index bd1f3c1f3..8e894ad0e 100644 --- a/docs/groupRole.csharp.md +++ b/docs/groupRole.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 GroupRole resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ GroupRole.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +GroupRole.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a GroupRole 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 GroupRole to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing GroupRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_role#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 GroupRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupRole.go.md b/docs/groupRole.go.md index 21031b4ac..6f2e6bdee 100644 --- a/docs/groupRole.go.md +++ b/docs/groupRole.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/grouprole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grouprole" grouprole.NewGroupRole(scope Construct, id *string, config GroupRoleConfig) GroupRole ``` @@ -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 GroupRole resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grouprole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grouprole" grouprole.GroupRole_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grouprole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grouprole" grouprole.GroupRole_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ grouprole.GroupRole_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/grouprole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grouprole" grouprole.GroupRole_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ grouprole.GroupRole_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grouprole" + +grouprole.GroupRole_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a GroupRole 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 GroupRole to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing GroupRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_role#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 GroupRole 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/grouprole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/grouprole" &grouprole.GroupRoleConfig { Connection: interface{}, diff --git a/docs/groupRole.java.md b/docs/groupRole.java.md index 02422bf2e..0a4854497 100644 --- a/docs/groupRole.java.md +++ b/docs/groupRole.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 GroupRole resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ GroupRole.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.group_role.GroupRole; + +GroupRole.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),GroupRole.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a GroupRole 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 GroupRole to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing GroupRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_role#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 GroupRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupRole.python.md b/docs/groupRole.python.md index ec66e2532..339225127 100644 --- a/docs/groupRole.python.md +++ b/docs/groupRole.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 GroupRole resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ groupRole.GroupRole.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import group_role + +groupRole.GroupRole.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a GroupRole 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 GroupRole to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing GroupRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_role#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 GroupRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/groupRole.typescript.md b/docs/groupRole.typescript.md index a5d8be34e..2e47fe1f0 100644 --- a/docs/groupRole.typescript.md +++ b/docs/groupRole.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 GroupRole resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ groupRole.GroupRole.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { groupRole } from '@cdktf/provider-databricks' + +groupRole.GroupRole.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a GroupRole 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 GroupRole to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing GroupRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_role#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 GroupRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instancePool.csharp.md b/docs/instancePool.csharp.md index c202c72d8..ccad0bd36 100644 --- a/docs/instancePool.csharp.md +++ b/docs/instancePool.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. | | PutAwsAttributes | *No description.* | | PutAzureAttributes | *No description.* | | PutDiskSpec | *No description.* | @@ -157,6 +160,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 @@ -265,6 +284,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 @@ -277,6 +314,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. + +--- + ##### `PutAwsAttributes` ```csharp @@ -440,6 +501,7 @@ private void ResetPreloadedSparkVersions() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a InstancePool resource upon running "cdktf plan ". | --- @@ -503,6 +565,50 @@ InstancePool.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +InstancePool.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a InstancePool 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 InstancePool to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing InstancePool that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 InstancePool to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instancePool.go.md b/docs/instancePool.go.md index 0a630f11a..ef0891087 100644 --- a/docs/instancePool.go.md +++ b/docs/instancePool.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/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePool(scope Construct, id *string, config InstancePoolConfig) InstancePool ``` @@ -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. | | PutAwsAttributes | *No description.* | | PutAzureAttributes | *No description.* | | PutDiskSpec | *No description.* | @@ -157,6 +160,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 @@ -265,6 +284,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 @@ -277,6 +314,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. + +--- + ##### `PutAwsAttributes` ```go @@ -440,13 +501,14 @@ func ResetPreloadedSparkVersions() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a InstancePool resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.InstancePool_IsConstruct(x interface{}) *bool ``` @@ -478,7 +540,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.InstancePool_IsTerraformElement(x interface{}) *bool ``` @@ -492,7 +554,7 @@ instancepool.InstancePool_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.InstancePool_IsTerraformResource(x interface{}) *bool ``` @@ -503,6 +565,50 @@ instancepool.InstancePool_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" + +instancepool.InstancePool_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a InstancePool 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 InstancePool to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing InstancePool that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 InstancePool to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1043,7 +1149,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolAwsAttributes { Availability: *string, @@ -1103,7 +1209,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolAzureAttributes { Availability: *string, @@ -1149,7 +1255,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolConfig { Connection: interface{}, @@ -1161,14 +1267,14 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepoo Provisioners: *[]interface{}, IdleInstanceAutoterminationMinutes: *f64, InstancePoolName: *string, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolAzureAttributes, CustomTags: *map[string]*string, - DiskSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolDiskSpec, + DiskSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolDiskSpec, EnableElasticDisk: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolGcpAttributes, Id: *string, - InstancePoolFleetAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolInstancePoolFleetAttributes, + InstancePoolFleetAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolInstancePoolFleetAttributes, InstancePoolId: *string, MaxCapacity: *f64, MinIdleInstances: *f64, @@ -1490,12 +1596,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolDiskSpec { DiskCount: *f64, DiskSize: *f64, - DiskType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolDiskSpecDiskType, + DiskType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolDiskSpecDiskType, } ``` @@ -1552,7 +1658,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolDiskSpecDiskType { AzureDiskVolumeType: *string, @@ -1598,7 +1704,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolGcpAttributes { GcpAvailability: *string, @@ -1644,12 +1750,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolInstancePoolFleetAttributes { LaunchTemplateOverride: interface{}, - FleetOnDemandOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolInstancePoolFleetAttributesFleetOnDemandOption, - FleetSpotOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolInstancePoolFleetAttributesFleetSpotOption, + FleetOnDemandOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolInstancePoolFleetAttributesFleetOnDemandOption, + FleetSpotOption: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolInstancePoolFleetAttributesFleetSpotOption, } ``` @@ -1710,7 +1816,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolInstancePoolFleetAttributesFleetOnDemandOption { AllocationStrategy: *string, @@ -1756,7 +1862,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolInstancePoolFleetAttributesFleetSpotOption { AllocationStrategy: *string, @@ -1802,7 +1908,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolInstancePoolFleetAttributesLaunchTemplateOverride { AvailabilityZone: *string, @@ -1848,11 +1954,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolPreloadedDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.instancePool.InstancePoolPreloadedDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.instancePool.InstancePoolPreloadedDockerImageBasicAuth, } ``` @@ -1896,7 +2002,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" &instancepool.InstancePoolPreloadedDockerImageBasicAuth { Password: *string, @@ -1944,7 +2050,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolAwsAttributesOutputReference ``` @@ -2280,7 +2386,7 @@ func InternalValue() InstancePoolAwsAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolAzureAttributesOutputReference ``` @@ -2587,7 +2693,7 @@ func InternalValue() InstancePoolAzureAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolDiskSpecDiskTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolDiskSpecDiskTypeOutputReference ``` @@ -2894,7 +3000,7 @@ func InternalValue() InstancePoolDiskSpecDiskType #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolDiskSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolDiskSpecOutputReference ``` @@ -3243,7 +3349,7 @@ func InternalValue() InstancePoolDiskSpec #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolGcpAttributesOutputReference ``` @@ -3550,7 +3656,7 @@ func InternalValue() InstancePoolGcpAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolInstancePoolFleetAttributesFleetOnDemandOptionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolInstancePoolFleetAttributesFleetOnDemandOptionOutputReference ``` @@ -3850,7 +3956,7 @@ func InternalValue() InstancePoolInstancePoolFleetAttributesFleetOnDemandOption #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolInstancePoolFleetAttributesFleetSpotOptionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolInstancePoolFleetAttributesFleetSpotOptionOutputReference ``` @@ -4150,7 +4256,7 @@ func InternalValue() InstancePoolInstancePoolFleetAttributesFleetSpotOption #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolInstancePoolFleetAttributesLaunchTemplateOverrideList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) InstancePoolInstancePoolFleetAttributesLaunchTemplateOverrideList ``` @@ -4293,7 +4399,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolInstancePoolFleetAttributesLaunchTemplateOverrideOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) InstancePoolInstancePoolFleetAttributesLaunchTemplateOverrideOutputReference ``` @@ -4604,7 +4710,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolInstancePoolFleetAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolInstancePoolFleetAttributesOutputReference ``` @@ -4972,7 +5078,7 @@ func InternalValue() InstancePoolInstancePoolFleetAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolPreloadedDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) InstancePoolPreloadedDockerImageBasicAuthOutputReference ``` @@ -5265,7 +5371,7 @@ func InternalValue() InstancePoolPreloadedDockerImageBasicAuth #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolPreloadedDockerImageList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) InstancePoolPreloadedDockerImageList ``` @@ -5408,7 +5514,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instancepool" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instancepool" instancepool.NewInstancePoolPreloadedDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) InstancePoolPreloadedDockerImageOutputReference ``` diff --git a/docs/instancePool.java.md b/docs/instancePool.java.md index b2e2490ea..8943d418e 100644 --- a/docs/instancePool.java.md +++ b/docs/instancePool.java.md @@ -291,6 +291,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.* | @@ -300,7 +301,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. | | putAwsAttributes | *No description.* | | putAzureAttributes | *No description.* | | putDiskSpec | *No description.* | @@ -388,6 +391,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 @@ -496,6 +515,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 @@ -508,6 +546,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. + +--- + ##### `putAwsAttributes` ```java @@ -671,6 +734,7 @@ public void resetPreloadedSparkVersions() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a InstancePool resource upon running "cdktf plan ". | --- @@ -734,6 +798,50 @@ InstancePool.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.instance_pool.InstancePool; + +InstancePool.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),InstancePool.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a InstancePool 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 InstancePool to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing InstancePool that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 InstancePool to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instancePool.python.md b/docs/instancePool.python.md index b2ab214db..872c5608c 100644 --- a/docs/instancePool.python.md +++ b/docs/instancePool.python.md @@ -287,6 +287,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.* | @@ -296,7 +297,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_aws_attributes | *No description.* | | put_azure_attributes | *No description.* | | put_disk_spec | *No description.* | @@ -389,6 +392,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 @@ -515,6 +536,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 @@ -529,6 +571,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_aws_attributes` ```python @@ -794,6 +863,7 @@ def reset_preloaded_spark_versions() -> 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 InstancePool resource upon running "cdktf plan ". | --- @@ -863,6 +933,55 @@ instancePool.InstancePool.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import instance_pool + +instancePool.InstancePool.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a InstancePool 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 InstancePool to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing InstancePool that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 InstancePool to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instancePool.typescript.md b/docs/instancePool.typescript.md index 40b2b1474..f71be9008 100644 --- a/docs/instancePool.typescript.md +++ b/docs/instancePool.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. | | putAwsAttributes | *No description.* | | putAzureAttributes | *No description.* | | putDiskSpec | *No description.* | @@ -157,6 +160,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 @@ -265,6 +284,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 @@ -277,6 +314,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. + +--- + ##### `putAwsAttributes` ```typescript @@ -440,6 +501,7 @@ public resetPreloadedSparkVersions(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a InstancePool resource upon running "cdktf plan ". | --- @@ -503,6 +565,50 @@ instancePool.InstancePool.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { instancePool } from '@cdktf/provider-databricks' + +instancePool.InstancePool.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a InstancePool 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 InstancePool to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing InstancePool that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 InstancePool to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instanceProfile.csharp.md b/docs/instanceProfile.csharp.md index 92bb2c2c7..6f4653d40 100644 --- a/docs/instanceProfile.csharp.md +++ b/docs/instanceProfile.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. | | ResetIamRoleArn | *No description.* | | ResetId | *No description.* | | ResetIsMetaInstanceProfile | *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. + +--- + ##### `ResetIamRoleArn` ```csharp @@ -292,6 +353,7 @@ private void ResetSkipValidation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a InstanceProfile resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ InstanceProfile.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +InstanceProfile.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a InstanceProfile 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 InstanceProfile to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing InstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_profile#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 InstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instanceProfile.go.md b/docs/instanceProfile.go.md index 0744191c9..1bfdaf8fa 100644 --- a/docs/instanceProfile.go.md +++ b/docs/instanceProfile.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/instanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instanceprofile" instanceprofile.NewInstanceProfile(scope Construct, id *string, config InstanceProfileConfig) InstanceProfile ``` @@ -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. | | ResetIamRoleArn | *No description.* | | ResetId | *No description.* | | ResetIsMetaInstanceProfile | *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. + +--- + ##### `ResetIamRoleArn` ```go @@ -292,13 +353,14 @@ func ResetSkipValidation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a InstanceProfile resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instanceprofile" instanceprofile.InstanceProfile_IsConstruct(x interface{}) *bool ``` @@ -330,7 +392,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instanceprofile" instanceprofile.InstanceProfile_IsTerraformElement(x interface{}) *bool ``` @@ -344,7 +406,7 @@ instanceprofile.InstanceProfile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instanceprofile" instanceprofile.InstanceProfile_IsTerraformResource(x interface{}) *bool ``` @@ -355,6 +417,50 @@ instanceprofile.InstanceProfile_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instanceprofile" + +instanceprofile.InstanceProfile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a InstanceProfile 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 InstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing InstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_profile#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 InstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -653,7 +759,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/instanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/instanceprofile" &instanceprofile.InstanceProfileConfig { Connection: interface{}, diff --git a/docs/instanceProfile.java.md b/docs/instanceProfile.java.md index e6f62d932..9a236885d 100644 --- a/docs/instanceProfile.java.md +++ b/docs/instanceProfile.java.md @@ -169,6 +169,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.* | @@ -178,7 +179,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. | | resetIamRoleArn | *No description.* | | resetId | *No description.* | | resetIsMetaInstanceProfile | *No description.* | @@ -250,6 +253,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 @@ -358,6 +377,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 @@ -370,6 +408,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. + +--- + ##### `resetIamRoleArn` ```java @@ -401,6 +464,7 @@ public void resetSkipValidation() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a InstanceProfile resource upon running "cdktf plan ". | --- @@ -464,6 +528,50 @@ InstanceProfile.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.instance_profile.InstanceProfile; + +InstanceProfile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),InstanceProfile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a InstanceProfile 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 InstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing InstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_profile#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 InstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instanceProfile.python.md b/docs/instanceProfile.python.md index cb9c1b4aa..096f06c38 100644 --- a/docs/instanceProfile.python.md +++ b/docs/instanceProfile.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_iam_role_arn | *No description.* | | reset_id | *No description.* | | reset_is_meta_instance_profile | *No description.* | @@ -251,6 +254,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 @@ -377,6 +398,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 @@ -391,6 +433,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_iam_role_arn` ```python @@ -422,6 +491,7 @@ def reset_skip_validation() -> 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 InstanceProfile resource upon running "cdktf plan ". | --- @@ -491,6 +561,55 @@ instanceProfile.InstanceProfile.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import instance_profile + +instanceProfile.InstanceProfile.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a InstanceProfile 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 InstanceProfile to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing InstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_profile#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 InstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/instanceProfile.typescript.md b/docs/instanceProfile.typescript.md index 31c55694b..27c16b9f1 100644 --- a/docs/instanceProfile.typescript.md +++ b/docs/instanceProfile.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. | | resetIamRoleArn | *No description.* | | resetId | *No description.* | | resetIsMetaInstanceProfile | *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. + +--- + ##### `resetIamRoleArn` ```typescript @@ -292,6 +353,7 @@ public resetSkipValidation(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a InstanceProfile resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ instanceProfile.InstanceProfile.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { instanceProfile } from '@cdktf/provider-databricks' + +instanceProfile.InstanceProfile.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a InstanceProfile 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 InstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing InstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_profile#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 InstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/ipAccessList.csharp.md b/docs/ipAccessList.csharp.md index a8ac36993..355d1a448 100644 --- a/docs/ipAccessList.csharp.md +++ b/docs/ipAccessList.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. | | ResetEnabled | *No description.* | | ResetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `ResetEnabled` ```csharp @@ -278,6 +339,7 @@ private void ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a IpAccessList resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ IpAccessList.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +IpAccessList.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a IpAccessList 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 IpAccessList to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing IpAccessList that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/ip_access_list#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 IpAccessList to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/ipAccessList.go.md b/docs/ipAccessList.go.md index 6cfcddcec..d950486ae 100644 --- a/docs/ipAccessList.go.md +++ b/docs/ipAccessList.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/ipaccesslist" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/ipaccesslist" ipaccesslist.NewIpAccessList(scope Construct, id *string, config IpAccessListConfig) IpAccessList ``` @@ -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. | | ResetEnabled | *No description.* | | ResetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `ResetEnabled` ```go @@ -278,13 +339,14 @@ func ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a IpAccessList resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/ipaccesslist" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/ipaccesslist" ipaccesslist.IpAccessList_IsConstruct(x interface{}) *bool ``` @@ -316,7 +378,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/ipaccesslist" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/ipaccesslist" ipaccesslist.IpAccessList_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +392,7 @@ ipaccesslist.IpAccessList_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/ipaccesslist" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/ipaccesslist" ipaccesslist.IpAccessList_IsTerraformResource(x interface{}) *bool ``` @@ -341,6 +403,50 @@ ipaccesslist.IpAccessList_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/ipaccesslist" + +ipaccesslist.IpAccessList_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a IpAccessList 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 IpAccessList to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing IpAccessList that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/ip_access_list#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 IpAccessList to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -639,7 +745,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/ipaccesslist" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/ipaccesslist" &ipaccesslist.IpAccessListConfig { Connection: interface{}, diff --git a/docs/ipAccessList.java.md b/docs/ipAccessList.java.md index add888c42..825303dc4 100644 --- a/docs/ipAccessList.java.md +++ b/docs/ipAccessList.java.md @@ -168,6 +168,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.* | @@ -177,7 +178,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. | | resetEnabled | *No description.* | | resetId | *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. + +--- + ##### `resetEnabled` ```java @@ -386,6 +449,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a IpAccessList resource upon running "cdktf plan ". | --- @@ -449,6 +513,50 @@ IpAccessList.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.ip_access_list.IpAccessList; + +IpAccessList.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),IpAccessList.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a IpAccessList 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 IpAccessList to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing IpAccessList that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/ip_access_list#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 IpAccessList to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/ipAccessList.python.md b/docs/ipAccessList.python.md index b4fbfcf16..3a558f437 100644 --- a/docs/ipAccessList.python.md +++ b/docs/ipAccessList.python.md @@ -165,6 +165,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.* | @@ -174,7 +175,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_enabled | *No description.* | | reset_id | *No description.* | @@ -249,6 +252,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 @@ -375,6 +396,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 @@ -389,6 +431,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_enabled` ```python @@ -408,6 +477,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 IpAccessList resource upon running "cdktf plan ". | --- @@ -477,6 +547,55 @@ ipAccessList.IpAccessList.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import ip_access_list + +ipAccessList.IpAccessList.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a IpAccessList 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 IpAccessList to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing IpAccessList that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/ip_access_list#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 IpAccessList to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/ipAccessList.typescript.md b/docs/ipAccessList.typescript.md index 363e8434e..492b5cacc 100644 --- a/docs/ipAccessList.typescript.md +++ b/docs/ipAccessList.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. | | resetEnabled | *No description.* | | resetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `resetEnabled` ```typescript @@ -278,6 +339,7 @@ public resetId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a IpAccessList resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ ipAccessList.IpAccessList.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { ipAccessList } from '@cdktf/provider-databricks' + +ipAccessList.IpAccessList.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a IpAccessList 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 IpAccessList to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing IpAccessList that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/ip_access_list#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 IpAccessList to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/job.csharp.md b/docs/job.csharp.md index 0e003be9e..73921d0c5 100644 --- a/docs/job.csharp.md +++ b/docs/job.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. | | PutCompute | *No description.* | | PutContinuous | *No description.* | | PutDbtTask | *No description.* | @@ -199,6 +202,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 @@ -307,6 +326,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 @@ -319,6 +356,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. + +--- + ##### `PutCompute` ```csharp @@ -848,6 +909,7 @@ private void ResetWebhookNotifications() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Job resource upon running "cdktf plan ". | --- @@ -911,6 +973,50 @@ Job.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Job.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Job 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 Job to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Job that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Job to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/job.go.md b/docs/job.go.md index 6bcd5ec28..497ae9a4c 100644 --- a/docs/job.go.md +++ b/docs/job.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/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJob(scope Construct, id *string, config JobConfig) Job ``` @@ -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. | | PutCompute | *No description.* | | PutContinuous | *No description.* | | PutDbtTask | *No description.* | @@ -199,6 +202,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 @@ -307,6 +326,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 @@ -319,6 +356,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. + +--- + ##### `PutCompute` ```go @@ -848,13 +909,14 @@ func ResetWebhookNotifications() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Job resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.Job_IsConstruct(x interface{}) *bool ``` @@ -886,7 +948,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.Job_IsTerraformElement(x interface{}) *bool ``` @@ -900,7 +962,7 @@ job.Job_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.Job_IsTerraformResource(x interface{}) *bool ``` @@ -911,6 +973,50 @@ job.Job_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" + +job.Job_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Job 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 Job to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Job that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/job#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 Job to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1924,11 +2030,11 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobCompute { ComputeKey: *string, - Spec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobComputeSpec, + Spec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobComputeSpec, } ``` @@ -1972,7 +2078,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobComputeSpec { Kind: *string, @@ -2004,7 +2110,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobConfig { Connection: interface{}, @@ -2016,14 +2122,14 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" Provisioners: *[]interface{}, AlwaysRunning: interface{}, Compute: interface{}, - Continuous: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobContinuous, + Continuous: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobContinuous, ControlRunState: interface{}, - DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobDbtTask, - EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobEmailNotifications, + DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobDbtTask, + EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobEmailNotifications, ExistingClusterId: *string, Format: *string, - GitSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobGitSource, - Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobHealth, + GitSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobGitSource, + Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobHealth, Id: *string, JobCluster: interface{}, Library: interface{}, @@ -2031,26 +2137,26 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" MaxRetries: *f64, MinRetryIntervalMillis: *f64, Name: *string, - NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewCluster, - NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNotebookTask, - NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNotificationSettings, + NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewCluster, + NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNotebookTask, + NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNotificationSettings, Parameter: interface{}, - PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobPipelineTask, - PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobPythonWheelTask, - Queue: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobQueue, + PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobPipelineTask, + PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobPythonWheelTask, + Queue: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobQueue, RetryOnTimeout: interface{}, - RunAs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobRunAs, - RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobRunJobTask, - Schedule: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobSchedule, - SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobSparkJarTask, - SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobSparkPythonTask, - SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobSparkSubmitTask, + RunAs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobRunAs, + RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobRunJobTask, + Schedule: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobSchedule, + SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobSparkJarTask, + SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobSparkPythonTask, + SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobSparkSubmitTask, Tags: *map[string]*string, Task: interface{}, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTimeouts, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTimeouts, TimeoutSeconds: *f64, - Trigger: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTrigger, - WebhookNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobWebhookNotifications, + Trigger: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTrigger, + WebhookNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobWebhookNotifications, } ``` @@ -2677,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/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobContinuous { PauseStatus: *string, @@ -2709,7 +2815,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobDbtTask { Commands: *[]*string, @@ -2811,7 +2917,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobEmailNotifications { AlertOnLastAttempt: interface{}, @@ -2913,13 +3019,13 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobGitSource { Url: *string, Branch: *string, Commit: *string, - JobSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobGitSourceJobSource, + JobSource: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobGitSourceJobSource, Provider: *string, Tag: *string, } @@ -3017,7 +3123,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobGitSourceJobSource { ImportFromGitBranch: *string, @@ -3077,7 +3183,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobHealth { Rules: interface{}, @@ -3111,7 +3217,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobHealthRules { Metric: *string, @@ -3171,11 +3277,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobCluster { JobClusterKey: *string, - NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewCluster, + NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewCluster, } ``` @@ -3219,27 +3325,27 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewCluster { SparkVersion: *string, ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterAutoscale, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterAutoscale, AutoterminationMinutes: *f64, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterAzureAttributes, ClusterId: *string, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterClusterLogConf, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterClusterLogConf, ClusterMountInfo: interface{}, ClusterName: *string, CustomTags: *map[string]*string, DataSecurityMode: *string, - DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterDockerImage, + DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterDockerImage, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableElasticDisk: interface{}, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterGcpAttributes, IdempotencyToken: *string, InitScripts: interface{}, InstancePoolId: *string, @@ -3251,7 +3357,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" SparkConf: *map[string]*string, SparkEnvVars: *map[string]*string, SshPublicKeys: *[]*string, - WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterWorkloadType, + WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterWorkloadType, } ``` @@ -3675,7 +3781,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterAutoscale { MaxWorkers: *f64, @@ -3721,7 +3827,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterAwsAttributes { Availability: *string, @@ -3851,7 +3957,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterAzureAttributes { Availability: *string, @@ -3911,11 +4017,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterClusterLogConfS3, } ``` @@ -3961,7 +4067,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterClusterLogConfDbfs { Destination: *string, @@ -3993,7 +4099,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterClusterLogConfS3 { Destination: *string, @@ -4109,11 +4215,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterClusterMountInfo { LocalMountDirPath: *string, - NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo, + NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo, RemoteMountDirPath: *string, } ``` @@ -4171,7 +4277,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo { ServerAddress: *string, @@ -4217,11 +4323,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterDockerImageBasicAuth, } ``` @@ -4265,7 +4371,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterDockerImageBasicAuth { Password: *string, @@ -4311,7 +4417,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterGcpAttributes { Availability: *string, @@ -4413,16 +4519,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterInitScriptsWorkspace, } ``` @@ -4543,7 +4649,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsAbfss { Destination: *string, @@ -4575,7 +4681,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsDbfs { Destination: *string, @@ -4607,7 +4713,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsFile { Destination: *string, @@ -4639,7 +4745,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsGcs { Destination: *string, @@ -4671,7 +4777,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsS3 { Destination: *string, @@ -4787,7 +4893,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsVolumes { Destination: *string, @@ -4819,7 +4925,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterInitScriptsWorkspace { Destination: *string, @@ -4851,10 +4957,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterWorkloadType { - Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobJobClusterNewClusterWorkloadTypeClients, + Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobJobClusterNewClusterWorkloadTypeClients, } ``` @@ -4885,7 +4991,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobJobClusterNewClusterWorkloadTypeClients { Jobs: interface{}, @@ -4931,14 +5037,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobLibrary { - Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobLibraryCran, + Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobLibraryCran, Egg: *string, Jar: *string, - Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobLibraryMaven, - Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobLibraryPypi, + Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobLibraryMaven, + Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobLibraryPypi, Whl: *string, } ``` @@ -5039,7 +5145,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobLibraryCran { Package: *string, @@ -5085,7 +5191,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobLibraryMaven { Coordinates: *string, @@ -5145,7 +5251,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobLibraryPypi { Package: *string, @@ -5191,27 +5297,27 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewCluster { SparkVersion: *string, ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterAutoscale, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterAutoscale, AutoterminationMinutes: *f64, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterAzureAttributes, ClusterId: *string, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterClusterLogConf, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterClusterLogConf, ClusterMountInfo: interface{}, ClusterName: *string, CustomTags: *map[string]*string, DataSecurityMode: *string, - DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterDockerImage, + DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterDockerImage, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableElasticDisk: interface{}, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterGcpAttributes, IdempotencyToken: *string, InitScripts: interface{}, InstancePoolId: *string, @@ -5223,7 +5329,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" SparkConf: *map[string]*string, SparkEnvVars: *map[string]*string, SshPublicKeys: *[]*string, - WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterWorkloadType, + WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterWorkloadType, } ``` @@ -5647,7 +5753,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterAutoscale { MaxWorkers: *f64, @@ -5693,7 +5799,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterAwsAttributes { Availability: *string, @@ -5823,7 +5929,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterAzureAttributes { Availability: *string, @@ -5883,11 +5989,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterClusterLogConfS3, } ``` @@ -5933,7 +6039,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterClusterLogConfDbfs { Destination: *string, @@ -5965,7 +6071,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterClusterLogConfS3 { Destination: *string, @@ -6081,11 +6187,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterClusterMountInfo { LocalMountDirPath: *string, - NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterClusterMountInfoNetworkFilesystemInfo, + NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterClusterMountInfoNetworkFilesystemInfo, RemoteMountDirPath: *string, } ``` @@ -6143,7 +6249,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterClusterMountInfoNetworkFilesystemInfo { ServerAddress: *string, @@ -6189,11 +6295,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterDockerImageBasicAuth, } ``` @@ -6237,7 +6343,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterDockerImageBasicAuth { Password: *string, @@ -6283,7 +6389,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterGcpAttributes { Availability: *string, @@ -6385,16 +6491,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterInitScriptsWorkspace, } ``` @@ -6515,7 +6621,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsAbfss { Destination: *string, @@ -6547,7 +6653,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsDbfs { Destination: *string, @@ -6579,7 +6685,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsFile { Destination: *string, @@ -6611,7 +6717,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsGcs { Destination: *string, @@ -6643,7 +6749,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsS3 { Destination: *string, @@ -6759,7 +6865,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsVolumes { Destination: *string, @@ -6791,7 +6897,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterInitScriptsWorkspace { Destination: *string, @@ -6823,10 +6929,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterWorkloadType { - Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobNewClusterWorkloadTypeClients, + Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobNewClusterWorkloadTypeClients, } ``` @@ -6857,7 +6963,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNewClusterWorkloadTypeClients { Jobs: interface{}, @@ -6903,7 +7009,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNotebookTask { NotebookPath: *string, @@ -6963,7 +7069,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobNotificationSettings { NoAlertForCanceledRuns: interface{}, @@ -7009,7 +7115,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobParameter { Default: *string, @@ -7055,7 +7161,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobPipelineTask { PipelineId: *string, @@ -7101,7 +7207,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobPythonWheelTask { EntryPoint: *string, @@ -7175,7 +7281,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobQueue { Enabled: interface{}, @@ -7207,7 +7313,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobRunAs { ServicePrincipalName: *string, @@ -7253,7 +7359,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobRunJobTask { JobId: *f64, @@ -7299,7 +7405,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobSchedule { QuartzCronExpression: *string, @@ -7359,7 +7465,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobSparkJarTask { JarUri: *string, @@ -7419,7 +7525,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobSparkPythonTask { PythonFile: *string, @@ -7479,7 +7585,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobSparkSubmitTask { Parameters: *[]*string, @@ -7511,33 +7617,33 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTask { ComputeKey: *string, - ConditionTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskConditionTask, - DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskDbtTask, + ConditionTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskConditionTask, + DbtTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskDbtTask, DependsOn: interface{}, Description: *string, - EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskEmailNotifications, + EmailNotifications: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskEmailNotifications, ExistingClusterId: *string, - Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskHealth, + Health: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskHealth, JobClusterKey: *string, Library: interface{}, MaxRetries: *f64, MinRetryIntervalMillis: *f64, - NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewCluster, - NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNotebookTask, - NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNotificationSettings, - PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskPipelineTask, - PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskPythonWheelTask, + NewCluster: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewCluster, + NotebookTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNotebookTask, + NotificationSettings: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNotificationSettings, + PipelineTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskPipelineTask, + PythonWheelTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskPythonWheelTask, RetryOnTimeout: interface{}, RunIf: *string, - RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskRunJobTask, - SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSparkJarTask, - SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSparkPythonTask, - SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSparkSubmitTask, - SqlTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSqlTask, + RunJobTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskRunJobTask, + SparkJarTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSparkJarTask, + SparkPythonTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSparkPythonTask, + SparkSubmitTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSparkSubmitTask, + SqlTask: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSqlTask, TaskKey: *string, TimeoutSeconds: *f64, } @@ -7925,7 +8031,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskConditionTask { Left: *string, @@ -7985,7 +8091,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskDbtTask { Commands: *[]*string, @@ -8087,7 +8193,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskDependsOn { TaskKey: *string, @@ -8133,7 +8239,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskEmailNotifications { AlertOnLastAttempt: interface{}, @@ -8235,7 +8341,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskHealth { Rules: interface{}, @@ -8269,7 +8375,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskHealthRules { Metric: *string, @@ -8329,14 +8435,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskLibrary { - Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskLibraryCran, + Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskLibraryCran, Egg: *string, Jar: *string, - Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskLibraryMaven, - Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskLibraryPypi, + Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskLibraryMaven, + Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskLibraryPypi, Whl: *string, } ``` @@ -8437,7 +8543,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskLibraryCran { Package: *string, @@ -8483,7 +8589,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskLibraryMaven { Coordinates: *string, @@ -8543,7 +8649,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskLibraryPypi { Package: *string, @@ -8589,27 +8695,27 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewCluster { SparkVersion: *string, ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterAutoscale, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterAutoscale, AutoterminationMinutes: *f64, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterAzureAttributes, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterAzureAttributes, ClusterId: *string, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterClusterLogConf, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterClusterLogConf, ClusterMountInfo: interface{}, ClusterName: *string, CustomTags: *map[string]*string, DataSecurityMode: *string, - DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterDockerImage, + DockerImage: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterDockerImage, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableElasticDisk: interface{}, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterGcpAttributes, IdempotencyToken: *string, InitScripts: interface{}, InstancePoolId: *string, @@ -8621,7 +8727,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" SparkConf: *map[string]*string, SparkEnvVars: *map[string]*string, SshPublicKeys: *[]*string, - WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterWorkloadType, + WorkloadType: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterWorkloadType, } ``` @@ -9045,7 +9151,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterAutoscale { MaxWorkers: *f64, @@ -9091,7 +9197,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterAwsAttributes { Availability: *string, @@ -9221,7 +9327,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterAzureAttributes { Availability: *string, @@ -9281,11 +9387,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterClusterLogConfS3, } ``` @@ -9331,7 +9437,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterClusterLogConfDbfs { Destination: *string, @@ -9363,7 +9469,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterClusterLogConfS3 { Destination: *string, @@ -9479,11 +9585,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterClusterMountInfo { LocalMountDirPath: *string, - NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterClusterMountInfoNetworkFilesystemInfo, + NetworkFilesystemInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterClusterMountInfoNetworkFilesystemInfo, RemoteMountDirPath: *string, } ``` @@ -9541,7 +9647,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterClusterMountInfoNetworkFilesystemInfo { ServerAddress: *string, @@ -9587,11 +9693,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterDockerImage { Url: *string, - BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterDockerImageBasicAuth, + BasicAuth: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterDockerImageBasicAuth, } ``` @@ -9635,7 +9741,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterDockerImageBasicAuth { Password: *string, @@ -9681,7 +9787,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterGcpAttributes { Availability: *string, @@ -9783,16 +9889,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterInitScriptsWorkspace, } ``` @@ -9913,7 +10019,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsAbfss { Destination: *string, @@ -9945,7 +10051,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsDbfs { Destination: *string, @@ -9977,7 +10083,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsFile { Destination: *string, @@ -10009,7 +10115,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsGcs { Destination: *string, @@ -10041,7 +10147,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsS3 { Destination: *string, @@ -10157,7 +10263,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsVolumes { Destination: *string, @@ -10189,7 +10295,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterInitScriptsWorkspace { Destination: *string, @@ -10221,10 +10327,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterWorkloadType { - Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskNewClusterWorkloadTypeClients, + Clients: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskNewClusterWorkloadTypeClients, } ``` @@ -10255,7 +10361,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNewClusterWorkloadTypeClients { Jobs: interface{}, @@ -10301,7 +10407,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNotebookTask { NotebookPath: *string, @@ -10361,7 +10467,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskNotificationSettings { AlertOnLastAttempt: interface{}, @@ -10421,7 +10527,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskPipelineTask { PipelineId: *string, @@ -10467,7 +10573,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskPythonWheelTask { EntryPoint: *string, @@ -10541,7 +10647,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskRunJobTask { JobId: *f64, @@ -10587,7 +10693,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSparkJarTask { JarUri: *string, @@ -10647,7 +10753,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSparkPythonTask { PythonFile: *string, @@ -10707,7 +10813,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSparkSubmitTask { Parameters: *[]*string, @@ -10739,14 +10845,14 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTask { - Alert: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSqlTaskAlert, - Dashboard: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSqlTaskDashboard, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSqlTaskFile, + Alert: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSqlTaskAlert, + Dashboard: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSqlTaskDashboard, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSqlTaskFile, Parameters: *map[string]*string, - Query: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTaskSqlTaskQuery, + Query: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTaskSqlTaskQuery, WarehouseId: *string, } ``` @@ -10849,7 +10955,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTaskAlert { AlertId: *string, @@ -10911,7 +11017,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTaskAlertSubscriptions { DestinationId: *string, @@ -10957,7 +11063,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTaskDashboard { DashboardId: *string, @@ -11033,7 +11139,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTaskDashboardSubscriptions { DestinationId: *string, @@ -11079,7 +11185,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTaskFile { Path: *string, @@ -11111,7 +11217,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTaskSqlTaskQuery { QueryId: *string, @@ -11143,7 +11249,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTimeouts { Create: *string, @@ -11189,10 +11295,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTrigger { - FileArrival: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.job.JobTriggerFileArrival, + FileArrival: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.job.JobTriggerFileArrival, PauseStatus: *string, } ``` @@ -11237,7 +11343,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobTriggerFileArrival { Url: *string, @@ -11297,7 +11403,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobWebhookNotifications { OnDurationWarningThresholdExceeded: interface{}, @@ -11379,7 +11485,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobWebhookNotificationsOnDurationWarningThresholdExceeded { Id: *string, @@ -11414,7 +11520,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/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobWebhookNotificationsOnFailure { Id: *string, @@ -11449,7 +11555,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/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobWebhookNotificationsOnStart { Id: *string, @@ -11484,7 +11590,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/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" &job.JobWebhookNotificationsOnSuccess { Id: *string, @@ -11521,7 +11627,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/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobComputeList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobComputeList ``` @@ -11664,7 +11770,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobComputeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobComputeOutputReference ``` @@ -12002,7 +12108,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobComputeSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobComputeSpecOutputReference ``` @@ -12280,7 +12386,7 @@ func InternalValue() JobComputeSpec #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobContinuousOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobContinuousOutputReference ``` @@ -12558,7 +12664,7 @@ func InternalValue() JobContinuous #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobDbtTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobDbtTaskOutputReference ``` @@ -12974,7 +13080,7 @@ func InternalValue() JobDbtTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobEmailNotificationsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobEmailNotificationsOutputReference ``` @@ -13397,7 +13503,7 @@ func InternalValue() JobEmailNotifications #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobGitSourceJobSourceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobGitSourceJobSourceOutputReference ``` @@ -13719,7 +13825,7 @@ func InternalValue() JobGitSourceJobSource #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobGitSourceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobGitSourceOutputReference ``` @@ -14148,7 +14254,7 @@ func InternalValue() JobGitSource #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobHealthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobHealthOutputReference ``` @@ -14432,7 +14538,7 @@ func InternalValue() JobHealth #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobHealthRulesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobHealthRulesList ``` @@ -14575,7 +14681,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobHealthRulesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobHealthRulesOutputReference ``` @@ -14929,7 +15035,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobJobClusterList ``` @@ -15072,7 +15178,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterAutoscaleOutputReference ``` @@ -15379,7 +15485,7 @@ func InternalValue() JobJobClusterNewClusterAutoscale #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterAwsAttributesOutputReference ``` @@ -15860,7 +15966,7 @@ func InternalValue() JobJobClusterNewClusterAwsAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterAzureAttributesOutputReference ``` @@ -16196,7 +16302,7 @@ func InternalValue() JobJobClusterNewClusterAzureAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterClusterLogConfDbfsOutputReference ``` @@ -16467,7 +16573,7 @@ func InternalValue() JobJobClusterNewClusterClusterLogConfDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterClusterLogConfOutputReference ``` @@ -16800,7 +16906,7 @@ func InternalValue() JobJobClusterNewClusterClusterLogConf #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterClusterLogConfS3OutputReference ``` @@ -17245,7 +17351,7 @@ func InternalValue() JobJobClusterNewClusterClusterLogConfS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobJobClusterNewClusterClusterMountInfoList ``` @@ -17388,7 +17494,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference ``` @@ -17688,7 +17794,7 @@ func InternalValue() JobJobClusterNewClusterClusterMountInfoNetworkFilesystemInf #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobJobClusterNewClusterClusterMountInfoOutputReference ``` @@ -18041,7 +18147,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterDockerImageBasicAuthOutputReference ``` @@ -18334,7 +18440,7 @@ func InternalValue() JobJobClusterNewClusterDockerImageBasicAuth #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterDockerImageOutputReference ``` @@ -18647,7 +18753,7 @@ func InternalValue() JobJobClusterNewClusterDockerImage #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterGcpAttributesOutputReference ``` @@ -19070,7 +19176,7 @@ func InternalValue() JobJobClusterNewClusterGcpAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsAbfssOutputReference ``` @@ -19348,7 +19454,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsAbfss #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsDbfsOutputReference ``` @@ -19619,7 +19725,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsFileOutputReference ``` @@ -19897,7 +20003,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsFile #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsGcsOutputReference ``` @@ -20175,7 +20281,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsGcs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobJobClusterNewClusterInitScriptsList ``` @@ -20318,7 +20424,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobJobClusterNewClusterInitScriptsOutputReference ``` @@ -20879,7 +20985,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsS3OutputReference ``` @@ -21324,7 +21430,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsVolumesOutputReference ``` @@ -21602,7 +21708,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsVolumes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterInitScriptsWorkspaceOutputReference ``` @@ -21880,7 +21986,7 @@ func InternalValue() JobJobClusterNewClusterInitScriptsWorkspace #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterOutputReference ``` @@ -23109,7 +23215,7 @@ func InternalValue() JobJobClusterNewCluster #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterWorkloadTypeClientsOutputReference ``` @@ -23416,7 +23522,7 @@ func InternalValue() JobJobClusterNewClusterWorkloadTypeClients #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterNewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobJobClusterNewClusterWorkloadTypeOutputReference ``` @@ -23700,7 +23806,7 @@ func InternalValue() JobJobClusterNewClusterWorkloadType #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobJobClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobJobClusterOutputReference ``` @@ -24038,7 +24144,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobLibraryCranOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobLibraryCranOutputReference ``` @@ -24338,7 +24444,7 @@ func InternalValue() JobLibraryCran #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobLibraryList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobLibraryList ``` @@ -24481,7 +24587,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobLibraryMavenOutputReference ``` @@ -24810,7 +24916,7 @@ func InternalValue() JobLibraryMaven #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobLibraryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobLibraryOutputReference ``` @@ -25290,7 +25396,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobLibraryPypiOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobLibraryPypiOutputReference ``` @@ -25590,7 +25696,7 @@ func InternalValue() JobLibraryPypi #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterAutoscaleOutputReference ``` @@ -25897,7 +26003,7 @@ func InternalValue() JobNewClusterAutoscale #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterAwsAttributesOutputReference ``` @@ -26378,7 +26484,7 @@ func InternalValue() JobNewClusterAwsAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterAzureAttributesOutputReference ``` @@ -26714,7 +26820,7 @@ func InternalValue() JobNewClusterAzureAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterClusterLogConfDbfsOutputReference ``` @@ -26985,7 +27091,7 @@ func InternalValue() JobNewClusterClusterLogConfDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterClusterLogConfOutputReference ``` @@ -27318,7 +27424,7 @@ func InternalValue() JobNewClusterClusterLogConf #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterClusterLogConfS3OutputReference ``` @@ -27763,7 +27869,7 @@ func InternalValue() JobNewClusterClusterLogConfS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobNewClusterClusterMountInfoList ``` @@ -27906,7 +28012,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference ``` @@ -28206,7 +28312,7 @@ func InternalValue() JobNewClusterClusterMountInfoNetworkFilesystemInfo #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobNewClusterClusterMountInfoOutputReference ``` @@ -28559,7 +28665,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterDockerImageBasicAuthOutputReference ``` @@ -28852,7 +28958,7 @@ func InternalValue() JobNewClusterDockerImageBasicAuth #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterDockerImageOutputReference ``` @@ -29165,7 +29271,7 @@ func InternalValue() JobNewClusterDockerImage #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterGcpAttributesOutputReference ``` @@ -29588,7 +29694,7 @@ func InternalValue() JobNewClusterGcpAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsAbfssOutputReference ``` @@ -29866,7 +29972,7 @@ func InternalValue() JobNewClusterInitScriptsAbfss #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsDbfsOutputReference ``` @@ -30137,7 +30243,7 @@ func InternalValue() JobNewClusterInitScriptsDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsFileOutputReference ``` @@ -30415,7 +30521,7 @@ func InternalValue() JobNewClusterInitScriptsFile #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsGcsOutputReference ``` @@ -30693,7 +30799,7 @@ func InternalValue() JobNewClusterInitScriptsGcs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobNewClusterInitScriptsList ``` @@ -30836,7 +30942,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobNewClusterInitScriptsOutputReference ``` @@ -31397,7 +31503,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsS3OutputReference ``` @@ -31842,7 +31948,7 @@ func InternalValue() JobNewClusterInitScriptsS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsVolumesOutputReference ``` @@ -32120,7 +32226,7 @@ func InternalValue() JobNewClusterInitScriptsVolumes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterInitScriptsWorkspaceOutputReference ``` @@ -32398,7 +32504,7 @@ func InternalValue() JobNewClusterInitScriptsWorkspace #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterOutputReference ``` @@ -33627,7 +33733,7 @@ func InternalValue() JobNewCluster #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterWorkloadTypeClientsOutputReference ``` @@ -33934,7 +34040,7 @@ func InternalValue() JobNewClusterWorkloadTypeClients #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNewClusterWorkloadTypeOutputReference ``` @@ -34218,7 +34324,7 @@ func InternalValue() JobNewClusterWorkloadType #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNotebookTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNotebookTaskOutputReference ``` @@ -34547,7 +34653,7 @@ func InternalValue() JobNotebookTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobNotificationSettingsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobNotificationSettingsOutputReference ``` @@ -34854,7 +34960,7 @@ func InternalValue() JobNotificationSettings #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobParameterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobParameterList ``` @@ -34997,7 +35103,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobParameterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobParameterOutputReference ``` @@ -35322,7 +35428,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobPipelineTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobPipelineTaskOutputReference ``` @@ -35622,7 +35728,7 @@ func InternalValue() JobPipelineTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobPythonWheelTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobPythonWheelTaskOutputReference ``` @@ -35987,7 +36093,7 @@ func InternalValue() JobPythonWheelTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobQueueOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobQueueOutputReference ``` @@ -36258,7 +36364,7 @@ func InternalValue() JobQueue #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobRunAsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobRunAsOutputReference ``` @@ -36565,7 +36671,7 @@ func InternalValue() JobRunAs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobRunJobTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobRunJobTaskOutputReference ``` @@ -36865,7 +36971,7 @@ func InternalValue() JobRunJobTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobScheduleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobScheduleOutputReference ``` @@ -37187,7 +37293,7 @@ func InternalValue() JobSchedule #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobSparkJarTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobSparkJarTaskOutputReference ``` @@ -37523,7 +37629,7 @@ func InternalValue() JobSparkJarTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobSparkPythonTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobSparkPythonTaskOutputReference ``` @@ -37852,7 +37958,7 @@ func InternalValue() JobSparkPythonTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobSparkSubmitTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobSparkSubmitTaskOutputReference ``` @@ -38130,7 +38236,7 @@ func InternalValue() JobSparkSubmitTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskConditionTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskConditionTaskOutputReference ``` @@ -38466,7 +38572,7 @@ func InternalValue() JobTaskConditionTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskDbtTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskDbtTaskOutputReference ``` @@ -38882,7 +38988,7 @@ func InternalValue() JobTaskDbtTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskDependsOnList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskDependsOnList ``` @@ -39025,7 +39131,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskDependsOnOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskDependsOnOutputReference ``` @@ -39343,7 +39449,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskEmailNotificationsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskEmailNotificationsOutputReference ``` @@ -39766,7 +39872,7 @@ func InternalValue() JobTaskEmailNotifications #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskHealthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskHealthOutputReference ``` @@ -40050,7 +40156,7 @@ func InternalValue() JobTaskHealth #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskHealthRulesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskHealthRulesList ``` @@ -40193,7 +40299,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskHealthRulesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskHealthRulesOutputReference ``` @@ -40547,7 +40653,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskLibraryCranOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskLibraryCranOutputReference ``` @@ -40847,7 +40953,7 @@ func InternalValue() JobTaskLibraryCran #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskLibraryList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskLibraryList ``` @@ -40990,7 +41096,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskLibraryMavenOutputReference ``` @@ -41319,7 +41425,7 @@ func InternalValue() JobTaskLibraryMaven #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskLibraryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskLibraryOutputReference ``` @@ -41799,7 +41905,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskLibraryPypiOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskLibraryPypiOutputReference ``` @@ -42099,7 +42205,7 @@ func InternalValue() JobTaskLibraryPypi #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskList ``` @@ -42242,7 +42348,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterAutoscaleOutputReference ``` @@ -42549,7 +42655,7 @@ func InternalValue() JobTaskNewClusterAutoscale #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterAwsAttributesOutputReference ``` @@ -43030,7 +43136,7 @@ func InternalValue() JobTaskNewClusterAwsAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterAzureAttributesOutputReference ``` @@ -43366,7 +43472,7 @@ func InternalValue() JobTaskNewClusterAzureAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterClusterLogConfDbfsOutputReference ``` @@ -43637,7 +43743,7 @@ func InternalValue() JobTaskNewClusterClusterLogConfDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterClusterLogConfOutputReference ``` @@ -43970,7 +44076,7 @@ func InternalValue() JobTaskNewClusterClusterLogConf #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterClusterLogConfS3OutputReference ``` @@ -44415,7 +44521,7 @@ func InternalValue() JobTaskNewClusterClusterLogConfS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterClusterMountInfoList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskNewClusterClusterMountInfoList ``` @@ -44558,7 +44664,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterClusterMountInfoNetworkFilesystemInfoOutputReference ``` @@ -44858,7 +44964,7 @@ func InternalValue() JobTaskNewClusterClusterMountInfoNetworkFilesystemInfo #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterClusterMountInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskNewClusterClusterMountInfoOutputReference ``` @@ -45211,7 +45317,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterDockerImageBasicAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterDockerImageBasicAuthOutputReference ``` @@ -45504,7 +45610,7 @@ func InternalValue() JobTaskNewClusterDockerImageBasicAuth #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterDockerImageOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterDockerImageOutputReference ``` @@ -45817,7 +45923,7 @@ func InternalValue() JobTaskNewClusterDockerImage #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterGcpAttributesOutputReference ``` @@ -46240,7 +46346,7 @@ func InternalValue() JobTaskNewClusterGcpAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsAbfssOutputReference ``` @@ -46518,7 +46624,7 @@ func InternalValue() JobTaskNewClusterInitScriptsAbfss #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsDbfsOutputReference ``` @@ -46789,7 +46895,7 @@ func InternalValue() JobTaskNewClusterInitScriptsDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsFileOutputReference ``` @@ -47067,7 +47173,7 @@ func InternalValue() JobTaskNewClusterInitScriptsFile #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsGcsOutputReference ``` @@ -47345,7 +47451,7 @@ func InternalValue() JobTaskNewClusterInitScriptsGcs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskNewClusterInitScriptsList ``` @@ -47488,7 +47594,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskNewClusterInitScriptsOutputReference ``` @@ -48049,7 +48155,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsS3OutputReference ``` @@ -48494,7 +48600,7 @@ func InternalValue() JobTaskNewClusterInitScriptsS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsVolumesOutputReference ``` @@ -48772,7 +48878,7 @@ func InternalValue() JobTaskNewClusterInitScriptsVolumes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterInitScriptsWorkspaceOutputReference ``` @@ -49050,7 +49156,7 @@ func InternalValue() JobTaskNewClusterInitScriptsWorkspace #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterOutputReference ``` @@ -50279,7 +50385,7 @@ func InternalValue() JobTaskNewCluster #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterWorkloadTypeClientsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterWorkloadTypeClientsOutputReference ``` @@ -50586,7 +50692,7 @@ func InternalValue() JobTaskNewClusterWorkloadTypeClients #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNewClusterWorkloadTypeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNewClusterWorkloadTypeOutputReference ``` @@ -50870,7 +50976,7 @@ func InternalValue() JobTaskNewClusterWorkloadType #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNotebookTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNotebookTaskOutputReference ``` @@ -51199,7 +51305,7 @@ func InternalValue() JobTaskNotebookTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskNotificationSettingsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskNotificationSettingsOutputReference ``` @@ -51535,7 +51641,7 @@ func InternalValue() JobTaskNotificationSettings #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskOutputReference ``` @@ -52764,7 +52870,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskPipelineTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskPipelineTaskOutputReference ``` @@ -53064,7 +53170,7 @@ func InternalValue() JobTaskPipelineTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskPythonWheelTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskPythonWheelTaskOutputReference ``` @@ -53429,7 +53535,7 @@ func InternalValue() JobTaskPythonWheelTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskRunJobTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskRunJobTaskOutputReference ``` @@ -53729,7 +53835,7 @@ func InternalValue() JobTaskRunJobTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSparkJarTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSparkJarTaskOutputReference ``` @@ -54065,7 +54171,7 @@ func InternalValue() JobTaskSparkJarTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSparkPythonTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSparkPythonTaskOutputReference ``` @@ -54394,7 +54500,7 @@ func InternalValue() JobTaskSparkPythonTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSparkSubmitTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSparkSubmitTaskOutputReference ``` @@ -54672,7 +54778,7 @@ func InternalValue() JobTaskSparkSubmitTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskAlertOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSqlTaskAlertOutputReference ``` @@ -55007,7 +55113,7 @@ func InternalValue() JobTaskSqlTaskAlert #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskAlertSubscriptionsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskSqlTaskAlertSubscriptionsList ``` @@ -55150,7 +55256,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskAlertSubscriptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskSqlTaskAlertSubscriptionsOutputReference ``` @@ -55475,7 +55581,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskDashboardOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSqlTaskDashboardOutputReference ``` @@ -55846,7 +55952,7 @@ func InternalValue() JobTaskSqlTaskDashboard #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskDashboardSubscriptionsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobTaskSqlTaskDashboardSubscriptionsList ``` @@ -55989,7 +56095,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskDashboardSubscriptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobTaskSqlTaskDashboardSubscriptionsOutputReference ``` @@ -56314,7 +56420,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSqlTaskFileOutputReference ``` @@ -56585,7 +56691,7 @@ func InternalValue() JobTaskSqlTaskFile #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSqlTaskOutputReference ``` @@ -57060,7 +57166,7 @@ func InternalValue() JobTaskSqlTask #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTaskSqlTaskQueryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTaskSqlTaskQueryOutputReference ``` @@ -57331,7 +57437,7 @@ func InternalValue() JobTaskSqlTaskQuery #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTimeoutsOutputReference ``` @@ -57638,7 +57744,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTriggerFileArrivalOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTriggerFileArrivalOutputReference ``` @@ -57967,7 +58073,7 @@ func InternalValue() JobTriggerFileArrival #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobTriggerOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobTriggerOutputReference ``` @@ -58280,7 +58386,7 @@ func InternalValue() JobTrigger #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnDurationWarningThresholdExceededList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobWebhookNotificationsOnDurationWarningThresholdExceededList ``` @@ -58423,7 +58529,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnDurationWarningThresholdExceededOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobWebhookNotificationsOnDurationWarningThresholdExceededOutputReference ``` @@ -58712,7 +58818,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnFailureList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobWebhookNotificationsOnFailureList ``` @@ -58855,7 +58961,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnFailureOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobWebhookNotificationsOnFailureOutputReference ``` @@ -59144,7 +59250,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnStartList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobWebhookNotificationsOnStartList ``` @@ -59287,7 +59393,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnStartOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobWebhookNotificationsOnStartOutputReference ``` @@ -59576,7 +59682,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnSuccessList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) JobWebhookNotificationsOnSuccessList ``` @@ -59719,7 +59825,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOnSuccessOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) JobWebhookNotificationsOnSuccessOutputReference ``` @@ -60008,7 +60114,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/job" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/job" job.NewJobWebhookNotificationsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) JobWebhookNotificationsOutputReference ``` diff --git a/docs/job.java.md b/docs/job.java.md index 4f7591054..68b727d19 100644 --- a/docs/job.java.md +++ b/docs/job.java.md @@ -545,6 +545,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.* | @@ -554,7 +555,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. | | putCompute | *No description.* | | putContinuous | *No description.* | | putDbtTask | *No description.* | @@ -684,6 +687,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 @@ -792,6 +811,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 @@ -804,6 +842,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. + +--- + ##### `putCompute` ```java @@ -1333,6 +1396,7 @@ public void resetWebhookNotifications() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Job resource upon running "cdktf plan ". | --- @@ -1396,6 +1460,50 @@ Job.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.job.Job; + +Job.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Job.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Job 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 Job to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Job that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/job#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 Job to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/job.python.md b/docs/job.python.md index 92326b5e6..5c79ecea3 100644 --- a/docs/job.python.md +++ b/docs/job.python.md @@ -535,6 +535,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.* | @@ -544,7 +545,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_compute | *No description.* | | put_continuous | *No description.* | | put_dbt_task | *No description.* | @@ -679,6 +682,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 @@ -805,6 +826,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 @@ -819,6 +861,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_compute` ```python @@ -2046,6 +2115,7 @@ def reset_webhook_notifications() -> 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 Job resource upon running "cdktf plan ". | --- @@ -2115,6 +2185,55 @@ job.Job.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import job + +job.Job.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Job 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 Job to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Job that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/job#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 Job to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/job.typescript.md b/docs/job.typescript.md index 4c9fb8cea..bc387d0c5 100644 --- a/docs/job.typescript.md +++ b/docs/job.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. | | putCompute | *No description.* | | putContinuous | *No description.* | | putDbtTask | *No description.* | @@ -199,6 +202,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 @@ -307,6 +326,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 @@ -319,6 +356,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. + +--- + ##### `putCompute` ```typescript @@ -848,6 +909,7 @@ public resetWebhookNotifications(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Job resource upon running "cdktf plan ". | --- @@ -911,6 +973,50 @@ job.Job.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { job } from '@cdktf/provider-databricks' + +job.Job.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Job 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 Job to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Job that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/job#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 Job to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/library.csharp.md b/docs/library.csharp.md index 387b75a2d..9feed51a8 100644 --- a/docs/library.csharp.md +++ b/docs/library.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. | | PutCran | *No description.* | | PutMaven | *No description.* | | PutPypi | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutCran` ```csharp @@ -352,6 +413,7 @@ private void ResetWhl() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Library resource upon running "cdktf plan ". | --- @@ -415,6 +477,50 @@ Library.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Library.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Library 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 Library to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Library that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/library#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 Library to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/library.go.md b/docs/library.go.md index 381760d9a..71f30e637 100644 --- a/docs/library.go.md +++ b/docs/library.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/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.NewLibrary(scope Construct, id *string, config LibraryConfig) Library ``` @@ -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. | | PutCran | *No description.* | | PutMaven | *No description.* | | PutPypi | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutCran` ```go @@ -352,13 +413,14 @@ func ResetWhl() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Library resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.Library_IsConstruct(x interface{}) *bool ``` @@ -390,7 +452,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.Library_IsTerraformElement(x interface{}) *bool ``` @@ -404,7 +466,7 @@ library.Library_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.Library_IsTerraformResource(x interface{}) *bool ``` @@ -415,6 +477,50 @@ library.Library_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" + +library.Library_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Library 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 Library to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Library that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/library#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 Library to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -779,7 +885,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" &library.LibraryConfig { Connection: interface{}, @@ -790,12 +896,12 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider, Provisioners: *[]interface{}, ClusterId: *string, - Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.library.LibraryCran, + Cran: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.library.LibraryCran, Egg: *string, Id: *string, Jar: *string, - Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.library.LibraryMaven, - Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.library.LibraryPypi, + Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.library.LibraryMaven, + Pypi: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.library.LibraryPypi, Whl: *string, } ``` @@ -1002,7 +1108,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" &library.LibraryCran { Package: *string, @@ -1048,7 +1154,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" &library.LibraryMaven { Coordinates: *string, @@ -1108,7 +1214,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" &library.LibraryPypi { Package: *string, @@ -1156,7 +1262,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.NewLibraryCranOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) LibraryCranOutputReference ``` @@ -1456,7 +1562,7 @@ func InternalValue() LibraryCran #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.NewLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) LibraryMavenOutputReference ``` @@ -1785,7 +1891,7 @@ func InternalValue() LibraryMaven #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/library" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/library" library.NewLibraryPypiOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) LibraryPypiOutputReference ``` diff --git a/docs/library.java.md b/docs/library.java.md index ca675bfe6..4bdfc75fa 100644 --- a/docs/library.java.md +++ b/docs/library.java.md @@ -203,6 +203,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.* | @@ -212,7 +213,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. | | putCran | *No description.* | | putMaven | *No description.* | | putPypi | *No description.* | @@ -290,6 +293,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 @@ -398,6 +417,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 @@ -410,6 +448,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. + +--- + ##### `putCran` ```java @@ -495,6 +558,7 @@ public void resetWhl() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Library resource upon running "cdktf plan ". | --- @@ -558,6 +622,50 @@ Library.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.library.Library; + +Library.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Library.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Library 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 Library to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Library that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/library#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 Library to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/library.python.md b/docs/library.python.md index 9bf5d456c..f0ebad6d7 100644 --- a/docs/library.python.md +++ b/docs/library.python.md @@ -201,6 +201,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.* | @@ -210,7 +211,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_cran | *No description.* | | put_maven | *No description.* | | put_pypi | *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. + +--- + ##### `put_cran` ```python @@ -566,6 +635,7 @@ def reset_whl() -> 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 Library resource upon running "cdktf plan ". | --- @@ -635,6 +705,55 @@ library.Library.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import library + +library.Library.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Library 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 Library to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Library that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/library#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 Library to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/library.typescript.md b/docs/library.typescript.md index 805e0e533..1ad2300bc 100644 --- a/docs/library.typescript.md +++ b/docs/library.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. | | putCran | *No description.* | | putMaven | *No description.* | | putPypi | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `putCran` ```typescript @@ -352,6 +413,7 @@ public resetWhl(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Library resource upon running "cdktf plan ". | --- @@ -415,6 +477,50 @@ library.Library.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { library } from '@cdktf/provider-databricks' + +library.Library.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Library 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 Library to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Library that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/library#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 Library to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastore.csharp.md b/docs/metastore.csharp.md index f14fabbfd..81e579aad 100644 --- a/docs/metastore.csharp.md +++ b/docs/metastore.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. | | ResetCloud | *No description.* | | ResetCreatedAt | *No description.* | | ResetCreatedBy | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `ResetCloud` ```csharp @@ -376,6 +437,7 @@ private void ResetUpdatedBy() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Metastore resource upon running "cdktf plan ". | --- @@ -439,6 +501,50 @@ Metastore.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Metastore.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Metastore 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 Metastore to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Metastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore#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 Metastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastore.go.md b/docs/metastore.go.md index 229aa3991..4819b4b78 100644 --- a/docs/metastore.go.md +++ b/docs/metastore.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/metastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastore" metastore.NewMetastore(scope Construct, id *string, config MetastoreConfig) Metastore ``` @@ -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. | | ResetCloud | *No description.* | | ResetCreatedAt | *No description.* | | ResetCreatedBy | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `ResetCloud` ```go @@ -376,13 +437,14 @@ func ResetUpdatedBy() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Metastore resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastore" metastore.Metastore_IsConstruct(x interface{}) *bool ``` @@ -414,7 +476,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastore" metastore.Metastore_IsTerraformElement(x interface{}) *bool ``` @@ -428,7 +490,7 @@ metastore.Metastore_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastore" metastore.Metastore_IsTerraformResource(x interface{}) *bool ``` @@ -439,6 +501,50 @@ metastore.Metastore_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastore" + +metastore.Metastore_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Metastore 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 Metastore to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Metastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore#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 Metastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1023,7 +1129,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastore" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastore" &metastore.MetastoreConfig { Connection: interface{}, diff --git a/docs/metastore.java.md b/docs/metastore.java.md index 825480a28..60f117705 100644 --- a/docs/metastore.java.md +++ b/docs/metastore.java.md @@ -298,6 +298,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.* | @@ -307,7 +308,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. | | resetCloud | *No description.* | | resetCreatedAt | *No description.* | | resetCreatedBy | *No description.* | @@ -391,6 +394,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 @@ -499,6 +518,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 @@ -511,6 +549,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. + +--- + ##### `resetCloud` ```java @@ -614,6 +677,7 @@ public void resetUpdatedBy() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Metastore resource upon running "cdktf plan ". | --- @@ -677,6 +741,50 @@ Metastore.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.metastore.Metastore; + +Metastore.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Metastore.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Metastore 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 Metastore to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Metastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore#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 Metastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastore.python.md b/docs/metastore.python.md index bc4596b1d..f815ea5ff 100644 --- a/docs/metastore.python.md +++ b/docs/metastore.python.md @@ -295,6 +295,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.* | @@ -304,7 +305,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_cloud | *No description.* | | reset_created_at | *No description.* | | reset_created_by | *No description.* | @@ -393,6 +396,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 @@ -519,6 +540,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 @@ -533,6 +575,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_cloud` ```python @@ -636,6 +705,7 @@ def reset_updated_by() -> 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 Metastore resource upon running "cdktf plan ". | --- @@ -705,6 +775,55 @@ metastore.Metastore.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import metastore + +metastore.Metastore.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Metastore 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 Metastore to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Metastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore#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 Metastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastore.typescript.md b/docs/metastore.typescript.md index f6f91bcb7..b446c5dab 100644 --- a/docs/metastore.typescript.md +++ b/docs/metastore.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. | | resetCloud | *No description.* | | resetCreatedAt | *No description.* | | resetCreatedBy | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `resetCloud` ```typescript @@ -376,6 +437,7 @@ public resetUpdatedBy(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Metastore resource upon running "cdktf plan ". | --- @@ -439,6 +501,50 @@ metastore.Metastore.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { metastore } from '@cdktf/provider-databricks' + +metastore.Metastore.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Metastore 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 Metastore to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Metastore that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore#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 Metastore to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreAssignment.csharp.md b/docs/metastoreAssignment.csharp.md index d22cbcfe0..94c13ae4c 100644 --- a/docs/metastoreAssignment.csharp.md +++ b/docs/metastoreAssignment.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. | | ResetDefaultCatalogName | *No description.* | | ResetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `ResetDefaultCatalogName` ```csharp @@ -278,6 +339,7 @@ private void ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MetastoreAssignment resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ MetastoreAssignment.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MetastoreAssignment.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MetastoreAssignment 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 MetastoreAssignment to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MetastoreAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_assignment#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 MetastoreAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreAssignment.go.md b/docs/metastoreAssignment.go.md index fed3effae..ad959c657 100644 --- a/docs/metastoreAssignment.go.md +++ b/docs/metastoreAssignment.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/metastoreassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoreassignment" metastoreassignment.NewMetastoreAssignment(scope Construct, id *string, config MetastoreAssignmentConfig) MetastoreAssignment ``` @@ -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. | | ResetDefaultCatalogName | *No description.* | | ResetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `ResetDefaultCatalogName` ```go @@ -278,13 +339,14 @@ func ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MetastoreAssignment resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoreassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoreassignment" metastoreassignment.MetastoreAssignment_IsConstruct(x interface{}) *bool ``` @@ -316,7 +378,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoreassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoreassignment" metastoreassignment.MetastoreAssignment_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +392,7 @@ metastoreassignment.MetastoreAssignment_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoreassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoreassignment" metastoreassignment.MetastoreAssignment_IsTerraformResource(x interface{}) *bool ``` @@ -341,6 +403,50 @@ metastoreassignment.MetastoreAssignment_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoreassignment" + +metastoreassignment.MetastoreAssignment_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MetastoreAssignment 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 MetastoreAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MetastoreAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_assignment#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 MetastoreAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -617,7 +723,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoreassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoreassignment" &metastoreassignment.MetastoreAssignmentConfig { Connection: interface{}, diff --git a/docs/metastoreAssignment.java.md b/docs/metastoreAssignment.java.md index f2ec2d85f..706be4356 100644 --- a/docs/metastoreAssignment.java.md +++ b/docs/metastoreAssignment.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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. | | resetDefaultCatalogName | *No description.* | | resetId | *No description.* | @@ -236,6 +239,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 @@ -344,6 +363,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 @@ -356,6 +394,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. + +--- + ##### `resetDefaultCatalogName` ```java @@ -375,6 +438,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MetastoreAssignment resource upon running "cdktf plan ". | --- @@ -438,6 +502,50 @@ MetastoreAssignment.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.metastore_assignment.MetastoreAssignment; + +MetastoreAssignment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MetastoreAssignment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MetastoreAssignment 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 MetastoreAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MetastoreAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_assignment#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 MetastoreAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreAssignment.python.md b/docs/metastoreAssignment.python.md index af405e61e..5322ede12 100644 --- a/docs/metastoreAssignment.python.md +++ b/docs/metastoreAssignment.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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_default_catalog_name | *No description.* | | reset_id | *No description.* | @@ -239,6 +242,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 @@ -365,6 +386,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 @@ -379,6 +421,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_default_catalog_name` ```python @@ -398,6 +467,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 MetastoreAssignment resource upon running "cdktf plan ". | --- @@ -467,6 +537,55 @@ metastoreAssignment.MetastoreAssignment.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import metastore_assignment + +metastoreAssignment.MetastoreAssignment.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MetastoreAssignment 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 MetastoreAssignment to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MetastoreAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_assignment#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 MetastoreAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreAssignment.typescript.md b/docs/metastoreAssignment.typescript.md index bd416d14a..a89f84ad1 100644 --- a/docs/metastoreAssignment.typescript.md +++ b/docs/metastoreAssignment.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. | | resetDefaultCatalogName | *No description.* | | resetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `resetDefaultCatalogName` ```typescript @@ -278,6 +339,7 @@ public resetId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MetastoreAssignment resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ metastoreAssignment.MetastoreAssignment.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { metastoreAssignment } from '@cdktf/provider-databricks' + +metastoreAssignment.MetastoreAssignment.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MetastoreAssignment 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 MetastoreAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MetastoreAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_assignment#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 MetastoreAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreDataAccess.csharp.md b/docs/metastoreDataAccess.csharp.md index e752fb5ce..96c94dd16 100644 --- a/docs/metastoreDataAccess.csharp.md +++ b/docs/metastoreDataAccess.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. | | PutAwsIamRole | *No description.* | | PutAzureManagedIdentity | *No description.* | | PutAzureServicePrincipal | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `PutAwsIamRole` ```csharp @@ -406,6 +467,7 @@ private void ResetReadOnly() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MetastoreDataAccess resource upon running "cdktf plan ". | --- @@ -469,6 +531,50 @@ MetastoreDataAccess.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MetastoreDataAccess.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MetastoreDataAccess 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 MetastoreDataAccess to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MetastoreDataAccess that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_data_access#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 MetastoreDataAccess to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreDataAccess.go.md b/docs/metastoreDataAccess.go.md index 4fd45c3a8..29542489c 100644 --- a/docs/metastoreDataAccess.go.md +++ b/docs/metastoreDataAccess.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/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.NewMetastoreDataAccess(scope Construct, id *string, config MetastoreDataAccessConfig) MetastoreDataAccess ``` @@ -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. | | PutAwsIamRole | *No description.* | | PutAzureManagedIdentity | *No description.* | | PutAzureServicePrincipal | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `PutAwsIamRole` ```go @@ -406,13 +467,14 @@ func ResetReadOnly() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MetastoreDataAccess resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.MetastoreDataAccess_IsConstruct(x interface{}) *bool ``` @@ -444,7 +506,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.MetastoreDataAccess_IsTerraformElement(x interface{}) *bool ``` @@ -458,7 +520,7 @@ metastoredataaccess.MetastoreDataAccess_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.MetastoreDataAccess_IsTerraformResource(x interface{}) *bool ``` @@ -469,6 +531,50 @@ metastoredataaccess.MetastoreDataAccess_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" + +metastoredataaccess.MetastoreDataAccess_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MetastoreDataAccess 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 MetastoreDataAccess to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MetastoreDataAccess that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_data_access#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 MetastoreDataAccess to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -943,7 +1049,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" &metastoredataaccess.MetastoreDataAccessAwsIamRole { RoleArn: *string, @@ -975,7 +1081,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" &metastoredataaccess.MetastoreDataAccessAzureManagedIdentity { AccessConnectorId: *string, @@ -1035,7 +1141,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" &metastoredataaccess.MetastoreDataAccessAzureServicePrincipal { ApplicationId: *string, @@ -1095,7 +1201,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" &metastoredataaccess.MetastoreDataAccessConfig { Connection: interface{}, @@ -1107,13 +1213,13 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoreda Provisioners: *[]interface{}, MetastoreId: *string, Name: *string, - AwsIamRole: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.metastoreDataAccess.MetastoreDataAccessAwsIamRole, - AzureManagedIdentity: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.metastoreDataAccess.MetastoreDataAccessAzureManagedIdentity, - AzureServicePrincipal: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.metastoreDataAccess.MetastoreDataAccessAzureServicePrincipal, + AwsIamRole: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.metastoreDataAccess.MetastoreDataAccessAwsIamRole, + AzureManagedIdentity: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.metastoreDataAccess.MetastoreDataAccessAzureManagedIdentity, + AzureServicePrincipal: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.metastoreDataAccess.MetastoreDataAccessAzureServicePrincipal, Comment: *string, - DatabricksGcpServiceAccount: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.metastoreDataAccess.MetastoreDataAccessDatabricksGcpServiceAccount, + DatabricksGcpServiceAccount: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.metastoreDataAccess.MetastoreDataAccessDatabricksGcpServiceAccount, ForceDestroy: interface{}, - GcpServiceAccountKey: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.metastoreDataAccess.MetastoreDataAccessGcpServiceAccountKey, + GcpServiceAccountKey: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.metastoreDataAccess.MetastoreDataAccessGcpServiceAccountKey, Id: *string, IsDefault: interface{}, Owner: *string, @@ -1392,7 +1498,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" &metastoredataaccess.MetastoreDataAccessDatabricksGcpServiceAccount { CredentialId: *string, @@ -1438,7 +1544,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" &metastoredataaccess.MetastoreDataAccessGcpServiceAccountKey { Email: *string, @@ -1500,7 +1606,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.NewMetastoreDataAccessAwsIamRoleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MetastoreDataAccessAwsIamRoleOutputReference ``` @@ -1771,7 +1877,7 @@ func InternalValue() MetastoreDataAccessAwsIamRole #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.NewMetastoreDataAccessAzureManagedIdentityOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MetastoreDataAccessAzureManagedIdentityOutputReference ``` @@ -2100,7 +2206,7 @@ func InternalValue() MetastoreDataAccessAzureManagedIdentity #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.NewMetastoreDataAccessAzureServicePrincipalOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MetastoreDataAccessAzureServicePrincipalOutputReference ``` @@ -2415,7 +2521,7 @@ func InternalValue() MetastoreDataAccessAzureServicePrincipal #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.NewMetastoreDataAccessDatabricksGcpServiceAccountOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MetastoreDataAccessDatabricksGcpServiceAccountOutputReference ``` @@ -2722,7 +2828,7 @@ func InternalValue() MetastoreDataAccessDatabricksGcpServiceAccount #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/metastoredataaccess" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/metastoredataaccess" metastoredataaccess.NewMetastoreDataAccessGcpServiceAccountKeyOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MetastoreDataAccessGcpServiceAccountKeyOutputReference ``` diff --git a/docs/metastoreDataAccess.java.md b/docs/metastoreDataAccess.java.md index 5b155f54d..ca38e8b8a 100644 --- a/docs/metastoreDataAccess.java.md +++ b/docs/metastoreDataAccess.java.md @@ -260,6 +260,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.* | @@ -269,7 +270,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. | | putAwsIamRole | *No description.* | | putAzureManagedIdentity | *No description.* | | putAzureServicePrincipal | *No description.* | @@ -353,6 +356,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 @@ -461,6 +480,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 @@ -473,6 +511,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. + +--- + ##### `putAwsIamRole` ```java @@ -606,6 +669,7 @@ public void resetReadOnly() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MetastoreDataAccess resource upon running "cdktf plan ". | --- @@ -669,6 +733,50 @@ MetastoreDataAccess.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.metastore_data_access.MetastoreDataAccess; + +MetastoreDataAccess.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MetastoreDataAccess.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MetastoreDataAccess 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 MetastoreDataAccess to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MetastoreDataAccess that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_data_access#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 MetastoreDataAccess to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreDataAccess.python.md b/docs/metastoreDataAccess.python.md index 575d02bff..7d245c8d3 100644 --- a/docs/metastoreDataAccess.python.md +++ b/docs/metastoreDataAccess.python.md @@ -255,6 +255,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.* | @@ -264,7 +265,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_aws_iam_role | *No description.* | | put_azure_managed_identity | *No description.* | | put_azure_service_principal | *No description.* | @@ -353,6 +356,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 @@ -479,6 +500,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 @@ -493,6 +535,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_aws_iam_role` ```python @@ -709,6 +778,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 MetastoreDataAccess resource upon running "cdktf plan ". | --- @@ -778,6 +848,55 @@ metastoreDataAccess.MetastoreDataAccess.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import metastore_data_access + +metastoreDataAccess.MetastoreDataAccess.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MetastoreDataAccess 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 MetastoreDataAccess to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MetastoreDataAccess that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_data_access#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 MetastoreDataAccess to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/metastoreDataAccess.typescript.md b/docs/metastoreDataAccess.typescript.md index 8543a9190..20c6a2d32 100644 --- a/docs/metastoreDataAccess.typescript.md +++ b/docs/metastoreDataAccess.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. | | putAwsIamRole | *No description.* | | putAzureManagedIdentity | *No description.* | | putAzureServicePrincipal | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `putAwsIamRole` ```typescript @@ -406,6 +467,7 @@ public resetReadOnly(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MetastoreDataAccess resource upon running "cdktf plan ". | --- @@ -469,6 +531,50 @@ metastoreDataAccess.MetastoreDataAccess.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { metastoreDataAccess } from '@cdktf/provider-databricks' + +metastoreDataAccess.MetastoreDataAccess.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MetastoreDataAccess 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 MetastoreDataAccess to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MetastoreDataAccess that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_data_access#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 MetastoreDataAccess to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowExperiment.csharp.md b/docs/mlflowExperiment.csharp.md index cd4a34cc5..a741949d6 100644 --- a/docs/mlflowExperiment.csharp.md +++ b/docs/mlflowExperiment.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. | | PutTimeouts | *No description.* | | ResetArtifactLocation | *No description.* | | ResetCreationTime | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutTimeouts` ```csharp @@ -326,6 +387,7 @@ private void ResetLifecycleStage() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MlflowExperiment resource upon running "cdktf plan ". | --- @@ -389,6 +451,50 @@ MlflowExperiment.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MlflowExperiment.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MlflowExperiment 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 MlflowExperiment to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MlflowExperiment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_experiment#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 MlflowExperiment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowExperiment.go.md b/docs/mlflowExperiment.go.md index 735194f46..974609494 100644 --- a/docs/mlflowExperiment.go.md +++ b/docs/mlflowExperiment.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/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" mlflowexperiment.NewMlflowExperiment(scope Construct, id *string, config MlflowExperimentConfig) MlflowExperiment ``` @@ -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. | | PutTimeouts | *No description.* | | ResetArtifactLocation | *No description.* | | ResetCreationTime | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutTimeouts` ```go @@ -326,13 +387,14 @@ func ResetLifecycleStage() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MlflowExperiment resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" mlflowexperiment.MlflowExperiment_IsConstruct(x interface{}) *bool ``` @@ -364,7 +426,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" mlflowexperiment.MlflowExperiment_IsTerraformElement(x interface{}) *bool ``` @@ -378,7 +440,7 @@ mlflowexperiment.MlflowExperiment_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" mlflowexperiment.MlflowExperiment_IsTerraformResource(x interface{}) *bool ``` @@ -389,6 +451,50 @@ mlflowexperiment.MlflowExperiment_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" + +mlflowexperiment.MlflowExperiment_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MlflowExperiment 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 MlflowExperiment to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MlflowExperiment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_experiment#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 MlflowExperiment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -775,7 +881,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" &mlflowexperiment.MlflowExperimentConfig { Connection: interface{}, @@ -793,7 +899,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexper Id: *string, LastUpdateTime: *f64, LifecycleStage: *string, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mlflowExperiment.MlflowExperimentTimeouts, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mlflowExperiment.MlflowExperimentTimeouts, } ``` @@ -1008,7 +1114,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" &mlflowexperiment.MlflowExperimentTimeouts { @@ -1023,7 +1129,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexper #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowexperiment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowexperiment" mlflowexperiment.NewMlflowExperimentTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MlflowExperimentTimeoutsOutputReference ``` diff --git a/docs/mlflowExperiment.java.md b/docs/mlflowExperiment.java.md index 4bb27079c..8667133eb 100644 --- a/docs/mlflowExperiment.java.md +++ b/docs/mlflowExperiment.java.md @@ -209,6 +209,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.* | @@ -218,7 +219,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. | | putTimeouts | *No description.* | | resetArtifactLocation | *No description.* | | resetCreationTime | *No description.* | @@ -294,6 +297,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 @@ -402,6 +421,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 @@ -414,6 +452,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. + +--- + ##### `putTimeouts` ```java @@ -475,6 +538,7 @@ public void resetLifecycleStage() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MlflowExperiment resource upon running "cdktf plan ". | --- @@ -538,6 +602,50 @@ MlflowExperiment.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mlflow_experiment.MlflowExperiment; + +MlflowExperiment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MlflowExperiment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MlflowExperiment 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 MlflowExperiment to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MlflowExperiment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_experiment#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 MlflowExperiment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowExperiment.python.md b/docs/mlflowExperiment.python.md index a2d7c272f..b77159909 100644 --- a/docs/mlflowExperiment.python.md +++ b/docs/mlflowExperiment.python.md @@ -207,6 +207,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.* | @@ -216,7 +217,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_timeouts | *No description.* | | reset_artifact_location | *No description.* | | reset_creation_time | *No description.* | @@ -297,6 +300,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 @@ -423,6 +444,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 @@ -437,6 +479,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_timeouts` ```python @@ -492,6 +561,7 @@ def reset_lifecycle_stage() -> 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 MlflowExperiment resource upon running "cdktf plan ". | --- @@ -561,6 +631,55 @@ mlflowExperiment.MlflowExperiment.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mlflow_experiment + +mlflowExperiment.MlflowExperiment.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MlflowExperiment 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 MlflowExperiment to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MlflowExperiment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_experiment#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 MlflowExperiment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowExperiment.typescript.md b/docs/mlflowExperiment.typescript.md index 55647fa4f..12568eda7 100644 --- a/docs/mlflowExperiment.typescript.md +++ b/docs/mlflowExperiment.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. | | putTimeouts | *No description.* | | resetArtifactLocation | *No description.* | | resetCreationTime | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `putTimeouts` ```typescript @@ -326,6 +387,7 @@ public resetLifecycleStage(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MlflowExperiment resource upon running "cdktf plan ". | --- @@ -389,6 +451,50 @@ mlflowExperiment.MlflowExperiment.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mlflowExperiment } from '@cdktf/provider-databricks' + +mlflowExperiment.MlflowExperiment.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MlflowExperiment 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 MlflowExperiment to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MlflowExperiment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_experiment#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 MlflowExperiment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowModel.csharp.md b/docs/mlflowModel.csharp.md index 880c5170d..0eddd2b86 100644 --- a/docs/mlflowModel.csharp.md +++ b/docs/mlflowModel.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. | | PutTags | *No description.* | | ResetCreationTimestamp | *No description.* | | ResetDescription | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `PutTags` ```csharp @@ -319,6 +380,7 @@ private void ResetUserId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MlflowModel resource upon running "cdktf plan ". | --- @@ -382,6 +444,50 @@ MlflowModel.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MlflowModel.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MlflowModel 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 MlflowModel to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MlflowModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_model#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 MlflowModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowModel.go.md b/docs/mlflowModel.go.md index 8ece6848b..51aebe3f2 100644 --- a/docs/mlflowModel.go.md +++ b/docs/mlflowModel.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/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" mlflowmodel.NewMlflowModel(scope Construct, id *string, config MlflowModelConfig) MlflowModel ``` @@ -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. | | PutTags | *No description.* | | ResetCreationTimestamp | *No description.* | | ResetDescription | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `PutTags` ```go @@ -319,13 +380,14 @@ func ResetUserId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MlflowModel resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" mlflowmodel.MlflowModel_IsConstruct(x interface{}) *bool ``` @@ -357,7 +419,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" mlflowmodel.MlflowModel_IsTerraformElement(x interface{}) *bool ``` @@ -371,7 +433,7 @@ mlflowmodel.MlflowModel_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" mlflowmodel.MlflowModel_IsTerraformResource(x interface{}) *bool ``` @@ -382,6 +444,50 @@ mlflowmodel.MlflowModel_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" + +mlflowmodel.MlflowModel_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MlflowModel 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 MlflowModel to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MlflowModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_model#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 MlflowModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -735,7 +841,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" &mlflowmodel.MlflowModelConfig { Connection: interface{}, @@ -940,7 +1046,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" &mlflowmodel.MlflowModelTags { Key: *string, @@ -988,7 +1094,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" mlflowmodel.NewMlflowModelTagsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) MlflowModelTagsList ``` @@ -1131,7 +1237,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowmodel" mlflowmodel.NewMlflowModelTagsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) MlflowModelTagsOutputReference ``` diff --git a/docs/mlflowModel.java.md b/docs/mlflowModel.java.md index 103835a13..6d6a7c04e 100644 --- a/docs/mlflowModel.java.md +++ b/docs/mlflowModel.java.md @@ -190,6 +190,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.* | @@ -199,7 +200,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. | | putTags | *No description.* | | resetCreationTimestamp | *No description.* | | resetDescription | *No description.* | @@ -274,6 +277,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 @@ -382,6 +401,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 @@ -394,6 +432,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. + +--- + ##### `putTags` ```java @@ -449,6 +512,7 @@ public void resetUserId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MlflowModel resource upon running "cdktf plan ". | --- @@ -512,6 +576,50 @@ MlflowModel.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mlflow_model.MlflowModel; + +MlflowModel.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MlflowModel.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MlflowModel 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 MlflowModel to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MlflowModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_model#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 MlflowModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowModel.python.md b/docs/mlflowModel.python.md index 32ce4beb4..cd7618580 100644 --- a/docs/mlflowModel.python.md +++ b/docs/mlflowModel.python.md @@ -187,6 +187,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.* | @@ -196,7 +197,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_tags | *No description.* | | reset_creation_timestamp | *No description.* | | reset_description | *No description.* | @@ -276,6 +279,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 @@ -402,6 +423,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 @@ -416,6 +458,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_tags` ```python @@ -473,6 +542,7 @@ def reset_user_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 MlflowModel resource upon running "cdktf plan ". | --- @@ -542,6 +612,55 @@ mlflowModel.MlflowModel.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mlflow_model + +mlflowModel.MlflowModel.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MlflowModel 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 MlflowModel to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MlflowModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_model#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 MlflowModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowModel.typescript.md b/docs/mlflowModel.typescript.md index cbfba29c2..9f5a087af 100644 --- a/docs/mlflowModel.typescript.md +++ b/docs/mlflowModel.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. | | putTags | *No description.* | | resetCreationTimestamp | *No description.* | | resetDescription | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `putTags` ```typescript @@ -319,6 +380,7 @@ public resetUserId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MlflowModel resource upon running "cdktf plan ". | --- @@ -382,6 +444,50 @@ mlflowModel.MlflowModel.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mlflowModel } from '@cdktf/provider-databricks' + +mlflowModel.MlflowModel.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MlflowModel 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 MlflowModel to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MlflowModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_model#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 MlflowModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowWebhook.csharp.md b/docs/mlflowWebhook.csharp.md index 0cc24f2e6..c91600d5d 100644 --- a/docs/mlflowWebhook.csharp.md +++ b/docs/mlflowWebhook.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. | | PutHttpUrlSpec | *No description.* | | PutJobSpec | *No description.* | | ResetDescription | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutHttpUrlSpec` ```csharp @@ -332,6 +393,7 @@ private void ResetStatus() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MlflowWebhook resource upon running "cdktf plan ". | --- @@ -395,6 +457,50 @@ MlflowWebhook.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MlflowWebhook.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MlflowWebhook 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 MlflowWebhook to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MlflowWebhook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_webhook#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 MlflowWebhook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowWebhook.go.md b/docs/mlflowWebhook.go.md index b6e5b3adc..95e0faa8e 100644 --- a/docs/mlflowWebhook.go.md +++ b/docs/mlflowWebhook.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/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" mlflowwebhook.NewMlflowWebhook(scope Construct, id *string, config MlflowWebhookConfig) MlflowWebhook ``` @@ -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. | | PutHttpUrlSpec | *No description.* | | PutJobSpec | *No description.* | | ResetDescription | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutHttpUrlSpec` ```go @@ -332,13 +393,14 @@ func ResetStatus() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MlflowWebhook resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" mlflowwebhook.MlflowWebhook_IsConstruct(x interface{}) *bool ``` @@ -370,7 +432,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" mlflowwebhook.MlflowWebhook_IsTerraformElement(x interface{}) *bool ``` @@ -384,7 +446,7 @@ mlflowwebhook.MlflowWebhook_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" mlflowwebhook.MlflowWebhook_IsTerraformResource(x interface{}) *bool ``` @@ -395,6 +457,50 @@ mlflowwebhook.MlflowWebhook_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" + +mlflowwebhook.MlflowWebhook_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MlflowWebhook 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 MlflowWebhook to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MlflowWebhook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_webhook#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 MlflowWebhook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -737,7 +843,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" &mlflowwebhook.MlflowWebhookConfig { Connection: interface{}, @@ -749,9 +855,9 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebho Provisioners: *[]interface{}, Events: *[]*string, Description: *string, - HttpUrlSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mlflowWebhook.MlflowWebhookHttpUrlSpec, + HttpUrlSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mlflowWebhook.MlflowWebhookHttpUrlSpec, Id: *string, - JobSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mlflowWebhook.MlflowWebhookJobSpec, + JobSpec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mlflowWebhook.MlflowWebhookJobSpec, ModelName: *string, Status: *string, } @@ -944,7 +1050,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" &mlflowwebhook.MlflowWebhookHttpUrlSpec { Url: *string, @@ -1018,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/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" &mlflowwebhook.MlflowWebhookJobSpec { AccessToken: *string, @@ -1080,7 +1186,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" mlflowwebhook.NewMlflowWebhookHttpUrlSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MlflowWebhookHttpUrlSpecOutputReference ``` @@ -1438,7 +1544,7 @@ func InternalValue() MlflowWebhookHttpUrlSpec #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mlflowwebhook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mlflowwebhook" mlflowwebhook.NewMlflowWebhookJobSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MlflowWebhookJobSpecOutputReference ``` diff --git a/docs/mlflowWebhook.java.md b/docs/mlflowWebhook.java.md index 8ecdcebf7..7f7524ece 100644 --- a/docs/mlflowWebhook.java.md +++ b/docs/mlflowWebhook.java.md @@ -191,6 +191,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.* | @@ -200,7 +201,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. | | putHttpUrlSpec | *No description.* | | putJobSpec | *No description.* | | resetDescription | *No description.* | @@ -276,6 +279,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 @@ -384,6 +403,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 @@ -396,6 +434,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. + +--- + ##### `putHttpUrlSpec` ```java @@ -463,6 +526,7 @@ public void resetStatus() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MlflowWebhook resource upon running "cdktf plan ". | --- @@ -526,6 +590,50 @@ MlflowWebhook.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mlflow_webhook.MlflowWebhook; + +MlflowWebhook.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MlflowWebhook.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MlflowWebhook 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 MlflowWebhook to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MlflowWebhook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_webhook#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 MlflowWebhook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowWebhook.python.md b/docs/mlflowWebhook.python.md index 6a09b7c14..37515e74e 100644 --- a/docs/mlflowWebhook.python.md +++ b/docs/mlflowWebhook.python.md @@ -189,6 +189,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.* | @@ -198,7 +199,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_http_url_spec | *No description.* | | put_job_spec | *No description.* | | reset_description | *No description.* | @@ -279,6 +282,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 @@ -405,6 +426,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 @@ -419,6 +461,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_http_url_spec` ```python @@ -539,6 +608,7 @@ def reset_status() -> 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 MlflowWebhook resource upon running "cdktf plan ". | --- @@ -608,6 +678,55 @@ mlflowWebhook.MlflowWebhook.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mlflow_webhook + +mlflowWebhook.MlflowWebhook.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MlflowWebhook 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 MlflowWebhook to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MlflowWebhook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_webhook#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 MlflowWebhook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mlflowWebhook.typescript.md b/docs/mlflowWebhook.typescript.md index 76e52c763..f0a7b12fb 100644 --- a/docs/mlflowWebhook.typescript.md +++ b/docs/mlflowWebhook.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. | | putHttpUrlSpec | *No description.* | | putJobSpec | *No description.* | | resetDescription | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `putHttpUrlSpec` ```typescript @@ -332,6 +393,7 @@ public resetStatus(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MlflowWebhook resource upon running "cdktf plan ". | --- @@ -395,6 +457,50 @@ mlflowWebhook.MlflowWebhook.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mlflowWebhook } from '@cdktf/provider-databricks' + +mlflowWebhook.MlflowWebhook.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MlflowWebhook 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 MlflowWebhook to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MlflowWebhook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_webhook#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 MlflowWebhook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/modelServing.csharp.md b/docs/modelServing.csharp.md index 422921fed..d8432ec3b 100644 --- a/docs/modelServing.csharp.md +++ b/docs/modelServing.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. | | PutConfig | *No description.* | | PutTags | *No description.* | | PutTimeouts | *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. + +--- + ##### `PutConfig` ```csharp @@ -324,6 +385,7 @@ private void ResetTimeouts() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ModelServing resource upon running "cdktf plan ". | --- @@ -387,6 +449,50 @@ ModelServing.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +ModelServing.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a ModelServing 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 ModelServing to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing ModelServing that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/model_serving#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 ModelServing to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/modelServing.go.md b/docs/modelServing.go.md index aaeaee700..fd6aaa009 100644 --- a/docs/modelServing.go.md +++ b/docs/modelServing.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/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServing(scope Construct, id *string, config ModelServingConfig) ModelServing ``` @@ -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. | | PutConfig | *No description.* | | PutTags | *No description.* | | PutTimeouts | *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. + +--- + ##### `PutConfig` ```go @@ -324,13 +385,14 @@ func ResetTimeouts() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ModelServing resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.ModelServing_IsConstruct(x interface{}) *bool ``` @@ -362,7 +424,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.ModelServing_IsTerraformElement(x interface{}) *bool ``` @@ -376,7 +438,7 @@ modelserving.ModelServing_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.ModelServing_IsTerraformResource(x interface{}) *bool ``` @@ -387,6 +449,50 @@ modelserving.ModelServing_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" + +modelserving.ModelServing_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a ModelServing 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 ModelServing to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing ModelServing that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/model_serving#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 ModelServing to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -696,7 +802,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingConfig { Connection: interface{}, @@ -706,11 +812,11 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelservin Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle, Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider, Provisioners: *[]interface{}, - Config: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.modelServing.ModelServingConfigA, + Config: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.modelServing.ModelServingConfigA, Name: *string, Id: *string, Tags: interface{}, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.modelServing.ModelServingTimeouts, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.modelServing.ModelServingTimeouts, } ``` @@ -877,11 +983,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingConfigA { ServedModels: interface{}, - TrafficConfig: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.modelServing.ModelServingConfigTrafficConfig, + TrafficConfig: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.modelServing.ModelServingConfigTrafficConfig, } ``` @@ -927,7 +1033,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingConfigServedModels { ModelName: *string, @@ -1057,7 +1163,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingConfigTrafficConfig { Routes: interface{}, @@ -1091,7 +1197,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingConfigTrafficConfigRoutes { ServedModelName: *string, @@ -1137,7 +1243,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingTags { Key: *string, @@ -1183,7 +1289,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" &modelserving.ModelServingTimeouts { Create: *string, @@ -1231,7 +1337,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingConfigAOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ModelServingConfigAOutputReference ``` @@ -1557,7 +1663,7 @@ func InternalValue() ModelServingConfigA #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingConfigServedModelsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ModelServingConfigServedModelsList ``` @@ -1700,7 +1806,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingConfigServedModelsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ModelServingConfigServedModelsOutputReference ``` @@ -2178,7 +2284,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingConfigTrafficConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ModelServingConfigTrafficConfigOutputReference ``` @@ -2469,7 +2575,7 @@ func InternalValue() ModelServingConfigTrafficConfig #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingConfigTrafficConfigRoutesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ModelServingConfigTrafficConfigRoutesList ``` @@ -2612,7 +2718,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingConfigTrafficConfigRoutesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ModelServingConfigTrafficConfigRoutesOutputReference ``` @@ -2923,7 +3029,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingTagsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ModelServingTagsList ``` @@ -3066,7 +3172,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingTagsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ModelServingTagsOutputReference ``` @@ -3384,7 +3490,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/modelserving" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/modelserving" modelserving.NewModelServingTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ModelServingTimeoutsOutputReference ``` diff --git a/docs/modelServing.java.md b/docs/modelServing.java.md index 375748436..93b33c72e 100644 --- a/docs/modelServing.java.md +++ b/docs/modelServing.java.md @@ -174,6 +174,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.* | @@ -183,7 +184,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. | | putConfig | *No description.* | | putTags | *No description.* | | putTimeouts | *No description.* | @@ -257,6 +260,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 @@ -365,6 +384,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 @@ -377,6 +415,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. + +--- + ##### `putConfig` ```java @@ -438,6 +501,7 @@ public void resetTimeouts() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ModelServing resource upon running "cdktf plan ". | --- @@ -501,6 +565,50 @@ ModelServing.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.model_serving.ModelServing; + +ModelServing.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ModelServing.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a ModelServing 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 ModelServing to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing ModelServing that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/model_serving#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 ModelServing to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/modelServing.python.md b/docs/modelServing.python.md index 56a70d512..a73b970ec 100644 --- a/docs/modelServing.python.md +++ b/docs/modelServing.python.md @@ -171,6 +171,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.* | @@ -180,7 +181,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_config | *No description.* | | put_tags | *No description.* | | put_timeouts | *No description.* | @@ -259,6 +262,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 @@ -385,6 +406,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 @@ -399,6 +441,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_config` ```python @@ -492,6 +561,7 @@ def reset_timeouts() -> 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 ModelServing resource upon running "cdktf plan ". | --- @@ -561,6 +631,55 @@ modelServing.ModelServing.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import model_serving + +modelServing.ModelServing.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a ModelServing 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 ModelServing to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing ModelServing that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/model_serving#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 ModelServing to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/modelServing.typescript.md b/docs/modelServing.typescript.md index 4c513ee22..f08a33837 100644 --- a/docs/modelServing.typescript.md +++ b/docs/modelServing.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. | | putConfig | *No description.* | | putTags | *No description.* | | putTimeouts | *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. + +--- + ##### `putConfig` ```typescript @@ -324,6 +385,7 @@ public resetTimeouts(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ModelServing resource upon running "cdktf plan ". | --- @@ -387,6 +449,50 @@ modelServing.ModelServing.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { modelServing } from '@cdktf/provider-databricks' + +modelServing.ModelServing.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a ModelServing 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 ModelServing to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing ModelServing that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/model_serving#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 ModelServing to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mount.csharp.md b/docs/mount.csharp.md index bf2ba5e21..5c7f12611 100644 --- a/docs/mount.csharp.md +++ b/docs/mount.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. | | PutAbfs | *No description.* | | PutAdl | *No description.* | | PutGs | *No description.* | @@ -156,6 +159,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 @@ -264,6 +283,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 @@ -276,6 +313,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. + +--- + ##### `PutAbfs` ```csharp @@ -433,6 +494,7 @@ private void ResetWasb() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Mount resource upon running "cdktf plan ". | --- @@ -496,6 +558,50 @@ Mount.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Mount.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Mount 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 Mount to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Mount that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Mount to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mount.go.md b/docs/mount.go.md index 8ae7827b3..c83347d07 100644 --- a/docs/mount.go.md +++ b/docs/mount.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/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMount(scope Construct, id *string, config MountConfig) Mount ``` @@ -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. | | PutAbfs | *No description.* | | PutAdl | *No description.* | | PutGs | *No description.* | @@ -156,6 +159,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 @@ -264,6 +283,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 @@ -276,6 +313,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. + +--- + ##### `PutAbfs` ```go @@ -433,13 +494,14 @@ func ResetWasb() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Mount resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.Mount_IsConstruct(x interface{}) *bool ``` @@ -471,7 +533,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.Mount_IsTerraformElement(x interface{}) *bool ``` @@ -485,7 +547,7 @@ mount.Mount_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.Mount_IsTerraformResource(x interface{}) *bool ``` @@ -496,6 +558,50 @@ mount.Mount_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" + +mount.Mount_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Mount 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 Mount to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Mount that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Mount to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -981,7 +1087,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountAbfs { ClientId: *string, @@ -1111,7 +1217,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountAdl { ClientId: *string, @@ -1227,7 +1333,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountConfig { Connection: interface{}, @@ -1237,19 +1343,19 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle, Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider, Provisioners: *[]interface{}, - Abfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mount.MountAbfs, - Adl: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mount.MountAdl, + Abfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mount.MountAbfs, + Adl: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mount.MountAdl, ClusterId: *string, EncryptionType: *string, ExtraConfigs: *map[string]*string, - Gs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mount.MountGs, + Gs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mount.MountGs, Id: *string, Name: *string, ResourceId: *string, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mount.MountS3, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mount.MountTimeouts, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mount.MountS3, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mount.MountTimeouts, Uri: *string, - Wasb: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mount.MountWasb, + Wasb: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mount.MountWasb, } ``` @@ -1526,7 +1632,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountGs { BucketName: *string, @@ -1572,7 +1678,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountS3 { BucketName: *string, @@ -1618,7 +1724,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountTimeouts { Default: *string, @@ -1650,7 +1756,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" &mount.MountWasb { AuthType: *string, @@ -1754,7 +1860,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMountAbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MountAbfsOutputReference ``` @@ -2207,7 +2313,7 @@ func InternalValue() MountAbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMountAdlOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MountAdlOutputReference ``` @@ -2638,7 +2744,7 @@ func InternalValue() MountAdl #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMountGsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MountGsOutputReference ``` @@ -2938,7 +3044,7 @@ func InternalValue() MountGs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMountS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MountS3OutputReference ``` @@ -3238,7 +3344,7 @@ func InternalValue() MountS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMountTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MountTimeoutsOutputReference ``` @@ -3516,7 +3622,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mount" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mount" mount.NewMountWasbOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MountWasbOutputReference ``` diff --git a/docs/mount.java.md b/docs/mount.java.md index ba5a6ede9..6c1ec6dfe 100644 --- a/docs/mount.java.md +++ b/docs/mount.java.md @@ -259,6 +259,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.* | @@ -268,7 +269,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. | | putAbfs | *No description.* | | putAdl | *No description.* | | putGs | *No description.* | @@ -355,6 +358,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 @@ -463,6 +482,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 @@ -475,6 +513,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. + +--- + ##### `putAbfs` ```java @@ -632,6 +695,7 @@ public void resetWasb() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Mount resource upon running "cdktf plan ". | --- @@ -695,6 +759,50 @@ Mount.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mount.Mount; + +Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Mount.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Mount 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 Mount to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Mount that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Mount to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mount.python.md b/docs/mount.python.md index bab61dddd..2533bf773 100644 --- a/docs/mount.python.md +++ b/docs/mount.python.md @@ -257,6 +257,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.* | @@ -266,7 +267,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_abfs | *No description.* | | put_adl | *No description.* | | put_gs | *No description.* | @@ -358,6 +361,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 @@ -484,6 +505,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 @@ -498,6 +540,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_abfs` ```python @@ -859,6 +928,7 @@ def reset_wasb() -> 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 Mount resource upon running "cdktf plan ". | --- @@ -928,6 +998,55 @@ mount.Mount.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mount + +mount.Mount.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Mount 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 Mount to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Mount that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Mount to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mount.typescript.md b/docs/mount.typescript.md index e5f34a7b2..b9cb0bdf0 100644 --- a/docs/mount.typescript.md +++ b/docs/mount.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. | | putAbfs | *No description.* | | putAdl | *No description.* | | putGs | *No description.* | @@ -156,6 +159,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 @@ -264,6 +283,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 @@ -276,6 +313,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. + +--- + ##### `putAbfs` ```typescript @@ -433,6 +494,7 @@ public resetWasb(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Mount resource upon running "cdktf plan ". | --- @@ -496,6 +558,50 @@ mount.Mount.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mount } from '@cdktf/provider-databricks' + +mount.Mount.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Mount 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 Mount to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Mount that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 Mount to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCredentials.csharp.md b/docs/mwsCredentials.csharp.md index b2a1dfa68..565e77598 100644 --- a/docs/mwsCredentials.csharp.md +++ b/docs/mwsCredentials.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 MwsCredentials resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ MwsCredentials.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsCredentials.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsCredentials 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 MwsCredentials to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_credentials#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 MwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCredentials.go.md b/docs/mwsCredentials.go.md index b62280acc..a7b501f3e 100644 --- a/docs/mwsCredentials.go.md +++ b/docs/mwsCredentials.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/mwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscredentials" mwscredentials.NewMwsCredentials(scope Construct, id *string, config MwsCredentialsConfig) MwsCredentials ``` @@ -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 MwsCredentials resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscredentials" mwscredentials.MwsCredentials_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscredentials" mwscredentials.MwsCredentials_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ mwscredentials.MwsCredentials_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscredentials" mwscredentials.MwsCredentials_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ mwscredentials.MwsCredentials_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscredentials" + +mwscredentials.MwsCredentials_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsCredentials 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 MwsCredentials to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_credentials#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 MwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -643,7 +749,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscredentials" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscredentials" &mwscredentials.MwsCredentialsConfig { Connection: interface{}, diff --git a/docs/mwsCredentials.java.md b/docs/mwsCredentials.java.md index 0e13cce6a..310cf3d42 100644 --- a/docs/mwsCredentials.java.md +++ b/docs/mwsCredentials.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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.* | --- @@ -235,6 +238,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 @@ -343,6 +362,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 @@ -355,6 +393,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 @@ -368,6 +431,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsCredentials resource upon running "cdktf plan ". | --- @@ -431,6 +495,50 @@ MwsCredentials.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_credentials.MwsCredentials; + +MwsCredentials.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsCredentials.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsCredentials 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 MwsCredentials to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_credentials#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 MwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCredentials.python.md b/docs/mwsCredentials.python.md index 4f568edf2..3a7e4ad0e 100644 --- a/docs/mwsCredentials.python.md +++ b/docs/mwsCredentials.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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.* | --- @@ -238,6 +241,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 @@ -364,6 +385,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 @@ -378,6 +420,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 @@ -391,6 +460,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 MwsCredentials resource upon running "cdktf plan ". | --- @@ -460,6 +530,55 @@ mwsCredentials.MwsCredentials.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_credentials + +mwsCredentials.MwsCredentials.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsCredentials 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 MwsCredentials to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_credentials#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 MwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCredentials.typescript.md b/docs/mwsCredentials.typescript.md index 934def0d3..dddf5b26b 100644 --- a/docs/mwsCredentials.typescript.md +++ b/docs/mwsCredentials.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 MwsCredentials resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ mwsCredentials.MwsCredentials.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsCredentials } from '@cdktf/provider-databricks' + +mwsCredentials.MwsCredentials.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsCredentials 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 MwsCredentials to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsCredentials that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_credentials#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 MwsCredentials to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCustomerManagedKeys.csharp.md b/docs/mwsCustomerManagedKeys.csharp.md index 7eb9fbaf5..e0fc05a5b 100644 --- a/docs/mwsCustomerManagedKeys.csharp.md +++ b/docs/mwsCustomerManagedKeys.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. | | PutAwsKeyInfo | *No description.* | | PutGcpKeyInfo | *No description.* | | ResetAwsKeyInfo | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `PutAwsKeyInfo` ```csharp @@ -325,6 +386,7 @@ private void ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsCustomerManagedKeys resource upon running "cdktf plan ". | --- @@ -388,6 +450,50 @@ MwsCustomerManagedKeys.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsCustomerManagedKeys.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsCustomerManagedKeys 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 MwsCustomerManagedKeys to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsCustomerManagedKeys that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_customer_managed_keys#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 MwsCustomerManagedKeys to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCustomerManagedKeys.go.md b/docs/mwsCustomerManagedKeys.go.md index 3cf3268f7..ba837b391 100644 --- a/docs/mwsCustomerManagedKeys.go.md +++ b/docs/mwsCustomerManagedKeys.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/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" mwscustomermanagedkeys.NewMwsCustomerManagedKeys(scope Construct, id *string, config MwsCustomerManagedKeysConfig) MwsCustomerManagedKeys ``` @@ -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. | | PutAwsKeyInfo | *No description.* | | PutGcpKeyInfo | *No description.* | | ResetAwsKeyInfo | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `PutAwsKeyInfo` ```go @@ -325,13 +386,14 @@ func ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsCustomerManagedKeys resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" mwscustomermanagedkeys.MwsCustomerManagedKeys_IsConstruct(x interface{}) *bool ``` @@ -363,7 +425,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" mwscustomermanagedkeys.MwsCustomerManagedKeys_IsTerraformElement(x interface{}) *bool ``` @@ -377,7 +439,7 @@ mwscustomermanagedkeys.MwsCustomerManagedKeys_IsTerraformElement(x interface{}) ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" mwscustomermanagedkeys.MwsCustomerManagedKeys_IsTerraformResource(x interface{}) *bool ``` @@ -388,6 +450,50 @@ mwscustomermanagedkeys.MwsCustomerManagedKeys_IsTerraformResource(x interface{}) --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" + +mwscustomermanagedkeys.MwsCustomerManagedKeys_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsCustomerManagedKeys 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 MwsCustomerManagedKeys to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsCustomerManagedKeys that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_customer_managed_keys#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 MwsCustomerManagedKeys to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -730,7 +836,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" &mwscustomermanagedkeys.MwsCustomerManagedKeysAwsKeyInfo { KeyAlias: *string, @@ -790,7 +896,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" &mwscustomermanagedkeys.MwsCustomerManagedKeysConfig { Connection: interface{}, @@ -802,10 +908,10 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomer Provisioners: *[]interface{}, AccountId: *string, UseCases: *[]*string, - AwsKeyInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsCustomerManagedKeys.MwsCustomerManagedKeysAwsKeyInfo, + AwsKeyInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsCustomerManagedKeys.MwsCustomerManagedKeysAwsKeyInfo, CreationTime: *f64, CustomerManagedKeyId: *string, - GcpKeyInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsCustomerManagedKeys.MwsCustomerManagedKeysGcpKeyInfo, + GcpKeyInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsCustomerManagedKeys.MwsCustomerManagedKeysGcpKeyInfo, Id: *string, } ``` @@ -997,7 +1103,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/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" &mwscustomermanagedkeys.MwsCustomerManagedKeysGcpKeyInfo { KmsKeyId: *string, @@ -1031,7 +1137,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" mwscustomermanagedkeys.NewMwsCustomerManagedKeysAwsKeyInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsCustomerManagedKeysAwsKeyInfoOutputReference ``` @@ -1353,7 +1459,7 @@ func InternalValue() MwsCustomerManagedKeysAwsKeyInfo #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwscustomermanagedkeys" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwscustomermanagedkeys" mwscustomermanagedkeys.NewMwsCustomerManagedKeysGcpKeyInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsCustomerManagedKeysGcpKeyInfoOutputReference ``` diff --git a/docs/mwsCustomerManagedKeys.java.md b/docs/mwsCustomerManagedKeys.java.md index 431361613..17452f6a6 100644 --- a/docs/mwsCustomerManagedKeys.java.md +++ b/docs/mwsCustomerManagedKeys.java.md @@ -191,6 +191,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.* | @@ -200,7 +201,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. | | putAwsKeyInfo | *No description.* | | putGcpKeyInfo | *No description.* | | resetAwsKeyInfo | *No description.* | @@ -275,6 +278,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 @@ -383,6 +402,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 @@ -395,6 +433,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. + +--- + ##### `putAwsKeyInfo` ```java @@ -456,6 +519,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsCustomerManagedKeys resource upon running "cdktf plan ". | --- @@ -519,6 +583,50 @@ MwsCustomerManagedKeys.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_customer_managed_keys.MwsCustomerManagedKeys; + +MwsCustomerManagedKeys.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsCustomerManagedKeys.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsCustomerManagedKeys 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 MwsCustomerManagedKeys to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsCustomerManagedKeys that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_customer_managed_keys#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 MwsCustomerManagedKeys to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCustomerManagedKeys.python.md b/docs/mwsCustomerManagedKeys.python.md index 4ba282c83..a2b8a9926 100644 --- a/docs/mwsCustomerManagedKeys.python.md +++ b/docs/mwsCustomerManagedKeys.python.md @@ -189,6 +189,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.* | @@ -198,7 +199,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_aws_key_info | *No description.* | | put_gcp_key_info | *No description.* | | reset_aws_key_info | *No description.* | @@ -278,6 +281,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 @@ -404,6 +425,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 @@ -418,6 +460,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_aws_key_info` ```python @@ -505,6 +574,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 MwsCustomerManagedKeys resource upon running "cdktf plan ". | --- @@ -574,6 +644,55 @@ mwsCustomerManagedKeys.MwsCustomerManagedKeys.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_customer_managed_keys + +mwsCustomerManagedKeys.MwsCustomerManagedKeys.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsCustomerManagedKeys 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 MwsCustomerManagedKeys to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsCustomerManagedKeys that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_customer_managed_keys#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 MwsCustomerManagedKeys to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsCustomerManagedKeys.typescript.md b/docs/mwsCustomerManagedKeys.typescript.md index 2d231ae30..cd630575a 100644 --- a/docs/mwsCustomerManagedKeys.typescript.md +++ b/docs/mwsCustomerManagedKeys.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. | | putAwsKeyInfo | *No description.* | | putGcpKeyInfo | *No description.* | | resetAwsKeyInfo | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `putAwsKeyInfo` ```typescript @@ -325,6 +386,7 @@ public resetId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsCustomerManagedKeys resource upon running "cdktf plan ". | --- @@ -388,6 +450,50 @@ mwsCustomerManagedKeys.MwsCustomerManagedKeys.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsCustomerManagedKeys } from '@cdktf/provider-databricks' + +mwsCustomerManagedKeys.MwsCustomerManagedKeys.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsCustomerManagedKeys 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 MwsCustomerManagedKeys to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsCustomerManagedKeys that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_customer_managed_keys#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 MwsCustomerManagedKeys to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsLogDelivery.csharp.md b/docs/mwsLogDelivery.csharp.md index cc1e3f576..8b3a47ae7 100644 --- a/docs/mwsLogDelivery.csharp.md +++ b/docs/mwsLogDelivery.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. | | ResetConfigId | *No description.* | | ResetConfigName | *No description.* | | ResetDeliveryPathPrefix | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `ResetConfigId` ```csharp @@ -313,6 +374,7 @@ private void ResetWorkspaceIdsFilter() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsLogDelivery resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ MwsLogDelivery.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsLogDelivery.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsLogDelivery 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 MwsLogDelivery to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsLogDelivery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_log_delivery#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 MwsLogDelivery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsLogDelivery.go.md b/docs/mwsLogDelivery.go.md index 05fc9f881..2b6257c82 100644 --- a/docs/mwsLogDelivery.go.md +++ b/docs/mwsLogDelivery.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/mwslogdelivery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwslogdelivery" mwslogdelivery.NewMwsLogDelivery(scope Construct, id *string, config MwsLogDeliveryConfig) MwsLogDelivery ``` @@ -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. | | ResetConfigId | *No description.* | | ResetConfigName | *No description.* | | ResetDeliveryPathPrefix | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `ResetConfigId` ```go @@ -313,13 +374,14 @@ func ResetWorkspaceIdsFilter() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsLogDelivery resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwslogdelivery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwslogdelivery" mwslogdelivery.MwsLogDelivery_IsConstruct(x interface{}) *bool ``` @@ -351,7 +413,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwslogdelivery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwslogdelivery" mwslogdelivery.MwsLogDelivery_IsTerraformElement(x interface{}) *bool ``` @@ -365,7 +427,7 @@ mwslogdelivery.MwsLogDelivery_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwslogdelivery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwslogdelivery" mwslogdelivery.MwsLogDelivery_IsTerraformResource(x interface{}) *bool ``` @@ -376,6 +438,50 @@ mwslogdelivery.MwsLogDelivery_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwslogdelivery" + +mwslogdelivery.MwsLogDelivery_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsLogDelivery 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 MwsLogDelivery to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsLogDelivery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_log_delivery#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 MwsLogDelivery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -828,7 +934,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwslogdelivery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwslogdelivery" &mwslogdelivery.MwsLogDeliveryConfig { Connection: interface{}, diff --git a/docs/mwsLogDelivery.java.md b/docs/mwsLogDelivery.java.md index ee03c598f..bf95d3275 100644 --- a/docs/mwsLogDelivery.java.md +++ b/docs/mwsLogDelivery.java.md @@ -237,6 +237,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.* | @@ -246,7 +247,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. | | resetConfigId | *No description.* | | resetConfigName | *No description.* | | resetDeliveryPathPrefix | *No description.* | @@ -321,6 +324,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 @@ -429,6 +448,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 @@ -441,6 +479,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. + +--- + ##### `resetConfigId` ```java @@ -490,6 +553,7 @@ public void resetWorkspaceIdsFilter() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsLogDelivery resource upon running "cdktf plan ". | --- @@ -553,6 +617,50 @@ MwsLogDelivery.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_log_delivery.MwsLogDelivery; + +MwsLogDelivery.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsLogDelivery.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsLogDelivery 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 MwsLogDelivery to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsLogDelivery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_log_delivery#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 MwsLogDelivery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsLogDelivery.python.md b/docs/mwsLogDelivery.python.md index 735c9b2e1..dd09d228e 100644 --- a/docs/mwsLogDelivery.python.md +++ b/docs/mwsLogDelivery.python.md @@ -235,6 +235,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.* | @@ -244,7 +245,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_config_id | *No description.* | | reset_config_name | *No description.* | | reset_delivery_path_prefix | *No description.* | @@ -324,6 +327,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 @@ -450,6 +471,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 @@ -464,6 +506,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_config_id` ```python @@ -513,6 +582,7 @@ def reset_workspace_ids_filter() -> 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 MwsLogDelivery resource upon running "cdktf plan ". | --- @@ -582,6 +652,55 @@ mwsLogDelivery.MwsLogDelivery.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_log_delivery + +mwsLogDelivery.MwsLogDelivery.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsLogDelivery 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 MwsLogDelivery to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsLogDelivery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_log_delivery#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 MwsLogDelivery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsLogDelivery.typescript.md b/docs/mwsLogDelivery.typescript.md index efa7bf5a6..acc280b84 100644 --- a/docs/mwsLogDelivery.typescript.md +++ b/docs/mwsLogDelivery.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. | | resetConfigId | *No description.* | | resetConfigName | *No description.* | | resetDeliveryPathPrefix | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `resetConfigId` ```typescript @@ -313,6 +374,7 @@ public resetWorkspaceIdsFilter(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsLogDelivery resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ mwsLogDelivery.MwsLogDelivery.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsLogDelivery } from '@cdktf/provider-databricks' + +mwsLogDelivery.MwsLogDelivery.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsLogDelivery 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 MwsLogDelivery to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsLogDelivery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_log_delivery#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 MwsLogDelivery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsNetworks.csharp.md b/docs/mwsNetworks.csharp.md index 452fb01fe..a0f565d52 100644 --- a/docs/mwsNetworks.csharp.md +++ b/docs/mwsNetworks.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. | | PutErrorMessages | *No description.* | | PutGcpNetworkInfo | *No description.* | | PutVpcEndpoints | *No description.* | @@ -151,6 +154,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 @@ -259,6 +278,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 @@ -271,6 +308,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. + +--- + ##### `PutErrorMessages` ```csharp @@ -380,6 +441,7 @@ private void ResetWorkspaceId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsNetworks resource upon running "cdktf plan ". | --- @@ -443,6 +505,50 @@ MwsNetworks.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsNetworks.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsNetworks 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 MwsNetworks to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsNetworks that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_networks#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 MwsNetworks to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsNetworks.go.md b/docs/mwsNetworks.go.md index 6ec8483da..0474f96e1 100644 --- a/docs/mwsNetworks.go.md +++ b/docs/mwsNetworks.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/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.NewMwsNetworks(scope Construct, id *string, config MwsNetworksConfig) MwsNetworks ``` @@ -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. | | PutErrorMessages | *No description.* | | PutGcpNetworkInfo | *No description.* | | PutVpcEndpoints | *No description.* | @@ -151,6 +154,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 @@ -259,6 +278,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 @@ -271,6 +308,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. + +--- + ##### `PutErrorMessages` ```go @@ -380,13 +441,14 @@ func ResetWorkspaceId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsNetworks resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.MwsNetworks_IsConstruct(x interface{}) *bool ``` @@ -418,7 +480,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.MwsNetworks_IsTerraformElement(x interface{}) *bool ``` @@ -432,7 +494,7 @@ mwsnetworks.MwsNetworks_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.MwsNetworks_IsTerraformResource(x interface{}) *bool ``` @@ -443,6 +505,50 @@ mwsnetworks.MwsNetworks_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" + +mwsnetworks.MwsNetworks_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsNetworks 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 MwsNetworks to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsNetworks that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_networks#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 MwsNetworks to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -917,7 +1023,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" &mwsnetworks.MwsNetworksConfig { Connection: interface{}, @@ -931,12 +1037,12 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks NetworkName: *string, CreationTime: *f64, ErrorMessages: interface{}, - GcpNetworkInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsNetworks.MwsNetworksGcpNetworkInfo, + GcpNetworkInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsNetworks.MwsNetworksGcpNetworkInfo, Id: *string, NetworkId: *string, SecurityGroupIds: *[]*string, SubnetIds: *[]*string, - VpcEndpoints: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsNetworks.MwsNetworksVpcEndpoints, + VpcEndpoints: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsNetworks.MwsNetworksVpcEndpoints, VpcId: *string, VpcStatus: *string, WorkspaceId: *f64, @@ -1210,7 +1316,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" &mwsnetworks.MwsNetworksErrorMessages { ErrorMessage: *string, @@ -1256,7 +1362,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" &mwsnetworks.MwsNetworksGcpNetworkInfo { NetworkProjectId: *string, @@ -1358,7 +1464,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" &mwsnetworks.MwsNetworksVpcEndpoints { DataplaneRelay: *[]*string, @@ -1406,7 +1512,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.NewMwsNetworksErrorMessagesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) MwsNetworksErrorMessagesList ``` @@ -1549,7 +1655,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.NewMwsNetworksErrorMessagesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) MwsNetworksErrorMessagesOutputReference ``` @@ -1874,7 +1980,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.NewMwsNetworksGcpNetworkInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsNetworksGcpNetworkInfoOutputReference ``` @@ -2255,7 +2361,7 @@ func InternalValue() MwsNetworksGcpNetworkInfo #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsnetworks" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsnetworks" mwsnetworks.NewMwsNetworksVpcEndpointsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsNetworksVpcEndpointsOutputReference ``` diff --git a/docs/mwsNetworks.java.md b/docs/mwsNetworks.java.md index 4e7113b02..db060c154 100644 --- a/docs/mwsNetworks.java.md +++ b/docs/mwsNetworks.java.md @@ -254,6 +254,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.* | @@ -263,7 +264,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. | | putErrorMessages | *No description.* | | putGcpNetworkInfo | *No description.* | | putVpcEndpoints | *No description.* | @@ -345,6 +348,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 @@ -453,6 +472,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 @@ -465,6 +503,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. + +--- + ##### `putErrorMessages` ```java @@ -574,6 +637,7 @@ public void resetWorkspaceId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsNetworks resource upon running "cdktf plan ". | --- @@ -637,6 +701,50 @@ MwsNetworks.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_networks.MwsNetworks; + +MwsNetworks.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsNetworks.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsNetworks 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 MwsNetworks to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsNetworks that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_networks#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 MwsNetworks to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsNetworks.python.md b/docs/mwsNetworks.python.md index 24ae1a76f..7f42d976e 100644 --- a/docs/mwsNetworks.python.md +++ b/docs/mwsNetworks.python.md @@ -251,6 +251,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.* | @@ -260,7 +261,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_error_messages | *No description.* | | put_gcp_network_info | *No description.* | | put_vpc_endpoints | *No description.* | @@ -347,6 +350,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 @@ -473,6 +494,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 @@ -487,6 +529,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_error_messages` ```python @@ -660,6 +729,7 @@ def reset_workspace_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 MwsNetworks resource upon running "cdktf plan ". | --- @@ -729,6 +799,55 @@ mwsNetworks.MwsNetworks.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_networks + +mwsNetworks.MwsNetworks.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsNetworks 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 MwsNetworks to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsNetworks that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_networks#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 MwsNetworks to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsNetworks.typescript.md b/docs/mwsNetworks.typescript.md index 2287821a1..3a9b65c7d 100644 --- a/docs/mwsNetworks.typescript.md +++ b/docs/mwsNetworks.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. | | putErrorMessages | *No description.* | | putGcpNetworkInfo | *No description.* | | putVpcEndpoints | *No description.* | @@ -151,6 +154,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 @@ -259,6 +278,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 @@ -271,6 +308,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. + +--- + ##### `putErrorMessages` ```typescript @@ -380,6 +441,7 @@ public resetWorkspaceId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsNetworks resource upon running "cdktf plan ". | --- @@ -443,6 +505,50 @@ mwsNetworks.MwsNetworks.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsNetworks } from '@cdktf/provider-databricks' + +mwsNetworks.MwsNetworks.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsNetworks 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 MwsNetworks to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsNetworks that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_networks#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 MwsNetworks to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPermissionAssignment.csharp.md b/docs/mwsPermissionAssignment.csharp.md index 093eec21f..ef9494559 100644 --- a/docs/mwsPermissionAssignment.csharp.md +++ b/docs/mwsPermissionAssignment.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 MwsPermissionAssignment resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ MwsPermissionAssignment.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsPermissionAssignment.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsPermissionAssignment 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 MwsPermissionAssignment to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsPermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_permission_assignment#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 MwsPermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPermissionAssignment.go.md b/docs/mwsPermissionAssignment.go.md index fc169c593..1a107e6b0 100644 --- a/docs/mwsPermissionAssignment.go.md +++ b/docs/mwsPermissionAssignment.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/mwspermissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwspermissionassignment" mwspermissionassignment.NewMwsPermissionAssignment(scope Construct, id *string, config MwsPermissionAssignmentConfig) MwsPermissionAssignment ``` @@ -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 MwsPermissionAssignment resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwspermissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwspermissionassignment" mwspermissionassignment.MwsPermissionAssignment_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwspermissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwspermissionassignment" mwspermissionassignment.MwsPermissionAssignment_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ mwspermissionassignment.MwsPermissionAssignment_IsTerraformElement(x interface{} ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwspermissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwspermissionassignment" mwspermissionassignment.MwsPermissionAssignment_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ mwspermissionassignment.MwsPermissionAssignment_IsTerraformResource(x interface{ --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwspermissionassignment" + +mwspermissionassignment.MwsPermissionAssignment_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsPermissionAssignment 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 MwsPermissionAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsPermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_permission_assignment#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 MwsPermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -610,7 +716,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwspermissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwspermissionassignment" &mwspermissionassignment.MwsPermissionAssignmentConfig { Connection: interface{}, diff --git a/docs/mwsPermissionAssignment.java.md b/docs/mwsPermissionAssignment.java.md index 286f855f9..44997eca4 100644 --- a/docs/mwsPermissionAssignment.java.md +++ b/docs/mwsPermissionAssignment.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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.* | --- @@ -235,6 +238,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 @@ -343,6 +362,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 @@ -355,6 +393,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 @@ -368,6 +431,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsPermissionAssignment resource upon running "cdktf plan ". | --- @@ -431,6 +495,50 @@ MwsPermissionAssignment.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_permission_assignment.MwsPermissionAssignment; + +MwsPermissionAssignment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsPermissionAssignment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsPermissionAssignment 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 MwsPermissionAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsPermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_permission_assignment#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 MwsPermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPermissionAssignment.python.md b/docs/mwsPermissionAssignment.python.md index aa1339321..56f981e8e 100644 --- a/docs/mwsPermissionAssignment.python.md +++ b/docs/mwsPermissionAssignment.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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.* | --- @@ -238,6 +241,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 @@ -364,6 +385,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 @@ -378,6 +420,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 @@ -391,6 +460,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 MwsPermissionAssignment resource upon running "cdktf plan ". | --- @@ -460,6 +530,55 @@ mwsPermissionAssignment.MwsPermissionAssignment.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_permission_assignment + +mwsPermissionAssignment.MwsPermissionAssignment.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsPermissionAssignment 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 MwsPermissionAssignment to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsPermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_permission_assignment#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 MwsPermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPermissionAssignment.typescript.md b/docs/mwsPermissionAssignment.typescript.md index 65f33292b..16829e42b 100644 --- a/docs/mwsPermissionAssignment.typescript.md +++ b/docs/mwsPermissionAssignment.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 MwsPermissionAssignment resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ mwsPermissionAssignment.MwsPermissionAssignment.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsPermissionAssignment } from '@cdktf/provider-databricks' + +mwsPermissionAssignment.MwsPermissionAssignment.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsPermissionAssignment 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 MwsPermissionAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsPermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_permission_assignment#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 MwsPermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPrivateAccessSettings.csharp.md b/docs/mwsPrivateAccessSettings.csharp.md index 2501bbe2f..06d344c82 100644 --- a/docs/mwsPrivateAccessSettings.csharp.md +++ b/docs/mwsPrivateAccessSettings.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. | | ResetAccountId | *No description.* | | ResetAllowedVpcEndpointIds | *No description.* | | ResetId | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `ResetAccountId` ```csharp @@ -313,6 +374,7 @@ private void ResetStatus() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsPrivateAccessSettings resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ MwsPrivateAccessSettings.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsPrivateAccessSettings.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsPrivateAccessSettings 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 MwsPrivateAccessSettings to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsPrivateAccessSettings that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_private_access_settings#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 MwsPrivateAccessSettings to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPrivateAccessSettings.go.md b/docs/mwsPrivateAccessSettings.go.md index d5c4239a4..c3ae7e764 100644 --- a/docs/mwsPrivateAccessSettings.go.md +++ b/docs/mwsPrivateAccessSettings.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/mwsprivateaccesssettings" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsprivateaccesssettings" mwsprivateaccesssettings.NewMwsPrivateAccessSettings(scope Construct, id *string, config MwsPrivateAccessSettingsConfig) MwsPrivateAccessSettings ``` @@ -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. | | ResetAccountId | *No description.* | | ResetAllowedVpcEndpointIds | *No description.* | | ResetId | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `ResetAccountId` ```go @@ -313,13 +374,14 @@ func ResetStatus() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsPrivateAccessSettings resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsprivateaccesssettings" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsprivateaccesssettings" mwsprivateaccesssettings.MwsPrivateAccessSettings_IsConstruct(x interface{}) *bool ``` @@ -351,7 +413,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsprivateaccesssettings" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsprivateaccesssettings" mwsprivateaccesssettings.MwsPrivateAccessSettings_IsTerraformElement(x interface{}) *bool ``` @@ -365,7 +427,7 @@ mwsprivateaccesssettings.MwsPrivateAccessSettings_IsTerraformElement(x interface ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsprivateaccesssettings" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsprivateaccesssettings" mwsprivateaccesssettings.MwsPrivateAccessSettings_IsTerraformResource(x interface{}) *bool ``` @@ -376,6 +438,50 @@ mwsprivateaccesssettings.MwsPrivateAccessSettings_IsTerraformResource(x interfac --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsprivateaccesssettings" + +mwsprivateaccesssettings.MwsPrivateAccessSettings_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsPrivateAccessSettings 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 MwsPrivateAccessSettings to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsPrivateAccessSettings that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_private_access_settings#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 MwsPrivateAccessSettings to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -762,7 +868,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsprivateaccesssettings" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsprivateaccesssettings" &mwsprivateaccesssettings.MwsPrivateAccessSettingsConfig { Connection: interface{}, diff --git a/docs/mwsPrivateAccessSettings.java.md b/docs/mwsPrivateAccessSettings.java.md index 530930835..59db3800a 100644 --- a/docs/mwsPrivateAccessSettings.java.md +++ b/docs/mwsPrivateAccessSettings.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. | | resetAccountId | *No description.* | | resetAllowedVpcEndpointIds | *No description.* | | resetId | *No description.* | @@ -292,6 +295,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 @@ -400,6 +419,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 @@ -412,6 +450,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. + +--- + ##### `resetAccountId` ```java @@ -461,6 +524,7 @@ public void resetStatus() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsPrivateAccessSettings resource upon running "cdktf plan ". | --- @@ -524,6 +588,50 @@ MwsPrivateAccessSettings.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_private_access_settings.MwsPrivateAccessSettings; + +MwsPrivateAccessSettings.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsPrivateAccessSettings.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsPrivateAccessSettings 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 MwsPrivateAccessSettings to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsPrivateAccessSettings that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_private_access_settings#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 MwsPrivateAccessSettings to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPrivateAccessSettings.python.md b/docs/mwsPrivateAccessSettings.python.md index cd0696445..134811f7c 100644 --- a/docs/mwsPrivateAccessSettings.python.md +++ b/docs/mwsPrivateAccessSettings.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_account_id | *No description.* | | reset_allowed_vpc_endpoint_ids | *No description.* | | reset_id | *No description.* | @@ -294,6 +297,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 @@ -420,6 +441,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 @@ -434,6 +476,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_account_id` ```python @@ -483,6 +552,7 @@ def reset_status() -> 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 MwsPrivateAccessSettings resource upon running "cdktf plan ". | --- @@ -552,6 +622,55 @@ mwsPrivateAccessSettings.MwsPrivateAccessSettings.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_private_access_settings + +mwsPrivateAccessSettings.MwsPrivateAccessSettings.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsPrivateAccessSettings 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 MwsPrivateAccessSettings to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsPrivateAccessSettings that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_private_access_settings#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 MwsPrivateAccessSettings to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsPrivateAccessSettings.typescript.md b/docs/mwsPrivateAccessSettings.typescript.md index 267400804..6e70d02d2 100644 --- a/docs/mwsPrivateAccessSettings.typescript.md +++ b/docs/mwsPrivateAccessSettings.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. | | resetAccountId | *No description.* | | resetAllowedVpcEndpointIds | *No description.* | | resetId | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `resetAccountId` ```typescript @@ -313,6 +374,7 @@ public resetStatus(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsPrivateAccessSettings resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ mwsPrivateAccessSettings.MwsPrivateAccessSettings.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsPrivateAccessSettings } from '@cdktf/provider-databricks' + +mwsPrivateAccessSettings.MwsPrivateAccessSettings.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsPrivateAccessSettings 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 MwsPrivateAccessSettings to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsPrivateAccessSettings that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_private_access_settings#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 MwsPrivateAccessSettings to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsStorageConfigurations.csharp.md b/docs/mwsStorageConfigurations.csharp.md index 8c98a3045..5f09b8a80 100644 --- a/docs/mwsStorageConfigurations.csharp.md +++ b/docs/mwsStorageConfigurations.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 MwsStorageConfigurations resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ MwsStorageConfigurations.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsStorageConfigurations.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsStorageConfigurations 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 MwsStorageConfigurations to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsStorageConfigurations that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_storage_configurations#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 MwsStorageConfigurations to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsStorageConfigurations.go.md b/docs/mwsStorageConfigurations.go.md index a18939708..2665664da 100644 --- a/docs/mwsStorageConfigurations.go.md +++ b/docs/mwsStorageConfigurations.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/mwsstorageconfigurations" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsstorageconfigurations" mwsstorageconfigurations.NewMwsStorageConfigurations(scope Construct, id *string, config MwsStorageConfigurationsConfig) MwsStorageConfigurations ``` @@ -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 MwsStorageConfigurations resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsstorageconfigurations" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsstorageconfigurations" mwsstorageconfigurations.MwsStorageConfigurations_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsstorageconfigurations" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsstorageconfigurations" mwsstorageconfigurations.MwsStorageConfigurations_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ mwsstorageconfigurations.MwsStorageConfigurations_IsTerraformElement(x interface ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsstorageconfigurations" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsstorageconfigurations" mwsstorageconfigurations.MwsStorageConfigurations_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ mwsstorageconfigurations.MwsStorageConfigurations_IsTerraformResource(x interfac --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsstorageconfigurations" + +mwsstorageconfigurations.MwsStorageConfigurations_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsStorageConfigurations 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 MwsStorageConfigurations to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsStorageConfigurations that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_storage_configurations#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 MwsStorageConfigurations to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -632,7 +738,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsstorageconfigurations" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsstorageconfigurations" &mwsstorageconfigurations.MwsStorageConfigurationsConfig { Connection: interface{}, diff --git a/docs/mwsStorageConfigurations.java.md b/docs/mwsStorageConfigurations.java.md index 8ec526e82..f9c585127 100644 --- a/docs/mwsStorageConfigurations.java.md +++ b/docs/mwsStorageConfigurations.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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.* | --- @@ -235,6 +238,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 @@ -343,6 +362,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 @@ -355,6 +393,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 @@ -368,6 +431,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsStorageConfigurations resource upon running "cdktf plan ". | --- @@ -431,6 +495,50 @@ MwsStorageConfigurations.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_storage_configurations.MwsStorageConfigurations; + +MwsStorageConfigurations.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsStorageConfigurations.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsStorageConfigurations 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 MwsStorageConfigurations to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsStorageConfigurations that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_storage_configurations#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 MwsStorageConfigurations to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsStorageConfigurations.python.md b/docs/mwsStorageConfigurations.python.md index d9cd84eff..695e89006 100644 --- a/docs/mwsStorageConfigurations.python.md +++ b/docs/mwsStorageConfigurations.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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.* | --- @@ -238,6 +241,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 @@ -364,6 +385,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 @@ -378,6 +420,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 @@ -391,6 +460,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 MwsStorageConfigurations resource upon running "cdktf plan ". | --- @@ -460,6 +530,55 @@ mwsStorageConfigurations.MwsStorageConfigurations.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_storage_configurations + +mwsStorageConfigurations.MwsStorageConfigurations.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsStorageConfigurations 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 MwsStorageConfigurations to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsStorageConfigurations that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_storage_configurations#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 MwsStorageConfigurations to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsStorageConfigurations.typescript.md b/docs/mwsStorageConfigurations.typescript.md index 6233c6484..f4789e69d 100644 --- a/docs/mwsStorageConfigurations.typescript.md +++ b/docs/mwsStorageConfigurations.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 MwsStorageConfigurations resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ mwsStorageConfigurations.MwsStorageConfigurations.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsStorageConfigurations } from '@cdktf/provider-databricks' + +mwsStorageConfigurations.MwsStorageConfigurations.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsStorageConfigurations 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 MwsStorageConfigurations to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsStorageConfigurations that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_storage_configurations#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 MwsStorageConfigurations to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsVpcEndpoint.csharp.md b/docs/mwsVpcEndpoint.csharp.md index d41b0832a..8f654e7b7 100644 --- a/docs/mwsVpcEndpoint.csharp.md +++ b/docs/mwsVpcEndpoint.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. | | PutGcpVpcEndpointInfo | *No description.* | | ResetAccountId | *No description.* | | ResetAwsAccountId | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `PutGcpVpcEndpointInfo` ```csharp @@ -347,6 +408,7 @@ private void ResetVpcEndpointId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsVpcEndpoint resource upon running "cdktf plan ". | --- @@ -410,6 +472,50 @@ MwsVpcEndpoint.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsVpcEndpoint.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsVpcEndpoint 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 MwsVpcEndpoint to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsVpcEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_vpc_endpoint#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 MwsVpcEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsVpcEndpoint.go.md b/docs/mwsVpcEndpoint.go.md index 1d3bb724b..6283a2eb7 100644 --- a/docs/mwsVpcEndpoint.go.md +++ b/docs/mwsVpcEndpoint.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/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" mwsvpcendpoint.NewMwsVpcEndpoint(scope Construct, id *string, config MwsVpcEndpointConfig) MwsVpcEndpoint ``` @@ -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. | | PutGcpVpcEndpointInfo | *No description.* | | ResetAccountId | *No description.* | | ResetAwsAccountId | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `PutGcpVpcEndpointInfo` ```go @@ -347,13 +408,14 @@ func ResetVpcEndpointId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsVpcEndpoint resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" mwsvpcendpoint.MwsVpcEndpoint_IsConstruct(x interface{}) *bool ``` @@ -385,7 +447,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" mwsvpcendpoint.MwsVpcEndpoint_IsTerraformElement(x interface{}) *bool ``` @@ -399,7 +461,7 @@ mwsvpcendpoint.MwsVpcEndpoint_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" mwsvpcendpoint.MwsVpcEndpoint_IsTerraformResource(x interface{}) *bool ``` @@ -410,6 +472,50 @@ mwsvpcendpoint.MwsVpcEndpoint_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" + +mwsvpcendpoint.MwsVpcEndpoint_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsVpcEndpoint 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 MwsVpcEndpoint to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsVpcEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_vpc_endpoint#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 MwsVpcEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -840,7 +946,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" &mwsvpcendpoint.MwsVpcEndpointConfig { Connection: interface{}, @@ -855,7 +961,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpo AwsAccountId: *string, AwsEndpointServiceId: *string, AwsVpcEndpointId: *string, - GcpVpcEndpointInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsVpcEndpoint.MwsVpcEndpointGcpVpcEndpointInfo, + GcpVpcEndpointInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsVpcEndpoint.MwsVpcEndpointGcpVpcEndpointInfo, Id: *string, Region: *string, State: *string, @@ -1101,7 +1207,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" &mwsvpcendpoint.MwsVpcEndpointGcpVpcEndpointInfo { EndpointRegion: *string, @@ -1191,7 +1297,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsvpcendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsvpcendpoint" mwsvpcendpoint.NewMwsVpcEndpointGcpVpcEndpointInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsVpcEndpointGcpVpcEndpointInfoOutputReference ``` diff --git a/docs/mwsVpcEndpoint.java.md b/docs/mwsVpcEndpoint.java.md index ca0f837a1..6a280b17f 100644 --- a/docs/mwsVpcEndpoint.java.md +++ b/docs/mwsVpcEndpoint.java.md @@ -229,6 +229,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.* | @@ -238,7 +239,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. | | putGcpVpcEndpointInfo | *No description.* | | resetAccountId | *No description.* | | resetAwsAccountId | *No description.* | @@ -317,6 +320,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 @@ -425,6 +444,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 @@ -437,6 +475,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. + +--- + ##### `putGcpVpcEndpointInfo` ```java @@ -516,6 +579,7 @@ public void resetVpcEndpointId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsVpcEndpoint resource upon running "cdktf plan ". | --- @@ -579,6 +643,50 @@ MwsVpcEndpoint.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_vpc_endpoint.MwsVpcEndpoint; + +MwsVpcEndpoint.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsVpcEndpoint.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsVpcEndpoint 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 MwsVpcEndpoint to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsVpcEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_vpc_endpoint#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 MwsVpcEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsVpcEndpoint.python.md b/docs/mwsVpcEndpoint.python.md index 67313c0fe..dba0114be 100644 --- a/docs/mwsVpcEndpoint.python.md +++ b/docs/mwsVpcEndpoint.python.md @@ -227,6 +227,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.* | @@ -236,7 +237,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_gcp_vpc_endpoint_info | *No description.* | | reset_account_id | *No description.* | | reset_aws_account_id | *No description.* | @@ -320,6 +323,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 @@ -446,6 +467,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 @@ -460,6 +502,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_gcp_vpc_endpoint_info` ```python @@ -579,6 +648,7 @@ def reset_vpc_endpoint_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 MwsVpcEndpoint resource upon running "cdktf plan ". | --- @@ -648,6 +718,55 @@ mwsVpcEndpoint.MwsVpcEndpoint.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_vpc_endpoint + +mwsVpcEndpoint.MwsVpcEndpoint.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsVpcEndpoint 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 MwsVpcEndpoint to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsVpcEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_vpc_endpoint#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 MwsVpcEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsVpcEndpoint.typescript.md b/docs/mwsVpcEndpoint.typescript.md index 08778ef5f..370bc72b7 100644 --- a/docs/mwsVpcEndpoint.typescript.md +++ b/docs/mwsVpcEndpoint.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. | | putGcpVpcEndpointInfo | *No description.* | | resetAccountId | *No description.* | | resetAwsAccountId | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `putGcpVpcEndpointInfo` ```typescript @@ -347,6 +408,7 @@ public resetVpcEndpointId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsVpcEndpoint resource upon running "cdktf plan ". | --- @@ -410,6 +472,50 @@ mwsVpcEndpoint.MwsVpcEndpoint.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsVpcEndpoint } from '@cdktf/provider-databricks' + +mwsVpcEndpoint.MwsVpcEndpoint.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsVpcEndpoint 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 MwsVpcEndpoint to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsVpcEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_vpc_endpoint#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 MwsVpcEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsWorkspaces.csharp.md b/docs/mwsWorkspaces.csharp.md index b2bfb50e7..e432fd549 100644 --- a/docs/mwsWorkspaces.csharp.md +++ b/docs/mwsWorkspaces.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. | | PutCloudResourceContainer | *No description.* | | PutExternalCustomerInfo | *No description.* | | PutGcpManagedNetworkConfig | *No description.* | @@ -168,6 +171,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 @@ -276,6 +295,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 @@ -288,6 +325,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. + +--- + ##### `PutCloudResourceContainer` ```csharp @@ -517,6 +578,7 @@ private void ResetWorkspaceUrl() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsWorkspaces resource upon running "cdktf plan ". | --- @@ -580,6 +642,50 @@ MwsWorkspaces.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +MwsWorkspaces.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a MwsWorkspaces 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 MwsWorkspaces to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing MwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_workspaces#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 MwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsWorkspaces.go.md b/docs/mwsWorkspaces.go.md index f01205428..d622c7d51 100644 --- a/docs/mwsWorkspaces.go.md +++ b/docs/mwsWorkspaces.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/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspaces(scope Construct, id *string, config MwsWorkspacesConfig) MwsWorkspaces ``` @@ -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. | | PutCloudResourceContainer | *No description.* | | PutExternalCustomerInfo | *No description.* | | PutGcpManagedNetworkConfig | *No description.* | @@ -168,6 +171,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 @@ -276,6 +295,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 @@ -288,6 +325,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. + +--- + ##### `PutCloudResourceContainer` ```go @@ -517,13 +578,14 @@ func ResetWorkspaceUrl() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a MwsWorkspaces resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.MwsWorkspaces_IsConstruct(x interface{}) *bool ``` @@ -555,7 +617,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.MwsWorkspaces_IsTerraformElement(x interface{}) *bool ``` @@ -569,7 +631,7 @@ mwsworkspaces.MwsWorkspaces_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.MwsWorkspaces_IsTerraformResource(x interface{}) *bool ``` @@ -580,6 +642,50 @@ mwsworkspaces.MwsWorkspaces_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" + +mwsworkspaces.MwsWorkspaces_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a MwsWorkspaces 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 MwsWorkspaces to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing MwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_workspaces#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 MwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1362,10 +1468,10 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesCloudResourceContainer { - Gcp: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesCloudResourceContainerGcp, + Gcp: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesCloudResourceContainerGcp, } ``` @@ -1396,7 +1502,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesCloudResourceContainerGcp { ProjectId: *string, @@ -1428,7 +1534,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesConfig { Connection: interface{}, @@ -1442,14 +1548,14 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspac WorkspaceName: *string, AwsRegion: *string, Cloud: *string, - CloudResourceContainer: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesCloudResourceContainer, + CloudResourceContainer: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesCloudResourceContainer, CreationTime: *f64, CredentialsId: *string, CustomerManagedKeyId: *string, DeploymentName: *string, - ExternalCustomerInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesExternalCustomerInfo, - GcpManagedNetworkConfig: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesGcpManagedNetworkConfig, - GkeConfig: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesGkeConfig, + ExternalCustomerInfo: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesExternalCustomerInfo, + GcpManagedNetworkConfig: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesGcpManagedNetworkConfig, + GkeConfig: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesGkeConfig, Id: *string, IsNoPublicIpEnabled: interface{}, Location: *string, @@ -1459,8 +1565,8 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspac PrivateAccessSettingsId: *string, StorageConfigurationId: *string, StorageCustomerManagedKeyId: *string, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesTimeouts, - Token: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.mwsWorkspaces.MwsWorkspacesToken, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesTimeouts, + Token: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.mwsWorkspaces.MwsWorkspacesToken, WorkspaceId: *f64, WorkspaceStatus: *string, WorkspaceStatusMessage: *string, @@ -1923,7 +2029,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesExternalCustomerInfo { AuthoritativeUserEmail: *string, @@ -1983,7 +2089,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesGcpManagedNetworkConfig { GkeClusterPodIpRange: *string, @@ -2043,7 +2149,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesGkeConfig { ConnectivityType: *string, @@ -2089,7 +2195,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesTimeouts { Create: *string, @@ -2149,7 +2255,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" &mwsworkspaces.MwsWorkspacesToken { Comment: *string, @@ -2225,7 +2331,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesCloudResourceContainerGcpOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesCloudResourceContainerGcpOutputReference ``` @@ -2496,7 +2602,7 @@ func InternalValue() MwsWorkspacesCloudResourceContainerGcp #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesCloudResourceContainerOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesCloudResourceContainerOutputReference ``` @@ -2780,7 +2886,7 @@ func InternalValue() MwsWorkspacesCloudResourceContainer #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesExternalCustomerInfoOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesExternalCustomerInfoOutputReference ``` @@ -3095,7 +3201,7 @@ func InternalValue() MwsWorkspacesExternalCustomerInfo #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesGcpManagedNetworkConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesGcpManagedNetworkConfigOutputReference ``` @@ -3410,7 +3516,7 @@ func InternalValue() MwsWorkspacesGcpManagedNetworkConfig #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesGkeConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesGkeConfigOutputReference ``` @@ -3703,7 +3809,7 @@ func InternalValue() MwsWorkspacesGkeConfig #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesTimeoutsOutputReference ``` @@ -4039,7 +4145,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/mwsworkspaces" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/mwsworkspaces" mwsworkspaces.NewMwsWorkspacesTokenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) MwsWorkspacesTokenOutputReference ``` diff --git a/docs/mwsWorkspaces.java.md b/docs/mwsWorkspaces.java.md index 57fb92130..76d68a3a0 100644 --- a/docs/mwsWorkspaces.java.md +++ b/docs/mwsWorkspaces.java.md @@ -400,6 +400,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.* | @@ -409,7 +410,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. | | putCloudResourceContainer | *No description.* | | putExternalCustomerInfo | *No description.* | | putGcpManagedNetworkConfig | *No description.* | @@ -508,6 +511,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 @@ -616,6 +635,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 @@ -628,6 +666,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. + +--- + ##### `putCloudResourceContainer` ```java @@ -857,6 +920,7 @@ public void resetWorkspaceUrl() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsWorkspaces resource upon running "cdktf plan ". | --- @@ -920,6 +984,50 @@ MwsWorkspaces.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.mws_workspaces.MwsWorkspaces; + +MwsWorkspaces.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),MwsWorkspaces.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a MwsWorkspaces 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 MwsWorkspaces to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing MwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_workspaces#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 MwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsWorkspaces.python.md b/docs/mwsWorkspaces.python.md index 2286bfcd7..0d30d173d 100644 --- a/docs/mwsWorkspaces.python.md +++ b/docs/mwsWorkspaces.python.md @@ -397,6 +397,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.* | @@ -406,7 +407,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_cloud_resource_container | *No description.* | | put_external_customer_info | *No description.* | | put_gcp_managed_network_config | *No description.* | @@ -510,6 +513,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 @@ -636,6 +657,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 @@ -650,6 +692,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_cloud_resource_container` ```python @@ -995,6 +1064,7 @@ def reset_workspace_url() -> 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 MwsWorkspaces resource upon running "cdktf plan ". | --- @@ -1064,6 +1134,55 @@ mwsWorkspaces.MwsWorkspaces.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import mws_workspaces + +mwsWorkspaces.MwsWorkspaces.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a MwsWorkspaces 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 MwsWorkspaces to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing MwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_workspaces#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 MwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/mwsWorkspaces.typescript.md b/docs/mwsWorkspaces.typescript.md index 347333d63..58a1ab690 100644 --- a/docs/mwsWorkspaces.typescript.md +++ b/docs/mwsWorkspaces.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. | | putCloudResourceContainer | *No description.* | | putExternalCustomerInfo | *No description.* | | putGcpManagedNetworkConfig | *No description.* | @@ -168,6 +171,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 @@ -276,6 +295,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 @@ -288,6 +325,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. + +--- + ##### `putCloudResourceContainer` ```typescript @@ -517,6 +578,7 @@ public resetWorkspaceUrl(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a MwsWorkspaces resource upon running "cdktf plan ". | --- @@ -580,6 +642,50 @@ mwsWorkspaces.MwsWorkspaces.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { mwsWorkspaces } from '@cdktf/provider-databricks' + +mwsWorkspaces.MwsWorkspaces.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a MwsWorkspaces 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 MwsWorkspaces to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing MwsWorkspaces that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_workspaces#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 MwsWorkspaces to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/notebook.csharp.md b/docs/notebook.csharp.md index 836e0c51d..bb49ac8f6 100644 --- a/docs/notebook.csharp.md +++ b/docs/notebook.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. | | ResetContentBase64 | *No description.* | | ResetFormat | *No description.* | | ResetId | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `ResetContentBase64` ```csharp @@ -320,6 +381,7 @@ private void ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Notebook resource upon running "cdktf plan ". | --- @@ -383,6 +445,50 @@ Notebook.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Notebook.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Notebook 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 Notebook to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Notebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/notebook#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 Notebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/notebook.go.md b/docs/notebook.go.md index c1fc2f525..324280c5c 100644 --- a/docs/notebook.go.md +++ b/docs/notebook.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/notebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/notebook" notebook.NewNotebook(scope Construct, id *string, config NotebookConfig) Notebook ``` @@ -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. | | ResetContentBase64 | *No description.* | | ResetFormat | *No description.* | | ResetId | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `ResetContentBase64` ```go @@ -320,13 +381,14 @@ func ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Notebook resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/notebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/notebook" notebook.Notebook_IsConstruct(x interface{}) *bool ``` @@ -358,7 +420,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/notebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/notebook" notebook.Notebook_IsTerraformElement(x interface{}) *bool ``` @@ -372,7 +434,7 @@ notebook.Notebook_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/notebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/notebook" notebook.Notebook_IsTerraformResource(x interface{}) *bool ``` @@ -383,6 +445,50 @@ notebook.Notebook_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/notebook" + +notebook.Notebook_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Notebook 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 Notebook to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Notebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/notebook#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 Notebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -780,7 +886,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/notebook" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/notebook" ¬ebook.NotebookConfig { Connection: interface{}, diff --git a/docs/notebook.java.md b/docs/notebook.java.md index bffb0c1c7..5b114d661 100644 --- a/docs/notebook.java.md +++ b/docs/notebook.java.md @@ -207,6 +207,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.* | @@ -216,7 +217,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. | | resetContentBase64 | *No description.* | | resetFormat | *No description.* | | resetId | *No description.* | @@ -292,6 +295,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 @@ -400,6 +419,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 @@ -412,6 +450,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. + +--- + ##### `resetContentBase64` ```java @@ -467,6 +530,7 @@ public void resetSource() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Notebook resource upon running "cdktf plan ". | --- @@ -530,6 +594,50 @@ Notebook.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.notebook.Notebook; + +Notebook.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Notebook.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Notebook 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 Notebook to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Notebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/notebook#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 Notebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/notebook.python.md b/docs/notebook.python.md index b16e67a1f..93c230060 100644 --- a/docs/notebook.python.md +++ b/docs/notebook.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_content_base64 | *No description.* | | reset_format | *No description.* | | reset_id | *No description.* | @@ -295,6 +298,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 @@ -421,6 +442,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 @@ -435,6 +477,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_content_base64` ```python @@ -490,6 +559,7 @@ def reset_source() -> 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 Notebook resource upon running "cdktf plan ". | --- @@ -559,6 +629,55 @@ notebook.Notebook.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import notebook + +notebook.Notebook.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Notebook 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 Notebook to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Notebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/notebook#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 Notebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/notebook.typescript.md b/docs/notebook.typescript.md index 039934335..08e55ed89 100644 --- a/docs/notebook.typescript.md +++ b/docs/notebook.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. | | resetContentBase64 | *No description.* | | resetFormat | *No description.* | | resetId | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `resetContentBase64` ```typescript @@ -320,6 +381,7 @@ public resetSource(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Notebook resource upon running "cdktf plan ". | --- @@ -383,6 +445,50 @@ notebook.Notebook.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { notebook } from '@cdktf/provider-databricks' + +notebook.Notebook.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Notebook 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 Notebook to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Notebook that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/notebook#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 Notebook to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/oboToken.csharp.md b/docs/oboToken.csharp.md index 3a63f799a..335c5655d 100644 --- a/docs/oboToken.csharp.md +++ b/docs/oboToken.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.* | | ResetLifetimeSeconds | *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. + +--- + ##### `ResetComment` ```csharp @@ -285,6 +346,7 @@ private void ResetLifetimeSeconds() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a OboToken resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ OboToken.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +OboToken.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a OboToken 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 OboToken to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing OboToken that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/obo_token#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 OboToken to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/oboToken.go.md b/docs/oboToken.go.md index ba31bbc1f..8f98439d4 100644 --- a/docs/oboToken.go.md +++ b/docs/oboToken.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/obotoken" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/obotoken" obotoken.NewOboToken(scope Construct, id *string, config OboTokenConfig) OboToken ``` @@ -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.* | | ResetLifetimeSeconds | *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. + +--- + ##### `ResetComment` ```go @@ -285,13 +346,14 @@ func ResetLifetimeSeconds() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a OboToken resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/obotoken" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/obotoken" obotoken.OboToken_IsConstruct(x interface{}) *bool ``` @@ -323,7 +385,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/obotoken" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/obotoken" obotoken.OboToken_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +399,7 @@ obotoken.OboToken_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/obotoken" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/obotoken" obotoken.OboToken_IsTerraformResource(x interface{}) *bool ``` @@ -348,6 +410,50 @@ obotoken.OboToken_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/obotoken" + +obotoken.OboToken_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a OboToken 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 OboToken to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing OboToken that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/obo_token#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 OboToken to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -635,7 +741,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/obotoken" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/obotoken" &obotoken.OboTokenConfig { Connection: interface{}, diff --git a/docs/oboToken.java.md b/docs/oboToken.java.md index 294a063aa..0c885ab13 100644 --- a/docs/oboToken.java.md +++ b/docs/oboToken.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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.* | | resetLifetimeSeconds | *No description.* | @@ -237,6 +240,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 @@ -345,6 +364,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 @@ -357,6 +395,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 @@ -382,6 +445,7 @@ public void resetLifetimeSeconds() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a OboToken resource upon running "cdktf plan ". | --- @@ -445,6 +509,50 @@ OboToken.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.obo_token.OboToken; + +OboToken.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),OboToken.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a OboToken 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 OboToken to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing OboToken that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/obo_token#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 OboToken to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/oboToken.python.md b/docs/oboToken.python.md index 9d7da1be6..99c1dbfa5 100644 --- a/docs/oboToken.python.md +++ b/docs/oboToken.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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_lifetime_seconds | *No description.* | @@ -240,6 +243,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 @@ -366,6 +387,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 @@ -380,6 +422,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 @@ -405,6 +474,7 @@ def reset_lifetime_seconds() -> 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 OboToken resource upon running "cdktf plan ". | --- @@ -474,6 +544,55 @@ oboToken.OboToken.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import obo_token + +oboToken.OboToken.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a OboToken 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 OboToken to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing OboToken that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/obo_token#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 OboToken to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/oboToken.typescript.md b/docs/oboToken.typescript.md index 75474c2b4..c112559d6 100644 --- a/docs/oboToken.typescript.md +++ b/docs/oboToken.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.* | | resetLifetimeSeconds | *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. + +--- + ##### `resetComment` ```typescript @@ -285,6 +346,7 @@ public resetLifetimeSeconds(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a OboToken resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ oboToken.OboToken.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { oboToken } from '@cdktf/provider-databricks' + +oboToken.OboToken.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a OboToken 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 OboToken to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing OboToken that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/obo_token#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 OboToken to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissionAssignment.csharp.md b/docs/permissionAssignment.csharp.md index f24e96034..a967ea399 100644 --- a/docs/permissionAssignment.csharp.md +++ b/docs/permissionAssignment.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 PermissionAssignment resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ PermissionAssignment.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +PermissionAssignment.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a PermissionAssignment 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 PermissionAssignment to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing PermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permission_assignment#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 PermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissionAssignment.go.md b/docs/permissionAssignment.go.md index 01f1dd12c..99d9abd2a 100644 --- a/docs/permissionAssignment.go.md +++ b/docs/permissionAssignment.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/permissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissionassignment" permissionassignment.NewPermissionAssignment(scope Construct, id *string, config PermissionAssignmentConfig) PermissionAssignment ``` @@ -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 PermissionAssignment resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissionassignment" permissionassignment.PermissionAssignment_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissionassignment" permissionassignment.PermissionAssignment_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ permissionassignment.PermissionAssignment_IsTerraformElement(x interface{}) *boo ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissionassignment" permissionassignment.PermissionAssignment_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ permissionassignment.PermissionAssignment_IsTerraformResource(x interface{}) *bo --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissionassignment" + +permissionassignment.PermissionAssignment_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a PermissionAssignment 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 PermissionAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing PermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permission_assignment#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 PermissionAssignment 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/permissionassignment" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissionassignment" &permissionassignment.PermissionAssignmentConfig { Connection: interface{}, diff --git a/docs/permissionAssignment.java.md b/docs/permissionAssignment.java.md index 0680f4636..c3b63528a 100644 --- a/docs/permissionAssignment.java.md +++ b/docs/permissionAssignment.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 PermissionAssignment resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ PermissionAssignment.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.permission_assignment.PermissionAssignment; + +PermissionAssignment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),PermissionAssignment.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a PermissionAssignment 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 PermissionAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing PermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permission_assignment#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 PermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissionAssignment.python.md b/docs/permissionAssignment.python.md index 9dd80da93..2c0704ae2 100644 --- a/docs/permissionAssignment.python.md +++ b/docs/permissionAssignment.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 PermissionAssignment resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ permissionAssignment.PermissionAssignment.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import permission_assignment + +permissionAssignment.PermissionAssignment.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a PermissionAssignment 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 PermissionAssignment to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing PermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permission_assignment#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 PermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissionAssignment.typescript.md b/docs/permissionAssignment.typescript.md index c6357d0a6..8f7d1841a 100644 --- a/docs/permissionAssignment.typescript.md +++ b/docs/permissionAssignment.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 PermissionAssignment resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ permissionAssignment.PermissionAssignment.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { permissionAssignment } from '@cdktf/provider-databricks' + +permissionAssignment.PermissionAssignment.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a PermissionAssignment 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 PermissionAssignment to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing PermissionAssignment that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permission_assignment#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 PermissionAssignment to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissions.csharp.md b/docs/permissions.csharp.md index a60e90a65..388ef908c 100644 --- a/docs/permissions.csharp.md +++ b/docs/permissions.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. | | PutAccessControl | *No description.* | | ResetAuthorization | *No description.* | | ResetClusterId | *No description.* | @@ -161,6 +164,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 @@ -269,6 +288,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 @@ -281,6 +318,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. + +--- + ##### `PutAccessControl` ```csharp @@ -438,6 +499,7 @@ private void ResetWorkspaceFilePath() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Permissions resource upon running "cdktf plan ". | --- @@ -501,6 +563,50 @@ Permissions.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Permissions.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Permissions 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 Permissions to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Permissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permissions#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 Permissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissions.go.md b/docs/permissions.go.md index 7ce93a956..e057d6fa8 100644 --- a/docs/permissions.go.md +++ b/docs/permissions.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/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" permissions.NewPermissions(scope Construct, id *string, config PermissionsConfig) Permissions ``` @@ -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. | | PutAccessControl | *No description.* | | ResetAuthorization | *No description.* | | ResetClusterId | *No description.* | @@ -161,6 +164,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 @@ -269,6 +288,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 @@ -281,6 +318,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. + +--- + ##### `PutAccessControl` ```go @@ -438,13 +499,14 @@ func ResetWorkspaceFilePath() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Permissions resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" permissions.Permissions_IsConstruct(x interface{}) *bool ``` @@ -476,7 +538,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" permissions.Permissions_IsTerraformElement(x interface{}) *bool ``` @@ -490,7 +552,7 @@ permissions.Permissions_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" permissions.Permissions_IsTerraformResource(x interface{}) *bool ``` @@ -501,6 +563,50 @@ permissions.Permissions_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" + +permissions.Permissions_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Permissions 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 Permissions to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Permissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permissions#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 Permissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1217,7 +1323,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" &permissions.PermissionsAccessControl { PermissionLevel: *string, @@ -1291,7 +1397,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" &permissions.PermissionsConfig { Connection: interface{}, @@ -1736,7 +1842,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" permissions.NewPermissionsAccessControlList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) PermissionsAccessControlList ``` @@ -1879,7 +1985,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/permissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/permissions" permissions.NewPermissionsAccessControlOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) PermissionsAccessControlOutputReference ``` diff --git a/docs/permissions.java.md b/docs/permissions.java.md index be49696d6..d13116db4 100644 --- a/docs/permissions.java.md +++ b/docs/permissions.java.md @@ -360,6 +360,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.* | @@ -369,7 +370,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. | | putAccessControl | *No description.* | | resetAuthorization | *No description.* | | resetClusterId | *No description.* | @@ -461,6 +464,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 @@ -569,6 +588,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 @@ -581,6 +619,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. + +--- + ##### `putAccessControl` ```java @@ -738,6 +801,7 @@ public void resetWorkspaceFilePath() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Permissions resource upon running "cdktf plan ". | --- @@ -801,6 +865,50 @@ Permissions.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.permissions.Permissions; + +Permissions.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Permissions.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Permissions 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 Permissions to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Permissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permissions#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 Permissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissions.python.md b/docs/permissions.python.md index 87c7bac23..569f7af26 100644 --- a/docs/permissions.python.md +++ b/docs/permissions.python.md @@ -357,6 +357,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.* | @@ -366,7 +367,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_access_control | *No description.* | | reset_authorization | *No description.* | | reset_cluster_id | *No description.* | @@ -463,6 +466,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 @@ -589,6 +610,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 @@ -603,6 +645,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_access_control` ```python @@ -762,6 +831,7 @@ def reset_workspace_file_path() -> 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 Permissions resource upon running "cdktf plan ". | --- @@ -831,6 +901,55 @@ permissions.Permissions.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import permissions + +permissions.Permissions.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Permissions 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 Permissions to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Permissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permissions#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 Permissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/permissions.typescript.md b/docs/permissions.typescript.md index 6db5beb3b..aa23f619e 100644 --- a/docs/permissions.typescript.md +++ b/docs/permissions.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. | | putAccessControl | *No description.* | | resetAuthorization | *No description.* | | resetClusterId | *No description.* | @@ -161,6 +164,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 @@ -269,6 +288,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 @@ -281,6 +318,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. + +--- + ##### `putAccessControl` ```typescript @@ -438,6 +499,7 @@ public resetWorkspaceFilePath(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Permissions resource upon running "cdktf plan ". | --- @@ -501,6 +563,50 @@ permissions.Permissions.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { permissions } from '@cdktf/provider-databricks' + +permissions.Permissions.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Permissions 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 Permissions to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Permissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permissions#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 Permissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/pipeline.csharp.md b/docs/pipeline.csharp.md index 96b8dae9c..99275ada5 100644 --- a/docs/pipeline.csharp.md +++ b/docs/pipeline.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. | | PutCluster | *No description.* | | PutFilters | *No description.* | | PutLibrary | *No description.* | @@ -160,6 +163,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 @@ -268,6 +287,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 @@ -280,6 +317,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. + +--- + ##### `PutCluster` ```csharp @@ -455,6 +516,7 @@ private void ResetTimeouts() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Pipeline resource upon running "cdktf plan ". | --- @@ -518,6 +580,50 @@ Pipeline.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Pipeline.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Pipeline 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 Pipeline to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Pipeline that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/pipeline#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 Pipeline to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/pipeline.go.md b/docs/pipeline.go.md index 024a95786..a7fca6b28 100644 --- a/docs/pipeline.go.md +++ b/docs/pipeline.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/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipeline(scope Construct, id *string, config PipelineConfig) Pipeline ``` @@ -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. | | PutCluster | *No description.* | | PutFilters | *No description.* | | PutLibrary | *No description.* | @@ -160,6 +163,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 @@ -268,6 +287,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 @@ -280,6 +317,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. + +--- + ##### `PutCluster` ```go @@ -455,13 +516,14 @@ func ResetTimeouts() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Pipeline resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.Pipeline_IsConstruct(x interface{}) *bool ``` @@ -493,7 +555,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.Pipeline_IsTerraformElement(x interface{}) *bool ``` @@ -507,7 +569,7 @@ pipeline.Pipeline_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.Pipeline_IsTerraformResource(x interface{}) *bool ``` @@ -518,6 +580,50 @@ pipeline.Pipeline_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" + +pipeline.Pipeline_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Pipeline 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 Pipeline to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Pipeline that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/pipeline#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 Pipeline to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1113,19 +1219,19 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineCluster { ApplyPolicyDefaultValues: interface{}, - Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterAutoscale, - AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterAwsAttributes, - AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterAzureAttributes, - ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterClusterLogConf, + Autoscale: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterAutoscale, + AwsAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterAwsAttributes, + AzureAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterAzureAttributes, + ClusterLogConf: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterClusterLogConf, CustomTags: *map[string]*string, DriverInstancePoolId: *string, DriverNodeTypeId: *string, EnableLocalDiskEncryption: interface{}, - GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterGcpAttributes, + GcpAttributes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterGcpAttributes, InitScripts: interface{}, InstancePoolId: *string, Label: *string, @@ -1409,7 +1515,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterAutoscale { MaxWorkers: *f64, @@ -1469,7 +1575,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterAwsAttributes { Availability: *string, @@ -1599,7 +1705,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterAzureAttributes { Availability: *string, @@ -1659,11 +1765,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterClusterLogConf { - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterClusterLogConfDbfs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterClusterLogConfS3, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterClusterLogConfDbfs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterClusterLogConfS3, } ``` @@ -1709,7 +1815,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterClusterLogConfDbfs { Destination: *string, @@ -1741,7 +1847,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterClusterLogConfS3 { Destination: *string, @@ -1857,7 +1963,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterGcpAttributes { Availability: *string, @@ -1931,16 +2037,16 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScripts { - Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsAbfss, - Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsDbfs, - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsFile, - Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsGcs, - S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsS3, - Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsVolumes, - Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineClusterInitScriptsWorkspace, + Abfss: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsAbfss, + Dbfs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsDbfs, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsFile, + Gcs: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsGcs, + S3: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsS3, + Volumes: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsVolumes, + Workspace: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineClusterInitScriptsWorkspace, } ``` @@ -2061,7 +2167,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsAbfss { Destination: *string, @@ -2093,7 +2199,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsDbfs { Destination: *string, @@ -2125,7 +2231,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsFile { Destination: *string, @@ -2157,7 +2263,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsGcs { Destination: *string, @@ -2189,7 +2295,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsS3 { Destination: *string, @@ -2305,7 +2411,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsVolumes { Destination: *string, @@ -2337,7 +2443,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineClusterInitScriptsWorkspace { Destination: *string, @@ -2369,7 +2475,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineConfig { Connection: interface{}, @@ -2387,7 +2493,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" Continuous: interface{}, Development: interface{}, Edition: *string, - Filters: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineFilters, + Filters: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineFilters, Id: *string, Library: interface{}, Name: *string, @@ -2396,7 +2502,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" Serverless: interface{}, Storage: *string, Target: *string, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineTimeouts, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineTimeouts, } ``` @@ -2736,7 +2842,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineFilters { Exclude: *[]*string, @@ -2782,13 +2888,13 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineLibrary { - File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineLibraryFile, + File: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineLibraryFile, Jar: *string, - Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineLibraryMaven, - Notebook: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.pipeline.PipelineLibraryNotebook, + Maven: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineLibraryMaven, + Notebook: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.pipeline.PipelineLibraryNotebook, Whl: *string, } ``` @@ -2876,7 +2982,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineLibraryFile { Path: *string, @@ -2908,7 +3014,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineLibraryMaven { Coordinates: *string, @@ -2968,7 +3074,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineLibraryNotebook { Path: *string, @@ -3000,7 +3106,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineNotification { Alerts: *[]*string, @@ -3046,7 +3152,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" &pipeline.PipelineTimeouts { Default: *string, @@ -3080,7 +3186,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterAutoscaleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterAutoscaleOutputReference ``` @@ -3416,7 +3522,7 @@ func InternalValue() PipelineClusterAutoscale #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterAwsAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterAwsAttributesOutputReference ``` @@ -3897,7 +4003,7 @@ func InternalValue() PipelineClusterAwsAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterAzureAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterAzureAttributesOutputReference ``` @@ -4233,7 +4339,7 @@ func InternalValue() PipelineClusterAzureAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterClusterLogConfDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterClusterLogConfDbfsOutputReference ``` @@ -4504,7 +4610,7 @@ func InternalValue() PipelineClusterClusterLogConfDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterClusterLogConfOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterClusterLogConfOutputReference ``` @@ -4837,7 +4943,7 @@ func InternalValue() PipelineClusterClusterLogConf #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterClusterLogConfS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterClusterLogConfS3OutputReference ``` @@ -5282,7 +5388,7 @@ func InternalValue() PipelineClusterClusterLogConfS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterGcpAttributesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterGcpAttributesOutputReference ``` @@ -5647,7 +5753,7 @@ func InternalValue() PipelineClusterGcpAttributes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsAbfssOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsAbfssOutputReference ``` @@ -5925,7 +6031,7 @@ func InternalValue() PipelineClusterInitScriptsAbfss #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsDbfsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsDbfsOutputReference ``` @@ -6196,7 +6302,7 @@ func InternalValue() PipelineClusterInitScriptsDbfs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsFileOutputReference ``` @@ -6474,7 +6580,7 @@ func InternalValue() PipelineClusterInitScriptsFile #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsGcsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsGcsOutputReference ``` @@ -6752,7 +6858,7 @@ func InternalValue() PipelineClusterInitScriptsGcs #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) PipelineClusterInitScriptsList ``` @@ -6895,7 +7001,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) PipelineClusterInitScriptsOutputReference ``` @@ -7456,7 +7562,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsS3OutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsS3OutputReference ``` @@ -7901,7 +8007,7 @@ func InternalValue() PipelineClusterInitScriptsS3 #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsVolumesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsVolumesOutputReference ``` @@ -8179,7 +8285,7 @@ func InternalValue() PipelineClusterInitScriptsVolumes #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterInitScriptsWorkspaceOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineClusterInitScriptsWorkspaceOutputReference ``` @@ -8457,7 +8563,7 @@ func InternalValue() PipelineClusterInitScriptsWorkspace #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) PipelineClusterList ``` @@ -8600,7 +8706,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineClusterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) PipelineClusterOutputReference ``` @@ -9496,7 +9602,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineFiltersOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineFiltersOutputReference ``` @@ -9803,7 +9909,7 @@ func InternalValue() PipelineFilters #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineLibraryFileOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineLibraryFileOutputReference ``` @@ -10074,7 +10180,7 @@ func InternalValue() PipelineLibraryFile #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineLibraryList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) PipelineLibraryList ``` @@ -10217,7 +10323,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineLibraryMavenOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineLibraryMavenOutputReference ``` @@ -10546,7 +10652,7 @@ func InternalValue() PipelineLibraryMaven #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineLibraryNotebookOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineLibraryNotebookOutputReference ``` @@ -10817,7 +10923,7 @@ func InternalValue() PipelineLibraryNotebook #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineLibraryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) PipelineLibraryOutputReference ``` @@ -11268,7 +11374,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineNotificationList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) PipelineNotificationList ``` @@ -11411,7 +11517,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineNotificationOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) PipelineNotificationOutputReference ``` @@ -11722,7 +11828,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/pipeline" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/pipeline" pipeline.NewPipelineTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) PipelineTimeoutsOutputReference ``` diff --git a/docs/pipeline.java.md b/docs/pipeline.java.md index 44a8b15fc..a8e239aff 100644 --- a/docs/pipeline.java.md +++ b/docs/pipeline.java.md @@ -315,6 +315,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.* | @@ -324,7 +325,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. | | putCluster | *No description.* | | putFilters | *No description.* | | putLibrary | *No description.* | @@ -415,6 +418,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 @@ -523,6 +542,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 @@ -535,6 +573,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. + +--- + ##### `putCluster` ```java @@ -710,6 +773,7 @@ public void resetTimeouts() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Pipeline resource upon running "cdktf plan ". | --- @@ -773,6 +837,50 @@ Pipeline.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.pipeline.Pipeline; + +Pipeline.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Pipeline.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Pipeline 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 Pipeline to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Pipeline that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/pipeline#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 Pipeline to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/pipeline.python.md b/docs/pipeline.python.md index 02591dc81..a35f5be72 100644 --- a/docs/pipeline.python.md +++ b/docs/pipeline.python.md @@ -305,6 +305,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.* | @@ -314,7 +315,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_cluster | *No description.* | | put_filters | *No description.* | | put_library | *No description.* | @@ -410,6 +413,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 @@ -536,6 +557,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 @@ -550,6 +592,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_cluster` ```python @@ -748,6 +817,7 @@ def reset_timeouts() -> 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 Pipeline resource upon running "cdktf plan ". | --- @@ -817,6 +887,55 @@ pipeline.Pipeline.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import pipeline + +pipeline.Pipeline.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Pipeline 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 Pipeline to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Pipeline that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/pipeline#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 Pipeline to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/pipeline.typescript.md b/docs/pipeline.typescript.md index 258dc1021..1fcf3e890 100644 --- a/docs/pipeline.typescript.md +++ b/docs/pipeline.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. | | putCluster | *No description.* | | putFilters | *No description.* | | putLibrary | *No description.* | @@ -160,6 +163,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 @@ -268,6 +287,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 @@ -280,6 +317,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. + +--- + ##### `putCluster` ```typescript @@ -455,6 +516,7 @@ public resetTimeouts(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Pipeline resource upon running "cdktf plan ". | --- @@ -518,6 +580,50 @@ pipeline.Pipeline.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { pipeline } from '@cdktf/provider-databricks' + +pipeline.Pipeline.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Pipeline 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 Pipeline to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Pipeline that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/pipeline#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 Pipeline to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/provider.csharp.md b/docs/provider.csharp.md index 06f7ae15e..3ce0457cb 100644 --- a/docs/provider.csharp.md +++ b/docs/provider.csharp.md @@ -344,6 +344,7 @@ private void ResetWarehouseId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformProvider | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DatabricksProvider resource upon running "cdktf plan ". | --- @@ -407,6 +408,50 @@ DatabricksProvider.IsTerraformProvider(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +DatabricksProvider.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a DatabricksProvider 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 DatabricksProvider to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing DatabricksProvider that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs#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 DatabricksProvider to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/provider.go.md b/docs/provider.go.md index fe7fc2c15..d59106391 100644 --- a/docs/provider.go.md +++ b/docs/provider.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/provider" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/provider" provider.NewDatabricksProvider(scope Construct, id *string, config DatabricksProviderConfig) DatabricksProvider ``` @@ -344,13 +344,14 @@ func ResetWarehouseId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformProvider | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a DatabricksProvider resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/provider" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/provider" provider.DatabricksProvider_IsConstruct(x interface{}) *bool ``` @@ -382,7 +383,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/provider" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/provider" provider.DatabricksProvider_IsTerraformElement(x interface{}) *bool ``` @@ -396,7 +397,7 @@ provider.DatabricksProvider_IsTerraformElement(x interface{}) *bool ##### `IsTerraformProvider` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/provider" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/provider" provider.DatabricksProvider_IsTerraformProvider(x interface{}) *bool ``` @@ -407,6 +408,50 @@ provider.DatabricksProvider_IsTerraformProvider(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/provider" + +provider.DatabricksProvider_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a DatabricksProvider 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 DatabricksProvider to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing DatabricksProvider that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs#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 DatabricksProvider to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1189,7 +1234,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/provider" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/provider" &provider.DatabricksProviderConfig { AccountId: *string, diff --git a/docs/provider.java.md b/docs/provider.java.md index 6c7f0368d..56f1089c4 100644 --- a/docs/provider.java.md +++ b/docs/provider.java.md @@ -643,6 +643,7 @@ public void resetWarehouseId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformProvider | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DatabricksProvider resource upon running "cdktf plan ". | --- @@ -706,6 +707,50 @@ DatabricksProvider.isTerraformProvider(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.provider.DatabricksProvider; + +DatabricksProvider.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),DatabricksProvider.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a DatabricksProvider 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 DatabricksProvider to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing DatabricksProvider that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs#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 DatabricksProvider to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/provider.python.md b/docs/provider.python.md index 4757976e8..9d81fd25f 100644 --- a/docs/provider.python.md +++ b/docs/provider.python.md @@ -647,6 +647,7 @@ def reset_warehouse_id() -> None | is_construct | Checks if `x` is a construct. | | is_terraform_element | *No description.* | | is_terraform_provider | *No description.* | +| generate_config_for_import | Generates CDKTF code for importing a DatabricksProvider resource upon running "cdktf plan ". | --- @@ -716,6 +717,55 @@ provider.DatabricksProvider.is_terraform_provider( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import provider + +provider.DatabricksProvider.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a DatabricksProvider 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 DatabricksProvider to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing DatabricksProvider that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs#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 DatabricksProvider to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/provider.typescript.md b/docs/provider.typescript.md index a3d48bbe9..90d197301 100644 --- a/docs/provider.typescript.md +++ b/docs/provider.typescript.md @@ -344,6 +344,7 @@ public resetWarehouseId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformProvider | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a DatabricksProvider resource upon running "cdktf plan ". | --- @@ -407,6 +408,50 @@ provider.DatabricksProvider.isTerraformProvider(x: any) --- +##### `generateConfigForImport` + +```typescript +import { provider } from '@cdktf/provider-databricks' + +provider.DatabricksProvider.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a DatabricksProvider 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 DatabricksProvider to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing DatabricksProvider that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs#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 DatabricksProvider to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/providerResource.csharp.md b/docs/providerResource.csharp.md index 6e0700062..a1f3856cc 100644 --- a/docs/providerResource.csharp.md +++ b/docs/providerResource.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.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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 @@ -278,6 +339,7 @@ private void ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ProviderResource resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ ProviderResource.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +ProviderResource.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a ProviderResource 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 ProviderResource to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing ProviderResource that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/provider#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 ProviderResource to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/providerResource.go.md b/docs/providerResource.go.md index fbad137f5..f2ca46da0 100644 --- a/docs/providerResource.go.md +++ b/docs/providerResource.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/providerresource" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/providerresource" providerresource.NewProviderResource(scope Construct, id *string, config ProviderResourceConfig) ProviderResource ``` @@ -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.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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 @@ -278,13 +339,14 @@ func ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ProviderResource resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/providerresource" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/providerresource" providerresource.ProviderResource_IsConstruct(x interface{}) *bool ``` @@ -316,7 +378,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/providerresource" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/providerresource" providerresource.ProviderResource_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +392,7 @@ providerresource.ProviderResource_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/providerresource" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/providerresource" providerresource.ProviderResource_IsTerraformResource(x interface{}) *bool ``` @@ -341,6 +403,50 @@ providerresource.ProviderResource_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/providerresource" + +providerresource.ProviderResource_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a ProviderResource 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 ProviderResource to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing ProviderResource that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/provider#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 ProviderResource to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -639,7 +745,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/providerresource" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/providerresource" &providerresource.ProviderResourceConfig { Connection: interface{}, diff --git a/docs/providerResource.java.md b/docs/providerResource.java.md index 6ae412937..4ead88996 100644 --- a/docs/providerResource.java.md +++ b/docs/providerResource.java.md @@ -167,6 +167,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.* | @@ -176,7 +177,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. | | resetComment | *No description.* | | resetId | *No description.* | @@ -246,6 +249,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 @@ -354,6 +373,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 @@ -366,6 +404,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 @@ -385,6 +448,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ProviderResource resource upon running "cdktf plan ". | --- @@ -448,6 +512,50 @@ ProviderResource.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.provider_resource.ProviderResource; + +ProviderResource.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ProviderResource.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a ProviderResource 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 ProviderResource to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing ProviderResource that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/provider#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 ProviderResource to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/providerResource.python.md b/docs/providerResource.python.md index 8f2283a35..c55b96952 100644 --- a/docs/providerResource.python.md +++ b/docs/providerResource.python.md @@ -165,6 +165,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.* | @@ -174,7 +175,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_comment | *No description.* | | reset_id | *No description.* | @@ -249,6 +252,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 @@ -375,6 +396,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 @@ -389,6 +431,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 @@ -408,6 +477,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 ProviderResource resource upon running "cdktf plan ". | --- @@ -477,6 +547,55 @@ providerResource.ProviderResource.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import provider_resource + +providerResource.ProviderResource.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a ProviderResource 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 ProviderResource to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing ProviderResource that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/provider#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 ProviderResource to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/providerResource.typescript.md b/docs/providerResource.typescript.md index d5226072c..3876b1b01 100644 --- a/docs/providerResource.typescript.md +++ b/docs/providerResource.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.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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 @@ -278,6 +339,7 @@ public resetId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ProviderResource resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ providerResource.ProviderResource.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { providerResource } from '@cdktf/provider-databricks' + +providerResource.ProviderResource.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a ProviderResource 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 ProviderResource to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing ProviderResource that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/provider#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 ProviderResource to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/recipient.csharp.md b/docs/recipient.csharp.md index d5f5a2a8b..0bdb9f78b 100644 --- a/docs/recipient.csharp.md +++ b/docs/recipient.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. | | PutIpAccessList | *No description.* | | PutTokens | *No description.* | | ResetComment | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutIpAccessList` ```csharp @@ -332,6 +393,7 @@ private void ResetTokens() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Recipient resource upon running "cdktf plan ". | --- @@ -395,6 +457,50 @@ Recipient.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Recipient.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Recipient 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 Recipient to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Recipient that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/recipient#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 Recipient to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/recipient.go.md b/docs/recipient.go.md index 149e6e03a..915709d4f 100644 --- a/docs/recipient.go.md +++ b/docs/recipient.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/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.NewRecipient(scope Construct, id *string, config RecipientConfig) Recipient ``` @@ -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. | | PutIpAccessList | *No description.* | | PutTokens | *No description.* | | ResetComment | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutIpAccessList` ```go @@ -332,13 +393,14 @@ func ResetTokens() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Recipient resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.Recipient_IsConstruct(x interface{}) *bool ``` @@ -370,7 +432,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.Recipient_IsTerraformElement(x interface{}) *bool ``` @@ -384,7 +446,7 @@ recipient.Recipient_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.Recipient_IsTerraformResource(x interface{}) *bool ``` @@ -395,6 +457,50 @@ recipient.Recipient_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" + +recipient.Recipient_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Recipient 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 Recipient to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Recipient that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/recipient#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 Recipient to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -759,7 +865,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" &recipient.RecipientConfig { Connection: interface{}, @@ -774,7 +880,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" Comment: *string, DataRecipientGlobalMetastoreId: *string, Id: *string, - IpAccessList: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.recipient.RecipientIpAccessListStruct, + IpAccessList: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.recipient.RecipientIpAccessListStruct, SharingCode: *string, Tokens: interface{}, } @@ -980,7 +1086,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" &recipient.RecipientIpAccessListStruct { AllowedIpAddresses: *[]*string, @@ -1012,7 +1118,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" &recipient.RecipientTokens { ActivationUrl: *string, @@ -1133,7 +1239,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.NewRecipientIpAccessListStructOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) RecipientIpAccessListStructOutputReference ``` @@ -1404,7 +1510,7 @@ func InternalValue() RecipientIpAccessListStruct #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.NewRecipientTokensList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) RecipientTokensList ``` @@ -1547,7 +1653,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/recipient" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/recipient" recipient.NewRecipientTokensOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) RecipientTokensOutputReference ``` diff --git a/docs/recipient.java.md b/docs/recipient.java.md index d66562f1d..8a00c1006 100644 --- a/docs/recipient.java.md +++ b/docs/recipient.java.md @@ -202,6 +202,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.* | @@ -211,7 +212,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. | | putIpAccessList | *No description.* | | putTokens | *No description.* | | resetComment | *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. + +--- + ##### `putIpAccessList` ```java @@ -474,6 +537,7 @@ public void resetTokens() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Recipient resource upon running "cdktf plan ". | --- @@ -537,6 +601,50 @@ Recipient.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.recipient.Recipient; + +Recipient.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Recipient.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Recipient 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 Recipient to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Recipient that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/recipient#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 Recipient to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/recipient.python.md b/docs/recipient.python.md index fcbb422ab..4d78e0897 100644 --- a/docs/recipient.python.md +++ b/docs/recipient.python.md @@ -199,6 +199,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.* | @@ -208,7 +209,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_ip_access_list | *No description.* | | put_tokens | *No description.* | | reset_comment | *No description.* | @@ -289,6 +292,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 @@ -415,6 +436,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 @@ -429,6 +471,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_ip_access_list` ```python @@ -502,6 +571,7 @@ def reset_tokens() -> 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 Recipient resource upon running "cdktf plan ". | --- @@ -571,6 +641,55 @@ recipient.Recipient.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import recipient + +recipient.Recipient.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Recipient 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 Recipient to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Recipient that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/recipient#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 Recipient to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/recipient.typescript.md b/docs/recipient.typescript.md index 1c07914fd..3007d7106 100644 --- a/docs/recipient.typescript.md +++ b/docs/recipient.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. | | putIpAccessList | *No description.* | | putTokens | *No description.* | | resetComment | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `putIpAccessList` ```typescript @@ -332,6 +393,7 @@ public resetTokens(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Recipient resource upon running "cdktf plan ". | --- @@ -395,6 +457,50 @@ recipient.Recipient.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { recipient } from '@cdktf/provider-databricks' + +recipient.Recipient.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Recipient 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 Recipient to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Recipient that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/recipient#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 Recipient to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/registeredModel.csharp.md b/docs/registeredModel.csharp.md index 5d1f29bc4..913c4d926 100644 --- a/docs/registeredModel.csharp.md +++ b/docs/registeredModel.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.* | | ResetStorageLocation | *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. + +--- + ##### `ResetComment` ```csharp @@ -285,6 +346,7 @@ private void ResetStorageLocation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a RegisteredModel resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ RegisteredModel.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +RegisteredModel.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a RegisteredModel 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 RegisteredModel to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing RegisteredModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/registered_model#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 RegisteredModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/registeredModel.go.md b/docs/registeredModel.go.md index 08942a469..f83bd26c7 100644 --- a/docs/registeredModel.go.md +++ b/docs/registeredModel.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/registeredmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/registeredmodel" registeredmodel.NewRegisteredModel(scope Construct, id *string, config RegisteredModelConfig) RegisteredModel ``` @@ -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.* | | ResetStorageLocation | *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. + +--- + ##### `ResetComment` ```go @@ -285,13 +346,14 @@ func ResetStorageLocation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a RegisteredModel resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/registeredmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/registeredmodel" registeredmodel.RegisteredModel_IsConstruct(x interface{}) *bool ``` @@ -323,7 +385,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/registeredmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/registeredmodel" registeredmodel.RegisteredModel_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +399,7 @@ registeredmodel.RegisteredModel_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/registeredmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/registeredmodel" registeredmodel.RegisteredModel_IsTerraformResource(x interface{}) *bool ``` @@ -348,6 +410,50 @@ registeredmodel.RegisteredModel_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/registeredmodel" + +registeredmodel.RegisteredModel_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a RegisteredModel 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 RegisteredModel to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing RegisteredModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/registered_model#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 RegisteredModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -668,7 +774,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/registeredmodel" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/registeredmodel" ®isteredmodel.RegisteredModelConfig { Connection: interface{}, diff --git a/docs/registeredModel.java.md b/docs/registeredModel.java.md index f001c7950..a245a8efd 100644 --- a/docs/registeredModel.java.md +++ b/docs/registeredModel.java.md @@ -177,6 +177,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.* | @@ -186,7 +187,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.* | | resetStorageLocation | *No description.* | @@ -257,6 +260,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 @@ -365,6 +384,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 @@ -377,6 +415,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 @@ -402,6 +465,7 @@ public void resetStorageLocation() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a RegisteredModel resource upon running "cdktf plan ". | --- @@ -465,6 +529,50 @@ RegisteredModel.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.registered_model.RegisteredModel; + +RegisteredModel.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),RegisteredModel.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a RegisteredModel 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 RegisteredModel to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing RegisteredModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/registered_model#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 RegisteredModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/registeredModel.python.md b/docs/registeredModel.python.md index 280fc6772..9c3ec53f3 100644 --- a/docs/registeredModel.python.md +++ b/docs/registeredModel.python.md @@ -175,6 +175,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.* | @@ -184,7 +185,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_storage_location | *No description.* | @@ -260,6 +263,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 @@ -386,6 +407,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 @@ -400,6 +442,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 @@ -425,6 +494,7 @@ def reset_storage_location() -> 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 RegisteredModel resource upon running "cdktf plan ". | --- @@ -494,6 +564,55 @@ registeredModel.RegisteredModel.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import registered_model + +registeredModel.RegisteredModel.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a RegisteredModel 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 RegisteredModel to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing RegisteredModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/registered_model#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 RegisteredModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/registeredModel.typescript.md b/docs/registeredModel.typescript.md index 317a6276b..35dac4548 100644 --- a/docs/registeredModel.typescript.md +++ b/docs/registeredModel.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.* | | resetStorageLocation | *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. + +--- + ##### `resetComment` ```typescript @@ -285,6 +346,7 @@ public resetStorageLocation(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a RegisteredModel resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ registeredModel.RegisteredModel.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { registeredModel } from '@cdktf/provider-databricks' + +registeredModel.RegisteredModel.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a RegisteredModel 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 RegisteredModel to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing RegisteredModel that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/registered_model#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 RegisteredModel to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/repo.csharp.md b/docs/repo.csharp.md index ea578edd3..1f55cd51a 100644 --- a/docs/repo.csharp.md +++ b/docs/repo.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. | | PutSparseCheckout | *No description.* | | ResetBranch | *No description.* | | ResetCommitHash | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutSparseCheckout` ```csharp @@ -326,6 +387,7 @@ private void ResetTag() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Repo resource upon running "cdktf plan ". | --- @@ -389,6 +451,50 @@ Repo.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Repo.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Repo 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 Repo to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Repo that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/repo#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 Repo to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/repo.go.md b/docs/repo.go.md index 21d5fa0bc..d08319f41 100644 --- a/docs/repo.go.md +++ b/docs/repo.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/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" repo.NewRepo(scope Construct, id *string, config RepoConfig) Repo ``` @@ -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. | | PutSparseCheckout | *No description.* | | ResetBranch | *No description.* | | ResetCommitHash | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutSparseCheckout` ```go @@ -326,13 +387,14 @@ func ResetTag() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Repo resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" repo.Repo_IsConstruct(x interface{}) *bool ``` @@ -364,7 +426,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" repo.Repo_IsTerraformElement(x interface{}) *bool ``` @@ -378,7 +440,7 @@ repo.Repo_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" repo.Repo_IsTerraformResource(x interface{}) *bool ``` @@ -389,6 +451,50 @@ repo.Repo_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" + +repo.Repo_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Repo 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 Repo to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Repo that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/repo#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 Repo to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -753,7 +859,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" &repo.RepoConfig { Connection: interface{}, @@ -769,7 +875,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" GitProvider: *string, Id: *string, Path: *string, - SparseCheckout: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.repo.RepoSparseCheckout, + SparseCheckout: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.repo.RepoSparseCheckout, Tag: *string, } ``` @@ -972,7 +1078,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" &repo.RepoSparseCheckout { Patterns: *[]*string, @@ -1006,7 +1112,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/repo" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/repo" repo.NewRepoSparseCheckoutOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) RepoSparseCheckoutOutputReference ``` diff --git a/docs/repo.java.md b/docs/repo.java.md index 1af3fc35d..be3e5ef5e 100644 --- a/docs/repo.java.md +++ b/docs/repo.java.md @@ -199,6 +199,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.* | @@ -208,7 +209,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. | | putSparseCheckout | *No description.* | | resetBranch | *No description.* | | resetCommitHash | *No description.* | @@ -284,6 +287,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 @@ -392,6 +411,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 @@ -404,6 +442,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. + +--- + ##### `putSparseCheckout` ```java @@ -465,6 +528,7 @@ public void resetTag() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Repo resource upon running "cdktf plan ". | --- @@ -528,6 +592,50 @@ Repo.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.repo.Repo; + +Repo.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Repo.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Repo 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 Repo to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Repo that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/repo#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 Repo to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/repo.python.md b/docs/repo.python.md index fc535cce0..bbce1c311 100644 --- a/docs/repo.python.md +++ b/docs/repo.python.md @@ -197,6 +197,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.* | @@ -206,7 +207,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_sparse_checkout | *No description.* | | reset_branch | *No description.* | | reset_commit_hash | *No description.* | @@ -287,6 +290,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 @@ -413,6 +434,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 @@ -427,6 +469,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_sparse_checkout` ```python @@ -492,6 +561,7 @@ def reset_tag() -> 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 Repo resource upon running "cdktf plan ". | --- @@ -561,6 +631,55 @@ repo.Repo.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import repo + +repo.Repo.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Repo 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 Repo to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Repo that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/repo#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 Repo to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/repo.typescript.md b/docs/repo.typescript.md index 3b63944ac..7db7b852c 100644 --- a/docs/repo.typescript.md +++ b/docs/repo.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. | | putSparseCheckout | *No description.* | | resetBranch | *No description.* | | resetCommitHash | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `putSparseCheckout` ```typescript @@ -326,6 +387,7 @@ public resetTag(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Repo resource upon running "cdktf plan ". | --- @@ -389,6 +451,50 @@ repo.Repo.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { repo } from '@cdktf/provider-databricks' + +repo.Repo.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Repo 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 Repo to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Repo that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/repo#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 Repo to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/schema.csharp.md b/docs/schema.csharp.md index c1ebcc61a..267db610a 100644 --- a/docs/schema.csharp.md +++ b/docs/schema.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.* | | ResetForceDestroy | *No description.* | | ResetId | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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 @@ -313,6 +374,7 @@ private void ResetStorageRoot() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Schema resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ Schema.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Schema.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Schema 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 Schema to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Schema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/schema#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 Schema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/schema.go.md b/docs/schema.go.md index bb00251c6..c7e52444e 100644 --- a/docs/schema.go.md +++ b/docs/schema.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/schema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/schema" schema.NewSchema(scope Construct, id *string, config SchemaConfig) Schema ``` @@ -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.* | | ResetForceDestroy | *No description.* | | ResetId | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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 @@ -313,13 +374,14 @@ func ResetStorageRoot() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Schema resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/schema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/schema" schema.Schema_IsConstruct(x interface{}) *bool ``` @@ -351,7 +413,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/schema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/schema" schema.Schema_IsTerraformElement(x interface{}) *bool ``` @@ -365,7 +427,7 @@ schema.Schema_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/schema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/schema" schema.Schema_IsTerraformResource(x interface{}) *bool ``` @@ -376,6 +438,50 @@ schema.Schema_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/schema" + +schema.Schema_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Schema 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 Schema to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Schema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/schema#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 Schema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -762,7 +868,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/schema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/schema" &schema.SchemaConfig { Connection: interface{}, diff --git a/docs/schema.java.md b/docs/schema.java.md index f05cc7a42..dcd4ee229 100644 --- a/docs/schema.java.md +++ b/docs/schema.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.* | | resetForceDestroy | *No description.* | | resetId | *No description.* | @@ -292,6 +295,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 @@ -400,6 +419,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 @@ -412,6 +450,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 @@ -461,6 +524,7 @@ public void resetStorageRoot() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Schema resource upon running "cdktf plan ". | --- @@ -524,6 +588,50 @@ Schema.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.schema.Schema; + +Schema.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Schema.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Schema 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 Schema to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Schema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/schema#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 Schema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/schema.python.md b/docs/schema.python.md index 0a3e500ac..588b5fee4 100644 --- a/docs/schema.python.md +++ b/docs/schema.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_force_destroy | *No description.* | | reset_id | *No description.* | @@ -294,6 +297,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 @@ -420,6 +441,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 @@ -434,6 +476,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 @@ -483,6 +552,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 Schema resource upon running "cdktf plan ". | --- @@ -552,6 +622,55 @@ schema.Schema.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import schema + +schema.Schema.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Schema 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 Schema to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Schema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/schema#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 Schema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/schema.typescript.md b/docs/schema.typescript.md index ebef4ba57..50cd9d0c5 100644 --- a/docs/schema.typescript.md +++ b/docs/schema.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.* | | resetForceDestroy | *No description.* | | resetId | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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 @@ -313,6 +374,7 @@ public resetStorageRoot(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Schema resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ schema.Schema.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { schema } from '@cdktf/provider-databricks' + +schema.Schema.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Schema 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 Schema to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Schema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/schema#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 Schema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secret.csharp.md b/docs/secret.csharp.md index 222d1b951..08a093c82 100644 --- a/docs/secret.csharp.md +++ b/docs/secret.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 Secret resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ Secret.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Secret.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Secret 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 Secret to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Secret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret#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 Secret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secret.go.md b/docs/secret.go.md index be766a47c..e931e4784 100644 --- a/docs/secret.go.md +++ b/docs/secret.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/secret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secret" secret.NewSecret(scope Construct, id *string, config SecretConfig) Secret ``` @@ -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 Secret resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secret" secret.Secret_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secret" secret.Secret_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ secret.Secret_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secret" secret.Secret_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ secret.Secret_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secret" + +secret.Secret_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Secret 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 Secret to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Secret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret#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 Secret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -632,7 +738,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secret" &secret.SecretConfig { Connection: interface{}, diff --git a/docs/secret.java.md b/docs/secret.java.md index 222a029bd..750e87efe 100644 --- a/docs/secret.java.md +++ b/docs/secret.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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.* | --- @@ -235,6 +238,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 @@ -343,6 +362,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 @@ -355,6 +393,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 @@ -368,6 +431,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Secret resource upon running "cdktf plan ". | --- @@ -431,6 +495,50 @@ Secret.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.secret.Secret; + +Secret.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Secret.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Secret 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 Secret to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Secret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret#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 Secret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secret.python.md b/docs/secret.python.md index 08098a16b..bb353799c 100644 --- a/docs/secret.python.md +++ b/docs/secret.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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.* | --- @@ -238,6 +241,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 @@ -364,6 +385,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 @@ -378,6 +420,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 @@ -391,6 +460,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 Secret resource upon running "cdktf plan ". | --- @@ -460,6 +530,55 @@ secret.Secret.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import secret + +secret.Secret.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Secret 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 Secret to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Secret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret#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 Secret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secret.typescript.md b/docs/secret.typescript.md index a30d2bb5c..8d112c05b 100644 --- a/docs/secret.typescript.md +++ b/docs/secret.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 Secret resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ secret.Secret.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { secret } from '@cdktf/provider-databricks' + +secret.Secret.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Secret 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 Secret to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Secret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret#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 Secret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretAcl.csharp.md b/docs/secretAcl.csharp.md index 3f06e88fc..6c5c4b8e7 100644 --- a/docs/secretAcl.csharp.md +++ b/docs/secretAcl.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 SecretAcl resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ SecretAcl.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SecretAcl.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SecretAcl 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 SecretAcl to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SecretAcl that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_acl#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 SecretAcl to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretAcl.go.md b/docs/secretAcl.go.md index 3b5a2e2ba..af36f25ff 100644 --- a/docs/secretAcl.go.md +++ b/docs/secretAcl.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/secretacl" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretacl" secretacl.NewSecretAcl(scope Construct, id *string, config SecretAclConfig) SecretAcl ``` @@ -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 SecretAcl resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretacl" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretacl" secretacl.SecretAcl_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretacl" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretacl" secretacl.SecretAcl_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ secretacl.SecretAcl_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretacl" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretacl" secretacl.SecretAcl_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ secretacl.SecretAcl_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretacl" + +secretacl.SecretAcl_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SecretAcl 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 SecretAcl to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SecretAcl that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_acl#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 SecretAcl to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -610,7 +716,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretacl" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretacl" &secretacl.SecretAclConfig { Connection: interface{}, diff --git a/docs/secretAcl.java.md b/docs/secretAcl.java.md index 1d00cf1c5..15d043966 100644 --- a/docs/secretAcl.java.md +++ b/docs/secretAcl.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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.* | --- @@ -235,6 +238,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 @@ -343,6 +362,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 @@ -355,6 +393,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 @@ -368,6 +431,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SecretAcl resource upon running "cdktf plan ". | --- @@ -431,6 +495,50 @@ SecretAcl.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.secret_acl.SecretAcl; + +SecretAcl.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SecretAcl.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SecretAcl 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 SecretAcl to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SecretAcl that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_acl#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 SecretAcl to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretAcl.python.md b/docs/secretAcl.python.md index fc0da3728..01afe4d74 100644 --- a/docs/secretAcl.python.md +++ b/docs/secretAcl.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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.* | --- @@ -238,6 +241,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 @@ -364,6 +385,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 @@ -378,6 +420,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 @@ -391,6 +460,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 SecretAcl resource upon running "cdktf plan ". | --- @@ -460,6 +530,55 @@ secretAcl.SecretAcl.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import secret_acl + +secretAcl.SecretAcl.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SecretAcl 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 SecretAcl to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SecretAcl that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_acl#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 SecretAcl to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretAcl.typescript.md b/docs/secretAcl.typescript.md index fe57b7512..901b1422b 100644 --- a/docs/secretAcl.typescript.md +++ b/docs/secretAcl.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 SecretAcl resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ secretAcl.SecretAcl.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { secretAcl } from '@cdktf/provider-databricks' + +secretAcl.SecretAcl.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SecretAcl 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 SecretAcl to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SecretAcl that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_acl#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 SecretAcl to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretScope.csharp.md b/docs/secretScope.csharp.md index add2bb418..17df18ea1 100644 --- a/docs/secretScope.csharp.md +++ b/docs/secretScope.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. | | PutKeyvaultMetadata | *No description.* | | ResetBackendType | *No description.* | | ResetId | *No description.* | @@ -142,6 +145,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 @@ -250,6 +269,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 @@ -262,6 +299,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. + +--- + ##### `PutKeyvaultMetadata` ```csharp @@ -305,6 +366,7 @@ private void ResetKeyvaultMetadata() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SecretScope resource upon running "cdktf plan ". | --- @@ -368,6 +430,50 @@ SecretScope.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SecretScope.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SecretScope 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 SecretScope to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SecretScope that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_scope#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 SecretScope to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretScope.go.md b/docs/secretScope.go.md index 012709961..ad0aabcdb 100644 --- a/docs/secretScope.go.md +++ b/docs/secretScope.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/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" secretscope.NewSecretScope(scope Construct, id *string, config SecretScopeConfig) SecretScope ``` @@ -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. | | PutKeyvaultMetadata | *No description.* | | ResetBackendType | *No description.* | | ResetId | *No description.* | @@ -142,6 +145,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 @@ -250,6 +269,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 @@ -262,6 +299,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. + +--- + ##### `PutKeyvaultMetadata` ```go @@ -305,13 +366,14 @@ func ResetKeyvaultMetadata() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SecretScope resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" secretscope.SecretScope_IsConstruct(x interface{}) *bool ``` @@ -343,7 +405,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" secretscope.SecretScope_IsTerraformElement(x interface{}) *bool ``` @@ -357,7 +419,7 @@ secretscope.SecretScope_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" secretscope.SecretScope_IsTerraformResource(x interface{}) *bool ``` @@ -368,6 +430,50 @@ secretscope.SecretScope_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" + +secretscope.SecretScope_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SecretScope 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 SecretScope to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SecretScope that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_scope#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 SecretScope to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -666,7 +772,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" &secretscope.SecretScopeConfig { Connection: interface{}, @@ -680,7 +786,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope BackendType: *string, Id: *string, InitialManagePrincipal: *string, - KeyvaultMetadata: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.secretScope.SecretScopeKeyvaultMetadata, + KeyvaultMetadata: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.secretScope.SecretScopeKeyvaultMetadata, } ``` @@ -843,7 +949,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" &secretscope.SecretScopeKeyvaultMetadata { DnsName: *string, @@ -891,7 +997,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/secretscope" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/secretscope" secretscope.NewSecretScopeKeyvaultMetadataOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SecretScopeKeyvaultMetadataOutputReference ``` diff --git a/docs/secretScope.java.md b/docs/secretScope.java.md index 6eb11e94d..d3552a072 100644 --- a/docs/secretScope.java.md +++ b/docs/secretScope.java.md @@ -169,6 +169,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.* | @@ -178,7 +179,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. | | putKeyvaultMetadata | *No description.* | | resetBackendType | *No description.* | | resetId | *No description.* | @@ -251,6 +254,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 @@ -359,6 +378,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 @@ -371,6 +409,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. + +--- + ##### `putKeyvaultMetadata` ```java @@ -414,6 +477,7 @@ public void resetKeyvaultMetadata() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SecretScope resource upon running "cdktf plan ". | --- @@ -477,6 +541,50 @@ SecretScope.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.secret_scope.SecretScope; + +SecretScope.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SecretScope.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SecretScope 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 SecretScope to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SecretScope that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_scope#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 SecretScope to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretScope.python.md b/docs/secretScope.python.md index bb0652478..96bdf9fca 100644 --- a/docs/secretScope.python.md +++ b/docs/secretScope.python.md @@ -167,6 +167,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.* | @@ -176,7 +177,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_keyvault_metadata | *No description.* | | reset_backend_type | *No description.* | | reset_id | *No description.* | @@ -254,6 +257,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 @@ -380,6 +401,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 @@ -394,6 +436,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_keyvault_metadata` ```python @@ -450,6 +519,7 @@ def reset_keyvault_metadata() -> 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 SecretScope resource upon running "cdktf plan ". | --- @@ -519,6 +589,55 @@ secretScope.SecretScope.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import secret_scope + +secretScope.SecretScope.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SecretScope 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 SecretScope to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SecretScope that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_scope#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 SecretScope to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/secretScope.typescript.md b/docs/secretScope.typescript.md index 435e01cdb..4655717a3 100644 --- a/docs/secretScope.typescript.md +++ b/docs/secretScope.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. | | putKeyvaultMetadata | *No description.* | | resetBackendType | *No description.* | | resetId | *No description.* | @@ -142,6 +145,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 @@ -250,6 +269,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 @@ -262,6 +299,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. + +--- + ##### `putKeyvaultMetadata` ```typescript @@ -305,6 +366,7 @@ public resetKeyvaultMetadata(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SecretScope resource upon running "cdktf plan ". | --- @@ -368,6 +430,50 @@ secretScope.SecretScope.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { secretScope } from '@cdktf/provider-databricks' + +secretScope.SecretScope.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SecretScope 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 SecretScope to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SecretScope that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_scope#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 SecretScope to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipal.csharp.md b/docs/servicePrincipal.csharp.md index 9a68d1f3d..cafb94521 100644 --- a/docs/servicePrincipal.csharp.md +++ b/docs/servicePrincipal.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. | | ResetAclPrincipalId | *No description.* | | ResetActive | *No description.* | | ResetAllowClusterCreate | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `ResetAclPrincipalId` ```csharp @@ -376,6 +437,7 @@ private void ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ServicePrincipal resource upon running "cdktf plan ". | --- @@ -439,6 +501,50 @@ ServicePrincipal.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +ServicePrincipal.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a ServicePrincipal 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 ServicePrincipal to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing ServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal#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 ServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipal.go.md b/docs/servicePrincipal.go.md index 4a5c819ef..261ad193d 100644 --- a/docs/servicePrincipal.go.md +++ b/docs/servicePrincipal.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/serviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipal" serviceprincipal.NewServicePrincipal(scope Construct, id *string, config ServicePrincipalConfig) ServicePrincipal ``` @@ -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. | | ResetAclPrincipalId | *No description.* | | ResetActive | *No description.* | | ResetAllowClusterCreate | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `ResetAclPrincipalId` ```go @@ -376,13 +437,14 @@ func ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ServicePrincipal resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipal" serviceprincipal.ServicePrincipal_IsConstruct(x interface{}) *bool ``` @@ -414,7 +476,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipal" serviceprincipal.ServicePrincipal_IsTerraformElement(x interface{}) *bool ``` @@ -428,7 +490,7 @@ serviceprincipal.ServicePrincipal_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipal" serviceprincipal.ServicePrincipal_IsTerraformResource(x interface{}) *bool ``` @@ -439,6 +501,50 @@ serviceprincipal.ServicePrincipal_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipal" + +serviceprincipal.ServicePrincipal_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a ServicePrincipal 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 ServicePrincipal to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing ServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal#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 ServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -979,7 +1085,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipal" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipal" &serviceprincipal.ServicePrincipalConfig { Connection: interface{}, diff --git a/docs/servicePrincipal.java.md b/docs/servicePrincipal.java.md index ddd3bb611..54a44da0d 100644 --- a/docs/servicePrincipal.java.md +++ b/docs/servicePrincipal.java.md @@ -286,6 +286,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.* | @@ -295,7 +296,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. | | resetAclPrincipalId | *No description.* | | resetActive | *No description.* | | resetAllowClusterCreate | *No description.* | @@ -379,6 +382,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 @@ -487,6 +506,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 @@ -499,6 +537,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. + +--- + ##### `resetAclPrincipalId` ```java @@ -602,6 +665,7 @@ public void resetWorkspaceAccess() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ServicePrincipal resource upon running "cdktf plan ". | --- @@ -665,6 +729,50 @@ ServicePrincipal.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.service_principal.ServicePrincipal; + +ServicePrincipal.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ServicePrincipal.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a ServicePrincipal 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 ServicePrincipal to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing ServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal#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 ServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipal.python.md b/docs/servicePrincipal.python.md index f15d6dcda..f68b9e92b 100644 --- a/docs/servicePrincipal.python.md +++ b/docs/servicePrincipal.python.md @@ -275,6 +275,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.* | @@ -284,7 +285,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_acl_principal_id | *No description.* | | reset_active | *No description.* | | reset_allow_cluster_create | *No description.* | @@ -373,6 +376,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 @@ -499,6 +520,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 @@ -513,6 +555,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_acl_principal_id` ```python @@ -616,6 +685,7 @@ def reset_workspace_access() -> 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 ServicePrincipal resource upon running "cdktf plan ". | --- @@ -685,6 +755,55 @@ servicePrincipal.ServicePrincipal.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import service_principal + +servicePrincipal.ServicePrincipal.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a ServicePrincipal 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 ServicePrincipal to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing ServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal#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 ServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipal.typescript.md b/docs/servicePrincipal.typescript.md index 853455870..7f59bf9b3 100644 --- a/docs/servicePrincipal.typescript.md +++ b/docs/servicePrincipal.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. | | resetAclPrincipalId | *No description.* | | resetActive | *No description.* | | resetAllowClusterCreate | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `resetAclPrincipalId` ```typescript @@ -376,6 +437,7 @@ public resetWorkspaceAccess(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ServicePrincipal resource upon running "cdktf plan ". | --- @@ -439,6 +501,50 @@ servicePrincipal.ServicePrincipal.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { servicePrincipal } from '@cdktf/provider-databricks' + +servicePrincipal.ServicePrincipal.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a ServicePrincipal 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 ServicePrincipal to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing ServicePrincipal that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal#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 ServicePrincipal to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalRole.csharp.md b/docs/servicePrincipalRole.csharp.md index 95f192a83..6173febcb 100644 --- a/docs/servicePrincipalRole.csharp.md +++ b/docs/servicePrincipalRole.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 ServicePrincipalRole resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ ServicePrincipalRole.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +ServicePrincipalRole.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a ServicePrincipalRole 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 ServicePrincipalRole to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing ServicePrincipalRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_role#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 ServicePrincipalRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalRole.go.md b/docs/servicePrincipalRole.go.md index efa518fa8..1adca7e48 100644 --- a/docs/servicePrincipalRole.go.md +++ b/docs/servicePrincipalRole.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/serviceprincipalrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalrole" serviceprincipalrole.NewServicePrincipalRole(scope Construct, id *string, config ServicePrincipalRoleConfig) ServicePrincipalRole ``` @@ -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 ServicePrincipalRole resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalrole" serviceprincipalrole.ServicePrincipalRole_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalrole" serviceprincipalrole.ServicePrincipalRole_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ serviceprincipalrole.ServicePrincipalRole_IsTerraformElement(x interface{}) *boo ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalrole" serviceprincipalrole.ServicePrincipalRole_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ serviceprincipalrole.ServicePrincipalRole_IsTerraformResource(x interface{}) *bo --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalrole" + +serviceprincipalrole.ServicePrincipalRole_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a ServicePrincipalRole 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 ServicePrincipalRole to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing ServicePrincipalRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_role#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 ServicePrincipalRole 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/serviceprincipalrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalrole" &serviceprincipalrole.ServicePrincipalRoleConfig { Connection: interface{}, diff --git a/docs/servicePrincipalRole.java.md b/docs/servicePrincipalRole.java.md index db3124960..d367cbe9d 100644 --- a/docs/servicePrincipalRole.java.md +++ b/docs/servicePrincipalRole.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 ServicePrincipalRole resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ ServicePrincipalRole.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.service_principal_role.ServicePrincipalRole; + +ServicePrincipalRole.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ServicePrincipalRole.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a ServicePrincipalRole 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 ServicePrincipalRole to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing ServicePrincipalRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_role#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 ServicePrincipalRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalRole.python.md b/docs/servicePrincipalRole.python.md index 0087f06b8..9b5ef3140 100644 --- a/docs/servicePrincipalRole.python.md +++ b/docs/servicePrincipalRole.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 ServicePrincipalRole resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ servicePrincipalRole.ServicePrincipalRole.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import service_principal_role + +servicePrincipalRole.ServicePrincipalRole.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a ServicePrincipalRole 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 ServicePrincipalRole to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing ServicePrincipalRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_role#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 ServicePrincipalRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalRole.typescript.md b/docs/servicePrincipalRole.typescript.md index dc67c2b9e..af10cb498 100644 --- a/docs/servicePrincipalRole.typescript.md +++ b/docs/servicePrincipalRole.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 ServicePrincipalRole resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ servicePrincipalRole.ServicePrincipalRole.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { servicePrincipalRole } from '@cdktf/provider-databricks' + +servicePrincipalRole.ServicePrincipalRole.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a ServicePrincipalRole 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 ServicePrincipalRole to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing ServicePrincipalRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_role#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 ServicePrincipalRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalSecret.csharp.md b/docs/servicePrincipalSecret.csharp.md index 81acfd6c3..f49d4a85d 100644 --- a/docs/servicePrincipalSecret.csharp.md +++ b/docs/servicePrincipalSecret.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.* | | ResetSecret | *No description.* | | ResetStatus | *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. + +--- + ##### `ResetId` ```csharp @@ -285,6 +346,7 @@ private void ResetStatus() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ServicePrincipalSecret resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ ServicePrincipalSecret.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +ServicePrincipalSecret.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a ServicePrincipalSecret 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 ServicePrincipalSecret to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing ServicePrincipalSecret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_secret#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 ServicePrincipalSecret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalSecret.go.md b/docs/servicePrincipalSecret.go.md index e97cb128d..25a1302ab 100644 --- a/docs/servicePrincipalSecret.go.md +++ b/docs/servicePrincipalSecret.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/serviceprincipalsecret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalsecret" serviceprincipalsecret.NewServicePrincipalSecret(scope Construct, id *string, config ServicePrincipalSecretConfig) ServicePrincipalSecret ``` @@ -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.* | | ResetSecret | *No description.* | | ResetStatus | *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. + +--- + ##### `ResetId` ```go @@ -285,13 +346,14 @@ func ResetStatus() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a ServicePrincipalSecret resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalsecret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalsecret" serviceprincipalsecret.ServicePrincipalSecret_IsConstruct(x interface{}) *bool ``` @@ -323,7 +385,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalsecret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalsecret" serviceprincipalsecret.ServicePrincipalSecret_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +399,7 @@ serviceprincipalsecret.ServicePrincipalSecret_IsTerraformElement(x interface{}) ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalsecret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalsecret" serviceprincipalsecret.ServicePrincipalSecret_IsTerraformResource(x interface{}) *bool ``` @@ -348,6 +410,50 @@ serviceprincipalsecret.ServicePrincipalSecret_IsTerraformResource(x interface{}) --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalsecret" + +serviceprincipalsecret.ServicePrincipalSecret_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a ServicePrincipalSecret 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 ServicePrincipalSecret to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing ServicePrincipalSecret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_secret#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 ServicePrincipalSecret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -624,7 +730,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/serviceprincipalsecret" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/serviceprincipalsecret" &serviceprincipalsecret.ServicePrincipalSecretConfig { Connection: interface{}, diff --git a/docs/servicePrincipalSecret.java.md b/docs/servicePrincipalSecret.java.md index 0c00c53b2..441e970c7 100644 --- a/docs/servicePrincipalSecret.java.md +++ b/docs/servicePrincipalSecret.java.md @@ -157,6 +157,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.* | @@ -166,7 +167,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. | | resetId | *No description.* | | resetSecret | *No description.* | | resetStatus | *No description.* | @@ -237,6 +240,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 @@ -345,6 +364,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 @@ -357,6 +395,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 @@ -382,6 +445,7 @@ public void resetStatus() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ServicePrincipalSecret resource upon running "cdktf plan ". | --- @@ -445,6 +509,50 @@ ServicePrincipalSecret.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.service_principal_secret.ServicePrincipalSecret; + +ServicePrincipalSecret.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),ServicePrincipalSecret.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a ServicePrincipalSecret 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 ServicePrincipalSecret to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing ServicePrincipalSecret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_secret#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 ServicePrincipalSecret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalSecret.python.md b/docs/servicePrincipalSecret.python.md index b03aaeb68..6d2f1fadd 100644 --- a/docs/servicePrincipalSecret.python.md +++ b/docs/servicePrincipalSecret.python.md @@ -155,6 +155,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.* | @@ -164,7 +165,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_id | *No description.* | | reset_secret | *No description.* | | reset_status | *No description.* | @@ -240,6 +243,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 @@ -366,6 +387,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 @@ -380,6 +422,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 @@ -405,6 +474,7 @@ def reset_status() -> 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 ServicePrincipalSecret resource upon running "cdktf plan ". | --- @@ -474,6 +544,55 @@ servicePrincipalSecret.ServicePrincipalSecret.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import service_principal_secret + +servicePrincipalSecret.ServicePrincipalSecret.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a ServicePrincipalSecret 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 ServicePrincipalSecret to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing ServicePrincipalSecret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_secret#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 ServicePrincipalSecret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/servicePrincipalSecret.typescript.md b/docs/servicePrincipalSecret.typescript.md index 34d1b6dd4..8c6e8fa62 100644 --- a/docs/servicePrincipalSecret.typescript.md +++ b/docs/servicePrincipalSecret.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.* | | resetSecret | *No description.* | | resetStatus | *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. + +--- + ##### `resetId` ```typescript @@ -285,6 +346,7 @@ public resetStatus(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a ServicePrincipalSecret resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ servicePrincipalSecret.ServicePrincipalSecret.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { servicePrincipalSecret } from '@cdktf/provider-databricks' + +servicePrincipalSecret.ServicePrincipalSecret.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a ServicePrincipalSecret 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 ServicePrincipalSecret to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing ServicePrincipalSecret that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_secret#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 ServicePrincipalSecret to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/share.csharp.md b/docs/share.csharp.md index b5f2109b9..0dd5304a9 100644 --- a/docs/share.csharp.md +++ b/docs/share.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. | | PutObject | *No description.* | | ResetCreatedAt | *No description.* | | ResetCreatedBy | *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. + +--- + ##### `PutObject` ```csharp @@ -312,6 +373,7 @@ private void ResetOwner() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Share resource upon running "cdktf plan ". | --- @@ -375,6 +437,50 @@ Share.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Share.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Share 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 Share to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Share that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/share#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 Share to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/share.go.md b/docs/share.go.md index 6aa0069b5..673a6ba55 100644 --- a/docs/share.go.md +++ b/docs/share.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/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShare(scope Construct, id *string, config ShareConfig) Share ``` @@ -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. | | PutObject | *No description.* | | ResetCreatedAt | *No description.* | | ResetCreatedBy | *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. + +--- + ##### `PutObject` ```go @@ -312,13 +373,14 @@ func ResetOwner() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Share resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.Share_IsConstruct(x interface{}) *bool ``` @@ -350,7 +412,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.Share_IsTerraformElement(x interface{}) *bool ``` @@ -364,7 +426,7 @@ share.Share_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.Share_IsTerraformResource(x interface{}) *bool ``` @@ -375,6 +437,50 @@ share.Share_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" + +share.Share_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Share 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 Share to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Share that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/share#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 Share to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -695,7 +801,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" &share.ShareConfig { Connection: interface{}, @@ -886,7 +992,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" &share.ShareObject { DataObjectType: *string, @@ -1060,7 +1166,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" &share.ShareObjectPartition { Value: interface{}, @@ -1094,7 +1200,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" &share.ShareObjectPartitionValue { Name: *string, @@ -1170,7 +1276,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShareObjectList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ShareObjectList ``` @@ -1313,7 +1419,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShareObjectOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ShareObjectOutputReference ``` @@ -1898,7 +2004,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShareObjectPartitionList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ShareObjectPartitionList ``` @@ -2041,7 +2147,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShareObjectPartitionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ShareObjectPartitionOutputReference ``` @@ -2343,7 +2449,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShareObjectPartitionValueList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ShareObjectPartitionValueList ``` @@ -2486,7 +2592,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/share" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/share" share.NewShareObjectPartitionValueOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ShareObjectPartitionValueOutputReference ``` diff --git a/docs/share.java.md b/docs/share.java.md index 3589b7f78..d56c7076e 100644 --- a/docs/share.java.md +++ b/docs/share.java.md @@ -180,6 +180,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.* | @@ -189,7 +190,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. | | putObject | *No description.* | | resetCreatedAt | *No description.* | | resetCreatedBy | *No description.* | @@ -263,6 +266,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 @@ -371,6 +390,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 @@ -383,6 +421,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. + +--- + ##### `putObject` ```java @@ -432,6 +495,7 @@ public void resetOwner() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Share resource upon running "cdktf plan ". | --- @@ -495,6 +559,50 @@ Share.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.share.Share; + +Share.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Share.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Share 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 Share to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Share that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/share#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 Share to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/share.python.md b/docs/share.python.md index 19b5330b7..f7ba20444 100644 --- a/docs/share.python.md +++ b/docs/share.python.md @@ -177,6 +177,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.* | @@ -186,7 +187,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_object | *No description.* | | reset_created_at | *No description.* | | reset_created_by | *No description.* | @@ -265,6 +268,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 @@ -391,6 +412,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 @@ -405,6 +447,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_object` ```python @@ -456,6 +525,7 @@ def reset_owner() -> 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 Share resource upon running "cdktf plan ". | --- @@ -525,6 +595,55 @@ share.Share.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import share + +share.Share.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Share 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 Share to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Share that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/share#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 Share to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/share.typescript.md b/docs/share.typescript.md index 595e73070..ac5d313a0 100644 --- a/docs/share.typescript.md +++ b/docs/share.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. | | putObject | *No description.* | | resetCreatedAt | *No description.* | | resetCreatedBy | *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. + +--- + ##### `putObject` ```typescript @@ -312,6 +373,7 @@ public resetOwner(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Share resource upon running "cdktf plan ". | --- @@ -375,6 +437,50 @@ share.Share.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { share } from '@cdktf/provider-databricks' + +share.Share.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Share 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 Share to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Share that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/share#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 Share to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlAlert.csharp.md b/docs/sqlAlert.csharp.md index 39f8b11fe..658da1696 100644 --- a/docs/sqlAlert.csharp.md +++ b/docs/sqlAlert.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. | | PutOptions | *No description.* | | ResetCreatedAt | *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. + +--- + ##### `PutOptions` ```csharp @@ -312,6 +373,7 @@ private void ResetUpdatedAt() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlAlert resource upon running "cdktf plan ". | --- @@ -375,6 +437,50 @@ SqlAlert.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlAlert.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlAlert 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 SqlAlert to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlAlert that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_alert#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 SqlAlert to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlAlert.go.md b/docs/sqlAlert.go.md index 388a70ecc..21ca4e8d5 100644 --- a/docs/sqlAlert.go.md +++ b/docs/sqlAlert.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/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" sqlalert.NewSqlAlert(scope Construct, id *string, config SqlAlertConfig) SqlAlert ``` @@ -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. | | PutOptions | *No description.* | | ResetCreatedAt | *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. + +--- + ##### `PutOptions` ```go @@ -312,13 +373,14 @@ func ResetUpdatedAt() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlAlert resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" sqlalert.SqlAlert_IsConstruct(x interface{}) *bool ``` @@ -350,7 +412,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" sqlalert.SqlAlert_IsTerraformElement(x interface{}) *bool ``` @@ -364,7 +426,7 @@ sqlalert.SqlAlert_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" sqlalert.SqlAlert_IsTerraformResource(x interface{}) *bool ``` @@ -375,6 +437,50 @@ sqlalert.SqlAlert_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" + +sqlalert.SqlAlert_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlAlert 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 SqlAlert to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlAlert that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_alert#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 SqlAlert to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -739,7 +845,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" &sqlalert.SqlAlertConfig { Connection: interface{}, @@ -750,7 +856,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlalert" Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider, Provisioners: *[]interface{}, Name: *string, - Options: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlAlert.SqlAlertOptions, + Options: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlAlert.SqlAlertOptions, QueryId: *string, CreatedAt: *string, Id: *string, @@ -958,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/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" &sqlalert.SqlAlertOptions { Column: *string, @@ -1076,7 +1182,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlalert" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlalert" sqlalert.NewSqlAlertOptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlAlertOptionsOutputReference ``` diff --git a/docs/sqlAlert.java.md b/docs/sqlAlert.java.md index 27a7a6e3a..643f7a4b1 100644 --- a/docs/sqlAlert.java.md +++ b/docs/sqlAlert.java.md @@ -199,6 +199,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.* | @@ -208,7 +209,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. | | putOptions | *No description.* | | resetCreatedAt | *No description.* | | resetId | *No description.* | @@ -282,6 +285,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 @@ -390,6 +409,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 @@ -402,6 +440,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. + +--- + ##### `putOptions` ```java @@ -451,6 +514,7 @@ public void resetUpdatedAt() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlAlert resource upon running "cdktf plan ". | --- @@ -514,6 +578,50 @@ SqlAlert.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_alert.SqlAlert; + +SqlAlert.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlAlert.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlAlert 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 SqlAlert to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlAlert that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_alert#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 SqlAlert to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlAlert.python.md b/docs/sqlAlert.python.md index 0c2f3d8de..a4a90f665 100644 --- a/docs/sqlAlert.python.md +++ b/docs/sqlAlert.python.md @@ -197,6 +197,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.* | @@ -206,7 +207,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_options | *No description.* | | reset_created_at | *No description.* | | reset_id | *No description.* | @@ -285,6 +288,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 @@ -411,6 +432,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 @@ -425,6 +467,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_options` ```python @@ -532,6 +601,7 @@ def reset_updated_at() -> 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 SqlAlert resource upon running "cdktf plan ". | --- @@ -601,6 +671,55 @@ sqlAlert.SqlAlert.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_alert + +sqlAlert.SqlAlert.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlAlert 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 SqlAlert to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlAlert that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_alert#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 SqlAlert to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlAlert.typescript.md b/docs/sqlAlert.typescript.md index 3dfea135f..7922b5dc2 100644 --- a/docs/sqlAlert.typescript.md +++ b/docs/sqlAlert.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. | | putOptions | *No description.* | | resetCreatedAt | *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. + +--- + ##### `putOptions` ```typescript @@ -312,6 +373,7 @@ public resetUpdatedAt(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlAlert resource upon running "cdktf plan ". | --- @@ -375,6 +437,50 @@ sqlAlert.SqlAlert.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlAlert } from '@cdktf/provider-databricks' + +sqlAlert.SqlAlert.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlAlert 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 SqlAlert to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlAlert that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_alert#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 SqlAlert to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlDashboard.csharp.md b/docs/sqlDashboard.csharp.md index f8eb88633..7aafe0b60 100644 --- a/docs/sqlDashboard.csharp.md +++ b/docs/sqlDashboard.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. | | ResetCreatedAt | *No description.* | | ResetDashboardFiltersEnabled | *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. + +--- + ##### `ResetCreatedAt` ```csharp @@ -306,6 +367,7 @@ private void ResetUpdatedAt() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlDashboard resource upon running "cdktf plan ". | --- @@ -369,6 +431,50 @@ SqlDashboard.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlDashboard.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlDashboard 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 SqlDashboard to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlDashboard that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_dashboard#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 SqlDashboard to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlDashboard.go.md b/docs/sqlDashboard.go.md index ef34bcb06..0888a6bb3 100644 --- a/docs/sqlDashboard.go.md +++ b/docs/sqlDashboard.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/sqldashboard" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqldashboard" sqldashboard.NewSqlDashboard(scope Construct, id *string, config SqlDashboardConfig) SqlDashboard ``` @@ -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. | | ResetCreatedAt | *No description.* | | ResetDashboardFiltersEnabled | *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. + +--- + ##### `ResetCreatedAt` ```go @@ -306,13 +367,14 @@ func ResetUpdatedAt() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlDashboard resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqldashboard" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqldashboard" sqldashboard.SqlDashboard_IsConstruct(x interface{}) *bool ``` @@ -344,7 +406,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqldashboard" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqldashboard" sqldashboard.SqlDashboard_IsTerraformElement(x interface{}) *bool ``` @@ -358,7 +420,7 @@ sqldashboard.SqlDashboard_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqldashboard" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqldashboard" sqldashboard.SqlDashboard_IsTerraformResource(x interface{}) *bool ``` @@ -369,6 +431,50 @@ sqldashboard.SqlDashboard_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqldashboard" + +sqldashboard.SqlDashboard_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlDashboard 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 SqlDashboard to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlDashboard that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_dashboard#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 SqlDashboard to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -711,7 +817,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqldashboard" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqldashboard" &sqldashboard.SqlDashboardConfig { Connection: interface{}, diff --git a/docs/sqlDashboard.java.md b/docs/sqlDashboard.java.md index d68e3e233..d8b947e96 100644 --- a/docs/sqlDashboard.java.md +++ b/docs/sqlDashboard.java.md @@ -188,6 +188,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.* | @@ -197,7 +198,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. | | resetCreatedAt | *No description.* | | resetDashboardFiltersEnabled | *No description.* | | resetId | *No description.* | @@ -271,6 +274,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 @@ -379,6 +398,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 @@ -391,6 +429,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. + +--- + ##### `resetCreatedAt` ```java @@ -434,6 +497,7 @@ public void resetUpdatedAt() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlDashboard resource upon running "cdktf plan ". | --- @@ -497,6 +561,50 @@ SqlDashboard.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_dashboard.SqlDashboard; + +SqlDashboard.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlDashboard.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlDashboard 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 SqlDashboard to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlDashboard that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_dashboard#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 SqlDashboard to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlDashboard.python.md b/docs/sqlDashboard.python.md index 3d1e4e189..2583739cd 100644 --- a/docs/sqlDashboard.python.md +++ b/docs/sqlDashboard.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_created_at | *No description.* | | reset_dashboard_filters_enabled | *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_created_at` ```python @@ -456,6 +525,7 @@ def reset_updated_at() -> 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 SqlDashboard resource upon running "cdktf plan ". | --- @@ -525,6 +595,55 @@ sqlDashboard.SqlDashboard.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_dashboard + +sqlDashboard.SqlDashboard.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlDashboard 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 SqlDashboard to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlDashboard that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_dashboard#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 SqlDashboard to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlDashboard.typescript.md b/docs/sqlDashboard.typescript.md index 877c96d31..76c865b38 100644 --- a/docs/sqlDashboard.typescript.md +++ b/docs/sqlDashboard.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. | | resetCreatedAt | *No description.* | | resetDashboardFiltersEnabled | *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. + +--- + ##### `resetCreatedAt` ```typescript @@ -306,6 +367,7 @@ public resetUpdatedAt(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlDashboard resource upon running "cdktf plan ". | --- @@ -369,6 +431,50 @@ sqlDashboard.SqlDashboard.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlDashboard } from '@cdktf/provider-databricks' + +sqlDashboard.SqlDashboard.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlDashboard 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 SqlDashboard to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlDashboard that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_dashboard#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 SqlDashboard to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlEndpoint.csharp.md b/docs/sqlEndpoint.csharp.md index b61ec53c5..6290e48dd 100644 --- a/docs/sqlEndpoint.csharp.md +++ b/docs/sqlEndpoint.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. | | PutChannel | *No description.* | | PutOdbcParams | *No description.* | | PutTags | *No description.* | @@ -158,6 +161,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 @@ -266,6 +285,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 @@ -278,6 +315,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. + +--- + ##### `PutChannel` ```csharp @@ -435,6 +496,7 @@ private void ResetWarehouseType() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlEndpoint resource upon running "cdktf plan ". | --- @@ -498,6 +560,50 @@ SqlEndpoint.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlEndpoint.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlEndpoint 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 SqlEndpoint to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_endpoint#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 SqlEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlEndpoint.go.md b/docs/sqlEndpoint.go.md index e1698234f..615882e2f 100644 --- a/docs/sqlEndpoint.go.md +++ b/docs/sqlEndpoint.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/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpoint(scope Construct, id *string, config SqlEndpointConfig) SqlEndpoint ``` @@ -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. | | PutChannel | *No description.* | | PutOdbcParams | *No description.* | | PutTags | *No description.* | @@ -158,6 +161,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 @@ -266,6 +285,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 @@ -278,6 +315,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. + +--- + ##### `PutChannel` ```go @@ -435,13 +496,14 @@ func ResetWarehouseType() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlEndpoint resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.SqlEndpoint_IsConstruct(x interface{}) *bool ``` @@ -473,7 +535,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.SqlEndpoint_IsTerraformElement(x interface{}) *bool ``` @@ -487,7 +549,7 @@ sqlendpoint.SqlEndpoint_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.SqlEndpoint_IsTerraformResource(x interface{}) *bool ``` @@ -498,6 +560,50 @@ sqlendpoint.SqlEndpoint_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" + +sqlendpoint.SqlEndpoint_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlEndpoint 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 SqlEndpoint to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_endpoint#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 SqlEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -1104,7 +1210,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" &sqlendpoint.SqlEndpointChannel { Name: *string, @@ -1136,7 +1242,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" &sqlendpoint.SqlEndpointConfig { Connection: interface{}, @@ -1149,7 +1255,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint ClusterSize: *string, Name: *string, AutoStopMins: *f64, - Channel: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlEndpoint.SqlEndpointChannel, + Channel: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlEndpoint.SqlEndpointChannel, DataSourceId: *string, EnablePhoton: interface{}, EnableServerlessCompute: interface{}, @@ -1159,11 +1265,11 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint MaxNumClusters: *f64, MinNumClusters: *f64, NumClusters: *f64, - OdbcParams: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlEndpoint.SqlEndpointOdbcParams, + OdbcParams: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlEndpoint.SqlEndpointOdbcParams, SpotInstancePolicy: *string, State: *string, - Tags: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlEndpoint.SqlEndpointTags, - Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlEndpoint.SqlEndpointTimeouts, + Tags: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlEndpoint.SqlEndpointTags, + Timeouts: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlEndpoint.SqlEndpointTimeouts, WarehouseType: *string, } ``` @@ -1515,7 +1621,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" &sqlendpoint.SqlEndpointOdbcParams { Path: *string, @@ -1603,7 +1709,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" &sqlendpoint.SqlEndpointTags { CustomTags: interface{}, @@ -1637,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/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" &sqlendpoint.SqlEndpointTagsCustomTags { Key: *string, @@ -1683,7 +1789,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" &sqlendpoint.SqlEndpointTimeouts { Create: *string, @@ -1717,7 +1823,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpointChannelOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlEndpointChannelOutputReference ``` @@ -1995,7 +2101,7 @@ func InternalValue() SqlEndpointChannel #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpointOdbcParamsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlEndpointOdbcParamsOutputReference ``` @@ -2368,7 +2474,7 @@ func InternalValue() SqlEndpointOdbcParams #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpointTagsCustomTagsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlEndpointTagsCustomTagsList ``` @@ -2511,7 +2617,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpointTagsCustomTagsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) SqlEndpointTagsCustomTagsOutputReference ``` @@ -2822,7 +2928,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpointTagsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlEndpointTagsOutputReference ``` @@ -3106,7 +3212,7 @@ func InternalValue() SqlEndpointTags #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlendpoint" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlendpoint" sqlendpoint.NewSqlEndpointTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlEndpointTimeoutsOutputReference ``` diff --git a/docs/sqlEndpoint.java.md b/docs/sqlEndpoint.java.md index 04281de88..34769982a 100644 --- a/docs/sqlEndpoint.java.md +++ b/docs/sqlEndpoint.java.md @@ -317,6 +317,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.* | @@ -326,7 +327,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. | | putChannel | *No description.* | | putOdbcParams | *No description.* | | putTags | *No description.* | @@ -415,6 +418,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 @@ -523,6 +542,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 @@ -535,6 +573,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. + +--- + ##### `putChannel` ```java @@ -692,6 +755,7 @@ public void resetWarehouseType() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlEndpoint resource upon running "cdktf plan ". | --- @@ -755,6 +819,50 @@ SqlEndpoint.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_endpoint.SqlEndpoint; + +SqlEndpoint.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlEndpoint.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlEndpoint 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 SqlEndpoint to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_endpoint#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 SqlEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlEndpoint.python.md b/docs/sqlEndpoint.python.md index af179fa15..2d0e8e758 100644 --- a/docs/sqlEndpoint.python.md +++ b/docs/sqlEndpoint.python.md @@ -313,6 +313,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.* | @@ -322,7 +323,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_channel | *No description.* | | put_odbc_params | *No description.* | | put_tags | *No description.* | @@ -416,6 +419,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 @@ -542,6 +563,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 @@ -556,6 +598,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_channel` ```python @@ -767,6 +836,7 @@ def reset_warehouse_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 SqlEndpoint resource upon running "cdktf plan ". | --- @@ -836,6 +906,55 @@ sqlEndpoint.SqlEndpoint.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_endpoint + +sqlEndpoint.SqlEndpoint.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlEndpoint 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 SqlEndpoint to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_endpoint#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 SqlEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlEndpoint.typescript.md b/docs/sqlEndpoint.typescript.md index 7e390b060..7280f9ce9 100644 --- a/docs/sqlEndpoint.typescript.md +++ b/docs/sqlEndpoint.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. | | putChannel | *No description.* | | putOdbcParams | *No description.* | | putTags | *No description.* | @@ -158,6 +161,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 @@ -266,6 +285,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 @@ -278,6 +315,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. + +--- + ##### `putChannel` ```typescript @@ -435,6 +496,7 @@ public resetWarehouseType(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlEndpoint resource upon running "cdktf plan ". | --- @@ -498,6 +560,50 @@ sqlEndpoint.SqlEndpoint.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlEndpoint } from '@cdktf/provider-databricks' + +sqlEndpoint.SqlEndpoint.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlEndpoint 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 SqlEndpoint to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlEndpoint that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_endpoint#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 SqlEndpoint to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlGlobalConfig.csharp.md b/docs/sqlGlobalConfig.csharp.md index 54a99d709..2ab80c7f7 100644 --- a/docs/sqlGlobalConfig.csharp.md +++ b/docs/sqlGlobalConfig.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. | | ResetDataAccessConfig | *No description.* | | ResetEnableServerlessCompute | *No description.* | | ResetGoogleServiceAccount | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `ResetDataAccessConfig` ```csharp @@ -313,6 +374,7 @@ private void ResetSqlConfigParams() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlGlobalConfig resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ SqlGlobalConfig.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlGlobalConfig.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlGlobalConfig 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 SqlGlobalConfig to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlGlobalConfig that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_global_config#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 SqlGlobalConfig to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlGlobalConfig.go.md b/docs/sqlGlobalConfig.go.md index 0c13d40f4..7b9db93cf 100644 --- a/docs/sqlGlobalConfig.go.md +++ b/docs/sqlGlobalConfig.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/sqlglobalconfig" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlglobalconfig" sqlglobalconfig.NewSqlGlobalConfig(scope Construct, id *string, config SqlGlobalConfigConfig) SqlGlobalConfig ``` @@ -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. | | ResetDataAccessConfig | *No description.* | | ResetEnableServerlessCompute | *No description.* | | ResetGoogleServiceAccount | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `ResetDataAccessConfig` ```go @@ -313,13 +374,14 @@ func ResetSqlConfigParams() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlGlobalConfig resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlglobalconfig" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlglobalconfig" sqlglobalconfig.SqlGlobalConfig_IsConstruct(x interface{}) *bool ``` @@ -351,7 +413,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlglobalconfig" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlglobalconfig" sqlglobalconfig.SqlGlobalConfig_IsTerraformElement(x interface{}) *bool ``` @@ -365,7 +427,7 @@ sqlglobalconfig.SqlGlobalConfig_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlglobalconfig" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlglobalconfig" sqlglobalconfig.SqlGlobalConfig_IsTerraformResource(x interface{}) *bool ``` @@ -376,6 +438,50 @@ sqlglobalconfig.SqlGlobalConfig_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlglobalconfig" + +sqlglobalconfig.SqlGlobalConfig_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlGlobalConfig 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 SqlGlobalConfig to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlGlobalConfig that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_global_config#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 SqlGlobalConfig to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -718,7 +824,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlglobalconfig" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlglobalconfig" &sqlglobalconfig.SqlGlobalConfigConfig { Connection: interface{}, diff --git a/docs/sqlGlobalConfig.java.md b/docs/sqlGlobalConfig.java.md index 3bea160b1..a1bb5ee14 100644 --- a/docs/sqlGlobalConfig.java.md +++ b/docs/sqlGlobalConfig.java.md @@ -188,6 +188,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.* | @@ -197,7 +198,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. | | resetDataAccessConfig | *No description.* | | resetEnableServerlessCompute | *No description.* | | resetGoogleServiceAccount | *No description.* | @@ -272,6 +275,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 @@ -380,6 +399,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 @@ -392,6 +430,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. + +--- + ##### `resetDataAccessConfig` ```java @@ -441,6 +504,7 @@ public void resetSqlConfigParams() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlGlobalConfig resource upon running "cdktf plan ". | --- @@ -504,6 +568,50 @@ SqlGlobalConfig.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_global_config.SqlGlobalConfig; + +SqlGlobalConfig.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlGlobalConfig.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlGlobalConfig 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 SqlGlobalConfig to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlGlobalConfig that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_global_config#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 SqlGlobalConfig to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlGlobalConfig.python.md b/docs/sqlGlobalConfig.python.md index c83c42e29..8586e785a 100644 --- a/docs/sqlGlobalConfig.python.md +++ b/docs/sqlGlobalConfig.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_data_access_config | *No description.* | | reset_enable_serverless_compute | *No description.* | | reset_google_service_account | *No description.* | @@ -274,6 +277,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 @@ -400,6 +421,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 @@ -414,6 +456,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_data_access_config` ```python @@ -463,6 +532,7 @@ def reset_sql_config_params() -> 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 SqlGlobalConfig resource upon running "cdktf plan ". | --- @@ -532,6 +602,55 @@ sqlGlobalConfig.SqlGlobalConfig.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_global_config + +sqlGlobalConfig.SqlGlobalConfig.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlGlobalConfig 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 SqlGlobalConfig to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlGlobalConfig that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_global_config#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 SqlGlobalConfig to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlGlobalConfig.typescript.md b/docs/sqlGlobalConfig.typescript.md index 144a922d6..bb7068ccf 100644 --- a/docs/sqlGlobalConfig.typescript.md +++ b/docs/sqlGlobalConfig.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. | | resetDataAccessConfig | *No description.* | | resetEnableServerlessCompute | *No description.* | | resetGoogleServiceAccount | *No description.* | @@ -144,6 +147,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 @@ -252,6 +271,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 @@ -264,6 +301,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. + +--- + ##### `resetDataAccessConfig` ```typescript @@ -313,6 +374,7 @@ public resetSqlConfigParams(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlGlobalConfig resource upon running "cdktf plan ". | --- @@ -376,6 +438,50 @@ sqlGlobalConfig.SqlGlobalConfig.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlGlobalConfig } from '@cdktf/provider-databricks' + +sqlGlobalConfig.SqlGlobalConfig.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlGlobalConfig 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 SqlGlobalConfig to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlGlobalConfig that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_global_config#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 SqlGlobalConfig to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlPermissions.csharp.md b/docs/sqlPermissions.csharp.md index 6d4b859bf..be0307dd5 100644 --- a/docs/sqlPermissions.csharp.md +++ b/docs/sqlPermissions.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. | | PutPrivilegeAssignments | *No description.* | | ResetAnonymousFunction | *No description.* | | ResetAnyFile | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutPrivilegeAssignments` ```csharp @@ -340,6 +401,7 @@ private void ResetView() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlPermissions resource upon running "cdktf plan ". | --- @@ -403,6 +465,50 @@ SqlPermissions.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlPermissions.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlPermissions 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 SqlPermissions to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlPermissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_permissions#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 SqlPermissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlPermissions.go.md b/docs/sqlPermissions.go.md index 5faa83858..9c1636743 100644 --- a/docs/sqlPermissions.go.md +++ b/docs/sqlPermissions.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/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" sqlpermissions.NewSqlPermissions(scope Construct, id *string, config SqlPermissionsConfig) SqlPermissions ``` @@ -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. | | PutPrivilegeAssignments | *No description.* | | ResetAnonymousFunction | *No description.* | | ResetAnyFile | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutPrivilegeAssignments` ```go @@ -340,13 +401,14 @@ func ResetView() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlPermissions resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" sqlpermissions.SqlPermissions_IsConstruct(x interface{}) *bool ``` @@ -378,7 +440,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" sqlpermissions.SqlPermissions_IsTerraformElement(x interface{}) *bool ``` @@ -392,7 +454,7 @@ sqlpermissions.SqlPermissions_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" sqlpermissions.SqlPermissions_IsTerraformResource(x interface{}) *bool ``` @@ -403,6 +465,50 @@ sqlpermissions.SqlPermissions_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" + +sqlpermissions.SqlPermissions_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlPermissions 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 SqlPermissions to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlPermissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_permissions#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 SqlPermissions 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/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" &sqlpermissions.SqlPermissionsConfig { Connection: interface{}, @@ -1022,7 +1128,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" &sqlpermissions.SqlPermissionsPrivilegeAssignments { Principal: *string, @@ -1070,7 +1176,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" sqlpermissions.NewSqlPermissionsPrivilegeAssignmentsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlPermissionsPrivilegeAssignmentsList ``` @@ -1213,7 +1319,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlpermissions" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlpermissions" sqlpermissions.NewSqlPermissionsPrivilegeAssignmentsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) SqlPermissionsPrivilegeAssignmentsOutputReference ``` diff --git a/docs/sqlPermissions.java.md b/docs/sqlPermissions.java.md index 32924646a..564c39fd9 100644 --- a/docs/sqlPermissions.java.md +++ b/docs/sqlPermissions.java.md @@ -213,6 +213,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.* | @@ -222,7 +223,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. | | putPrivilegeAssignments | *No description.* | | resetAnonymousFunction | *No description.* | | resetAnyFile | *No description.* | @@ -300,6 +303,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 @@ -408,6 +427,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 @@ -420,6 +458,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. + +--- + ##### `putPrivilegeAssignments` ```java @@ -493,6 +556,7 @@ public void resetView() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlPermissions resource upon running "cdktf plan ". | --- @@ -556,6 +620,50 @@ SqlPermissions.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_permissions.SqlPermissions; + +SqlPermissions.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlPermissions.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlPermissions 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 SqlPermissions to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlPermissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_permissions#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 SqlPermissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlPermissions.python.md b/docs/sqlPermissions.python.md index 10eb30de0..fcd2f5208 100644 --- a/docs/sqlPermissions.python.md +++ b/docs/sqlPermissions.python.md @@ -207,6 +207,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.* | @@ -216,7 +217,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_privilege_assignments | *No description.* | | reset_anonymous_function | *No description.* | | reset_any_file | *No description.* | @@ -299,6 +302,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 @@ -425,6 +446,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 @@ -439,6 +481,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_privilege_assignments` ```python @@ -514,6 +583,7 @@ def reset_view() -> 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 SqlPermissions resource upon running "cdktf plan ". | --- @@ -583,6 +653,55 @@ sqlPermissions.SqlPermissions.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_permissions + +sqlPermissions.SqlPermissions.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlPermissions 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 SqlPermissions to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlPermissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_permissions#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 SqlPermissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlPermissions.typescript.md b/docs/sqlPermissions.typescript.md index ded28e198..954509a96 100644 --- a/docs/sqlPermissions.typescript.md +++ b/docs/sqlPermissions.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. | | putPrivilegeAssignments | *No description.* | | resetAnonymousFunction | *No description.* | | resetAnyFile | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `putPrivilegeAssignments` ```typescript @@ -340,6 +401,7 @@ public resetView(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlPermissions resource upon running "cdktf plan ". | --- @@ -403,6 +465,50 @@ sqlPermissions.SqlPermissions.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlPermissions } from '@cdktf/provider-databricks' + +sqlPermissions.SqlPermissions.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlPermissions 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 SqlPermissions to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlPermissions that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_permissions#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 SqlPermissions to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlQuery.csharp.md b/docs/sqlQuery.csharp.md index d6b306c41..64f892847 100644 --- a/docs/sqlQuery.csharp.md +++ b/docs/sqlQuery.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. | | PutParameter | *No description.* | | PutSchedule | *No description.* | | ResetCreatedAt | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `PutParameter` ```csharp @@ -353,6 +414,7 @@ private void ResetUpdatedAt() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlQuery resource upon running "cdktf plan ". | --- @@ -416,6 +478,50 @@ SqlQuery.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlQuery.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlQuery 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 SqlQuery to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlQuery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_query#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 SqlQuery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlQuery.go.md b/docs/sqlQuery.go.md index ede01f19e..0b5b9eb90 100644 --- a/docs/sqlQuery.go.md +++ b/docs/sqlQuery.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/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQuery(scope Construct, id *string, config SqlQueryConfig) SqlQuery ``` @@ -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. | | PutParameter | *No description.* | | PutSchedule | *No description.* | | ResetCreatedAt | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `PutParameter` ```go @@ -353,13 +414,14 @@ func ResetUpdatedAt() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlQuery resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.SqlQuery_IsConstruct(x interface{}) *bool ``` @@ -391,7 +453,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.SqlQuery_IsTerraformElement(x interface{}) *bool ``` @@ -405,7 +467,7 @@ sqlquery.SqlQuery_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.SqlQuery_IsTerraformResource(x interface{}) *bool ``` @@ -416,6 +478,50 @@ sqlquery.SqlQuery_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" + +sqlquery.SqlQuery_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlQuery 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 SqlQuery to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlQuery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_query#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 SqlQuery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -868,7 +974,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryConfig { Connection: interface{}, @@ -887,7 +993,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" Parameter: interface{}, Parent: *string, RunAsRole: *string, - Schedule: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQuerySchedule, + Schedule: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQuerySchedule, Tags: *[]*string, UpdatedAt: *string, } @@ -1145,20 +1251,20 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameter { Name: *string, - Date: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDate, - DateRange: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDateRange, - Datetime: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDatetime, - DatetimeRange: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDatetimeRange, - Datetimesec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDatetimesec, - DatetimesecRange: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDatetimesecRange, - Enum: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterEnum, - Number: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterNumber, - Query: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterQuery, - Text: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterText, + Date: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDate, + DateRange: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDateRange, + Datetime: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDatetime, + DatetimeRange: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDatetimeRange, + Datetimesec: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDatetimesec, + DatetimesecRange: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDatetimesecRange, + Enum: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterEnum, + Number: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterNumber, + Query: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterQuery, + Text: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterText, Title: *string, } ``` @@ -1351,7 +1457,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDate { Value: *string, @@ -1383,10 +1489,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDateRange { - Range: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDateRangeRange, + Range: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDateRangeRange, Value: *string, } ``` @@ -1431,7 +1537,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDateRangeRange { End: *string, @@ -1477,7 +1583,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDatetime { Value: *string, @@ -1509,10 +1615,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDatetimeRange { - Range: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDatetimeRangeRange, + Range: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDatetimeRangeRange, Value: *string, } ``` @@ -1557,7 +1663,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDatetimeRangeRange { End: *string, @@ -1603,7 +1709,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDatetimesec { Value: *string, @@ -1635,10 +1741,10 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDatetimesecRange { - Range: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterDatetimesecRangeRange, + Range: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterDatetimesecRangeRange, Value: *string, } ``` @@ -1683,7 +1789,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterDatetimesecRangeRange { End: *string, @@ -1729,11 +1835,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterEnum { Options: *[]*string, - Multiple: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterEnumMultiple, + Multiple: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterEnumMultiple, Value: *string, Values: *[]*string, } @@ -1805,7 +1911,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterEnumMultiple { Prefix: *string, @@ -1865,7 +1971,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterNumber { Value: *f64, @@ -1897,11 +2003,11 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterQuery { QueryId: *string, - Multiple: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryParameterQueryMultiple, + Multiple: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryParameterQueryMultiple, Value: *string, Values: *[]*string, } @@ -1973,7 +2079,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterQueryMultiple { Prefix: *string, @@ -2033,7 +2139,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryParameterText { Value: *string, @@ -2065,12 +2171,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQuerySchedule { - Continuous: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryScheduleContinuous, - Daily: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryScheduleDaily, - Weekly: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlQuery.SqlQueryScheduleWeekly, + Continuous: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryScheduleContinuous, + Daily: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryScheduleDaily, + Weekly: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlQuery.SqlQueryScheduleWeekly, } ``` @@ -2131,7 +2237,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryScheduleContinuous { IntervalSeconds: *f64, @@ -2177,7 +2283,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryScheduleDaily { IntervalDays: *f64, @@ -2237,7 +2343,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" &sqlquery.SqlQueryScheduleWeekly { DayOfWeek: *string, @@ -2313,7 +2419,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDateOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDateOutputReference ``` @@ -2584,7 +2690,7 @@ func InternalValue() SqlQueryParameterDate #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDateRangeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDateRangeOutputReference ``` @@ -2904,7 +3010,7 @@ func InternalValue() SqlQueryParameterDateRange #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDateRangeRangeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDateRangeRangeOutputReference ``` @@ -3197,7 +3303,7 @@ func InternalValue() SqlQueryParameterDateRangeRange #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDatetimeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDatetimeOutputReference ``` @@ -3468,7 +3574,7 @@ func InternalValue() SqlQueryParameterDatetime #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDatetimeRangeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDatetimeRangeOutputReference ``` @@ -3788,7 +3894,7 @@ func InternalValue() SqlQueryParameterDatetimeRange #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDatetimeRangeRangeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDatetimeRangeRangeOutputReference ``` @@ -4081,7 +4187,7 @@ func InternalValue() SqlQueryParameterDatetimeRangeRange #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDatetimesecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDatetimesecOutputReference ``` @@ -4352,7 +4458,7 @@ func InternalValue() SqlQueryParameterDatetimesec #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDatetimesecRangeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDatetimesecRangeOutputReference ``` @@ -4672,7 +4778,7 @@ func InternalValue() SqlQueryParameterDatetimesecRange #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterDatetimesecRangeRangeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterDatetimesecRangeRangeOutputReference ``` @@ -4965,7 +5071,7 @@ func InternalValue() SqlQueryParameterDatetimesecRangeRange #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterEnumMultipleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterEnumMultipleOutputReference ``` @@ -5280,7 +5386,7 @@ func InternalValue() SqlQueryParameterEnumMultiple #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterEnumOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterEnumOutputReference ``` @@ -5651,7 +5757,7 @@ func InternalValue() SqlQueryParameterEnum #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlQueryParameterList ``` @@ -5794,7 +5900,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterNumberOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterNumberOutputReference ``` @@ -6065,7 +6171,7 @@ func InternalValue() SqlQueryParameterNumber #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) SqlQueryParameterOutputReference ``` @@ -6803,7 +6909,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterQueryMultipleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterQueryMultipleOutputReference ``` @@ -7118,7 +7224,7 @@ func InternalValue() SqlQueryParameterQueryMultiple #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterQueryOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterQueryOutputReference ``` @@ -7489,7 +7595,7 @@ func InternalValue() SqlQueryParameterQuery #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryParameterTextOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryParameterTextOutputReference ``` @@ -7760,7 +7866,7 @@ func InternalValue() SqlQueryParameterText #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryScheduleContinuousOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryScheduleContinuousOutputReference ``` @@ -8060,7 +8166,7 @@ func InternalValue() SqlQueryScheduleContinuous #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryScheduleDailyOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryScheduleDailyOutputReference ``` @@ -8382,7 +8488,7 @@ func InternalValue() SqlQueryScheduleDaily #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryScheduleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryScheduleOutputReference ``` @@ -8757,7 +8863,7 @@ func InternalValue() SqlQuerySchedule #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlquery" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlquery" sqlquery.NewSqlQueryScheduleWeeklyOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlQueryScheduleWeeklyOutputReference ``` diff --git a/docs/sqlQuery.java.md b/docs/sqlQuery.java.md index f38816eed..593edf345 100644 --- a/docs/sqlQuery.java.md +++ b/docs/sqlQuery.java.md @@ -242,6 +242,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.* | @@ -251,7 +252,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. | | putParameter | *No description.* | | putSchedule | *No description.* | | resetCreatedAt | *No description.* | @@ -330,6 +333,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 @@ -438,6 +457,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 @@ -450,6 +488,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. + +--- + ##### `putParameter` ```java @@ -535,6 +598,7 @@ public void resetUpdatedAt() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlQuery resource upon running "cdktf plan ". | --- @@ -598,6 +662,50 @@ SqlQuery.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_query.SqlQuery; + +SqlQuery.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlQuery.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlQuery 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 SqlQuery to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlQuery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_query#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 SqlQuery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlQuery.python.md b/docs/sqlQuery.python.md index 25fd3af21..715851a07 100644 --- a/docs/sqlQuery.python.md +++ b/docs/sqlQuery.python.md @@ -239,6 +239,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.* | @@ -248,7 +249,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_parameter | *No description.* | | put_schedule | *No description.* | | reset_created_at | *No description.* | @@ -332,6 +335,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 @@ -458,6 +479,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 @@ -472,6 +514,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_parameter` ```python @@ -587,6 +656,7 @@ def reset_updated_at() -> 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 SqlQuery resource upon running "cdktf plan ". | --- @@ -656,6 +726,55 @@ sqlQuery.SqlQuery.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_query + +sqlQuery.SqlQuery.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlQuery 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 SqlQuery to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlQuery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_query#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 SqlQuery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlQuery.typescript.md b/docs/sqlQuery.typescript.md index ba4b37b11..f3daca887 100644 --- a/docs/sqlQuery.typescript.md +++ b/docs/sqlQuery.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. | | putParameter | *No description.* | | putSchedule | *No description.* | | resetCreatedAt | *No description.* | @@ -148,6 +151,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 @@ -256,6 +275,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 @@ -268,6 +305,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. + +--- + ##### `putParameter` ```typescript @@ -353,6 +414,7 @@ public resetUpdatedAt(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlQuery resource upon running "cdktf plan ". | --- @@ -416,6 +478,50 @@ sqlQuery.SqlQuery.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlQuery } from '@cdktf/provider-databricks' + +sqlQuery.SqlQuery.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlQuery 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 SqlQuery to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlQuery that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_query#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 SqlQuery to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlTable.csharp.md b/docs/sqlTable.csharp.md index 4d667fd1d..cbb967bc7 100644 --- a/docs/sqlTable.csharp.md +++ b/docs/sqlTable.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. | | PutColumn | *No description.* | | ResetClusterId | *No description.* | | ResetColumn | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutColumn` ```csharp @@ -340,6 +401,7 @@ private void ResetViewDefinition() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlTable resource upon running "cdktf plan ". | --- @@ -403,6 +465,50 @@ SqlTable.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlTable.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlTable 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 SqlTable to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlTable that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_table#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 SqlTable to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlTable.go.md b/docs/sqlTable.go.md index 2c99a5bd6..cef274ea8 100644 --- a/docs/sqlTable.go.md +++ b/docs/sqlTable.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/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" sqltable.NewSqlTable(scope Construct, id *string, config SqlTableConfig) SqlTable ``` @@ -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. | | PutColumn | *No description.* | | ResetClusterId | *No description.* | | ResetColumn | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutColumn` ```go @@ -340,13 +401,14 @@ func ResetViewDefinition() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlTable resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" sqltable.SqlTable_IsConstruct(x interface{}) *bool ``` @@ -378,7 +440,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" sqltable.SqlTable_IsTerraformElement(x interface{}) *bool ``` @@ -392,7 +454,7 @@ sqltable.SqlTable_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" sqltable.SqlTable_IsTerraformResource(x interface{}) *bool ``` @@ -403,6 +465,50 @@ sqltable.SqlTable_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" + +sqltable.SqlTable_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlTable 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 SqlTable to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlTable that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_table#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 SqlTable to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -877,7 +983,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" &sqltable.SqlTableColumn { Name: *string, @@ -951,7 +1057,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" &sqltable.SqlTableConfig { Connection: interface{}, @@ -1242,7 +1348,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" sqltable.NewSqlTableColumnList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlTableColumnList ``` @@ -1385,7 +1491,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqltable" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqltable" sqltable.NewSqlTableColumnOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) SqlTableColumnOutputReference ``` diff --git a/docs/sqlTable.java.md b/docs/sqlTable.java.md index c60c22dd7..f511edb7a 100644 --- a/docs/sqlTable.java.md +++ b/docs/sqlTable.java.md @@ -250,6 +250,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.* | @@ -259,7 +260,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. | | putColumn | *No description.* | | resetClusterId | *No description.* | | resetColumn | *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. + +--- + ##### `putColumn` ```java @@ -530,6 +593,7 @@ public void resetViewDefinition() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlTable resource upon running "cdktf plan ". | --- @@ -593,6 +657,50 @@ SqlTable.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_table.SqlTable; + +SqlTable.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlTable.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlTable 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 SqlTable to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlTable that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_table#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 SqlTable to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlTable.python.md b/docs/sqlTable.python.md index b0de87f1b..e1b7eff07 100644 --- a/docs/sqlTable.python.md +++ b/docs/sqlTable.python.md @@ -247,6 +247,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.* | @@ -256,7 +257,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_column | *No description.* | | reset_cluster_id | *No description.* | | reset_column | *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. + +--- + ##### `put_column` ```python @@ -554,6 +623,7 @@ def reset_view_definition() -> 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 SqlTable resource upon running "cdktf plan ". | --- @@ -623,6 +693,55 @@ sqlTable.SqlTable.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_table + +sqlTable.SqlTable.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlTable 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 SqlTable to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlTable that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_table#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 SqlTable to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlTable.typescript.md b/docs/sqlTable.typescript.md index 480acd474..f7982ec92 100644 --- a/docs/sqlTable.typescript.md +++ b/docs/sqlTable.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. | | putColumn | *No description.* | | resetClusterId | *No description.* | | resetColumn | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `putColumn` ```typescript @@ -340,6 +401,7 @@ public resetViewDefinition(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlTable resource upon running "cdktf plan ". | --- @@ -403,6 +465,50 @@ sqlTable.SqlTable.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlTable } from '@cdktf/provider-databricks' + +sqlTable.SqlTable.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlTable 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 SqlTable to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlTable that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_table#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 SqlTable to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlVisualization.csharp.md b/docs/sqlVisualization.csharp.md index 322a56a24..35ec14fe6 100644 --- a/docs/sqlVisualization.csharp.md +++ b/docs/sqlVisualization.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. | | ResetDescription | *No description.* | | ResetId | *No description.* | | ResetQueryPlan | *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. + +--- + ##### `ResetDescription` ```csharp @@ -292,6 +353,7 @@ private void ResetVisualizationId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlVisualization resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ SqlVisualization.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlVisualization.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlVisualization 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 SqlVisualization to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlVisualization that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_visualization#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 SqlVisualization to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlVisualization.go.md b/docs/sqlVisualization.go.md index 05ba42166..cb5a75ad7 100644 --- a/docs/sqlVisualization.go.md +++ b/docs/sqlVisualization.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/sqlvisualization" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlvisualization" sqlvisualization.NewSqlVisualization(scope Construct, id *string, config SqlVisualizationConfig) SqlVisualization ``` @@ -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. | | ResetDescription | *No description.* | | ResetId | *No description.* | | ResetQueryPlan | *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. + +--- + ##### `ResetDescription` ```go @@ -292,13 +353,14 @@ func ResetVisualizationId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlVisualization resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlvisualization" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlvisualization" sqlvisualization.SqlVisualization_IsConstruct(x interface{}) *bool ``` @@ -330,7 +392,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlvisualization" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlvisualization" sqlvisualization.SqlVisualization_IsTerraformElement(x interface{}) *bool ``` @@ -344,7 +406,7 @@ sqlvisualization.SqlVisualization_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlvisualization" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlvisualization" sqlvisualization.SqlVisualization_IsTerraformResource(x interface{}) *bool ``` @@ -355,6 +417,50 @@ sqlvisualization.SqlVisualization_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlvisualization" + +sqlvisualization.SqlVisualization_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlVisualization 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 SqlVisualization to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlVisualization that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_visualization#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 SqlVisualization to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -719,7 +825,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlvisualization" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlvisualization" &sqlvisualization.SqlVisualizationConfig { Connection: interface{}, diff --git a/docs/sqlVisualization.java.md b/docs/sqlVisualization.java.md index a9166fd8f..4c5e70619 100644 --- a/docs/sqlVisualization.java.md +++ b/docs/sqlVisualization.java.md @@ -197,6 +197,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.* | @@ -206,7 +207,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. | | resetDescription | *No description.* | | resetId | *No description.* | | resetQueryPlan | *No description.* | @@ -278,6 +281,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 @@ -386,6 +405,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 @@ -398,6 +436,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. + +--- + ##### `resetDescription` ```java @@ -429,6 +492,7 @@ public void resetVisualizationId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlVisualization resource upon running "cdktf plan ". | --- @@ -492,6 +556,50 @@ SqlVisualization.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_visualization.SqlVisualization; + +SqlVisualization.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlVisualization.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlVisualization 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 SqlVisualization to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlVisualization that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_visualization#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 SqlVisualization to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlVisualization.python.md b/docs/sqlVisualization.python.md index 6b28543df..cb44031f5 100644 --- a/docs/sqlVisualization.python.md +++ b/docs/sqlVisualization.python.md @@ -195,6 +195,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.* | @@ -204,7 +205,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_description | *No description.* | | reset_id | *No description.* | | reset_query_plan | *No description.* | @@ -281,6 +284,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 @@ -407,6 +428,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 @@ -421,6 +463,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_description` ```python @@ -452,6 +521,7 @@ def reset_visualization_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 SqlVisualization resource upon running "cdktf plan ". | --- @@ -521,6 +591,55 @@ sqlVisualization.SqlVisualization.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_visualization + +sqlVisualization.SqlVisualization.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlVisualization 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 SqlVisualization to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlVisualization that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_visualization#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 SqlVisualization to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlVisualization.typescript.md b/docs/sqlVisualization.typescript.md index f930a0f38..070d8fb0c 100644 --- a/docs/sqlVisualization.typescript.md +++ b/docs/sqlVisualization.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. | | resetDescription | *No description.* | | resetId | *No description.* | | resetQueryPlan | *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. + +--- + ##### `resetDescription` ```typescript @@ -292,6 +353,7 @@ public resetVisualizationId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlVisualization resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ sqlVisualization.SqlVisualization.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlVisualization } from '@cdktf/provider-databricks' + +sqlVisualization.SqlVisualization.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlVisualization 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 SqlVisualization to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlVisualization that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_visualization#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 SqlVisualization to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlWidget.csharp.md b/docs/sqlWidget.csharp.md index 81a9c973f..fccd6277b 100644 --- a/docs/sqlWidget.csharp.md +++ b/docs/sqlWidget.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. | | PutParameter | *No description.* | | PutPosition | *No description.* | | ResetDescription | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutParameter` ```csharp @@ -346,6 +407,7 @@ private void ResetWidgetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlWidget resource upon running "cdktf plan ". | --- @@ -409,6 +471,50 @@ SqlWidget.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SqlWidget.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SqlWidget 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 SqlWidget to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SqlWidget that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_widget#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 SqlWidget to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlWidget.go.md b/docs/sqlWidget.go.md index 232231467..1d4ccff8d 100644 --- a/docs/sqlWidget.go.md +++ b/docs/sqlWidget.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/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.NewSqlWidget(scope Construct, id *string, config SqlWidgetConfig) SqlWidget ``` @@ -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. | | PutParameter | *No description.* | | PutPosition | *No description.* | | ResetDescription | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `PutParameter` ```go @@ -346,13 +407,14 @@ func ResetWidgetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SqlWidget resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.SqlWidget_IsConstruct(x interface{}) *bool ``` @@ -384,7 +446,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.SqlWidget_IsTerraformElement(x interface{}) *bool ``` @@ -398,7 +460,7 @@ sqlwidget.SqlWidget_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.SqlWidget_IsTerraformResource(x interface{}) *bool ``` @@ -409,6 +471,50 @@ sqlwidget.SqlWidget_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" + +sqlwidget.SqlWidget_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SqlWidget 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 SqlWidget to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SqlWidget that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_widget#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 SqlWidget to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -795,7 +901,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" &sqlwidget.SqlWidgetConfig { Connection: interface{}, @@ -809,7 +915,7 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" Description: *string, Id: *string, Parameter: interface{}, - Position: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.sqlWidget.SqlWidgetPosition, + Position: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.sqlWidget.SqlWidgetPosition, Text: *string, Title: *string, VisualizationId: *string, @@ -1030,7 +1136,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" &sqlwidget.SqlWidgetParameter { Name: *string, @@ -1132,7 +1238,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" &sqlwidget.SqlWidgetPosition { SizeX: *f64, @@ -1222,7 +1328,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.NewSqlWidgetParameterList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlWidgetParameterList ``` @@ -1365,7 +1471,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.NewSqlWidgetParameterOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) SqlWidgetParameterOutputReference ``` @@ -1792,7 +1898,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/sqlwidget" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/sqlwidget" sqlwidget.NewSqlWidgetPositionOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) SqlWidgetPositionOutputReference ``` diff --git a/docs/sqlWidget.java.md b/docs/sqlWidget.java.md index d099e74af..57a6c7e35 100644 --- a/docs/sqlWidget.java.md +++ b/docs/sqlWidget.java.md @@ -212,6 +212,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.* | @@ -221,7 +222,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. | | putParameter | *No description.* | | putPosition | *No description.* | | resetDescription | *No description.* | @@ -299,6 +302,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 @@ -407,6 +426,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 @@ -419,6 +457,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. + +--- + ##### `putParameter` ```java @@ -498,6 +561,7 @@ public void resetWidgetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlWidget resource upon running "cdktf plan ". | --- @@ -561,6 +625,50 @@ SqlWidget.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.sql_widget.SqlWidget; + +SqlWidget.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SqlWidget.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SqlWidget 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 SqlWidget to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SqlWidget that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_widget#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 SqlWidget to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlWidget.python.md b/docs/sqlWidget.python.md index cbaac28be..867d04313 100644 --- a/docs/sqlWidget.python.md +++ b/docs/sqlWidget.python.md @@ -209,6 +209,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.* | @@ -218,7 +219,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_parameter | *No description.* | | put_position | *No description.* | | reset_description | *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. + +--- + ##### `put_parameter` ```python @@ -562,6 +631,7 @@ def reset_widget_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 SqlWidget resource upon running "cdktf plan ". | --- @@ -631,6 +701,55 @@ sqlWidget.SqlWidget.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import sql_widget + +sqlWidget.SqlWidget.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SqlWidget 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 SqlWidget to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SqlWidget that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_widget#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 SqlWidget to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/sqlWidget.typescript.md b/docs/sqlWidget.typescript.md index ccc8863d7..68e2862c7 100644 --- a/docs/sqlWidget.typescript.md +++ b/docs/sqlWidget.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. | | putParameter | *No description.* | | putPosition | *No description.* | | resetDescription | *No description.* | @@ -147,6 +150,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 @@ -255,6 +274,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 @@ -267,6 +304,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. + +--- + ##### `putParameter` ```typescript @@ -346,6 +407,7 @@ public resetWidgetId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SqlWidget resource upon running "cdktf plan ". | --- @@ -409,6 +471,50 @@ sqlWidget.SqlWidget.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { sqlWidget } from '@cdktf/provider-databricks' + +sqlWidget.SqlWidget.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SqlWidget 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 SqlWidget to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SqlWidget that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_widget#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 SqlWidget to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/storageCredential.csharp.md b/docs/storageCredential.csharp.md index a3d8195c1..454f12205 100644 --- a/docs/storageCredential.csharp.md +++ b/docs/storageCredential.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. | | PutAwsIamRole | *No description.* | | PutAzureManagedIdentity | *No description.* | | PutAzureServicePrincipal | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `PutAwsIamRole` ```csharp @@ -406,6 +467,7 @@ private void ResetReadOnly() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a StorageCredential resource upon running "cdktf plan ". | --- @@ -469,6 +531,50 @@ StorageCredential.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +StorageCredential.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a StorageCredential 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 StorageCredential to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing StorageCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/storage_credential#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 StorageCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/storageCredential.go.md b/docs/storageCredential.go.md index 97e9f782d..4fd136ef1 100644 --- a/docs/storageCredential.go.md +++ b/docs/storageCredential.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/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.NewStorageCredential(scope Construct, id *string, config StorageCredentialConfig) StorageCredential ``` @@ -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. | | PutAwsIamRole | *No description.* | | PutAzureManagedIdentity | *No description.* | | PutAzureServicePrincipal | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `PutAwsIamRole` ```go @@ -406,13 +467,14 @@ func ResetReadOnly() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a StorageCredential resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.StorageCredential_IsConstruct(x interface{}) *bool ``` @@ -444,7 +506,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.StorageCredential_IsTerraformElement(x interface{}) *bool ``` @@ -458,7 +520,7 @@ storagecredential.StorageCredential_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.StorageCredential_IsTerraformResource(x interface{}) *bool ``` @@ -469,6 +531,50 @@ storagecredential.StorageCredential_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" + +storagecredential.StorageCredential_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a StorageCredential 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 StorageCredential to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing StorageCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/storage_credential#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 StorageCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -921,7 +1027,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" &storagecredential.StorageCredentialAwsIamRole { RoleArn: *string, @@ -953,7 +1059,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" &storagecredential.StorageCredentialAzureManagedIdentity { AccessConnectorId: *string, @@ -1013,7 +1119,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" &storagecredential.StorageCredentialAzureServicePrincipal { ApplicationId: *string, @@ -1073,7 +1179,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" &storagecredential.StorageCredentialConfig { Connection: interface{}, @@ -1084,13 +1190,13 @@ import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecred Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider, Provisioners: *[]interface{}, Name: *string, - AwsIamRole: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.storageCredential.StorageCredentialAwsIamRole, - AzureManagedIdentity: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.storageCredential.StorageCredentialAzureManagedIdentity, - AzureServicePrincipal: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.storageCredential.StorageCredentialAzureServicePrincipal, + AwsIamRole: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.storageCredential.StorageCredentialAwsIamRole, + AzureManagedIdentity: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.storageCredential.StorageCredentialAzureManagedIdentity, + AzureServicePrincipal: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.storageCredential.StorageCredentialAzureServicePrincipal, Comment: *string, - DatabricksGcpServiceAccount: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.storageCredential.StorageCredentialDatabricksGcpServiceAccount, + DatabricksGcpServiceAccount: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.storageCredential.StorageCredentialDatabricksGcpServiceAccount, ForceDestroy: interface{}, - GcpServiceAccountKey: github.com/cdktf/cdktf-provider-databricks-go/databricks/v11.storageCredential.StorageCredentialGcpServiceAccountKey, + GcpServiceAccountKey: github.com/cdktf/cdktf-provider-databricks-go/databricks/v12.storageCredential.StorageCredentialGcpServiceAccountKey, Id: *string, MetastoreId: *string, Owner: *string, @@ -1356,7 +1462,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" &storagecredential.StorageCredentialDatabricksGcpServiceAccount { CredentialId: *string, @@ -1402,7 +1508,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" &storagecredential.StorageCredentialGcpServiceAccountKey { Email: *string, @@ -1464,7 +1570,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.NewStorageCredentialAwsIamRoleOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) StorageCredentialAwsIamRoleOutputReference ``` @@ -1735,7 +1841,7 @@ func InternalValue() StorageCredentialAwsIamRole #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.NewStorageCredentialAzureManagedIdentityOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) StorageCredentialAzureManagedIdentityOutputReference ``` @@ -2064,7 +2170,7 @@ func InternalValue() StorageCredentialAzureManagedIdentity #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.NewStorageCredentialAzureServicePrincipalOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) StorageCredentialAzureServicePrincipalOutputReference ``` @@ -2379,7 +2485,7 @@ func InternalValue() StorageCredentialAzureServicePrincipal #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.NewStorageCredentialDatabricksGcpServiceAccountOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) StorageCredentialDatabricksGcpServiceAccountOutputReference ``` @@ -2686,7 +2792,7 @@ func InternalValue() StorageCredentialDatabricksGcpServiceAccount #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/storagecredential" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/storagecredential" storagecredential.NewStorageCredentialGcpServiceAccountKeyOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) StorageCredentialGcpServiceAccountKeyOutputReference ``` diff --git a/docs/storageCredential.java.md b/docs/storageCredential.java.md index b107e0aac..4b1934ebe 100644 --- a/docs/storageCredential.java.md +++ b/docs/storageCredential.java.md @@ -249,6 +249,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.* | @@ -258,7 +259,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. | | putAwsIamRole | *No description.* | | putAzureManagedIdentity | *No description.* | | putAzureServicePrincipal | *No description.* | @@ -342,6 +345,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 @@ -450,6 +469,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 @@ -462,6 +500,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. + +--- + ##### `putAwsIamRole` ```java @@ -595,6 +658,7 @@ public void resetReadOnly() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a StorageCredential resource upon running "cdktf plan ". | --- @@ -658,6 +722,50 @@ StorageCredential.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.storage_credential.StorageCredential; + +StorageCredential.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),StorageCredential.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a StorageCredential 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 StorageCredential to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing StorageCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/storage_credential#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 StorageCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/storageCredential.python.md b/docs/storageCredential.python.md index d0ca9847f..c24ce020b 100644 --- a/docs/storageCredential.python.md +++ b/docs/storageCredential.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. | | put_aws_iam_role | *No description.* | | put_azure_managed_identity | *No description.* | | put_azure_service_principal | *No description.* | @@ -343,6 +346,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 @@ -469,6 +490,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 @@ -483,6 +525,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_aws_iam_role` ```python @@ -699,6 +768,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 StorageCredential resource upon running "cdktf plan ". | --- @@ -768,6 +838,55 @@ storageCredential.StorageCredential.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import storage_credential + +storageCredential.StorageCredential.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a StorageCredential 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 StorageCredential to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing StorageCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/storage_credential#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 StorageCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/storageCredential.typescript.md b/docs/storageCredential.typescript.md index 58508a3ca..11cbcea36 100644 --- a/docs/storageCredential.typescript.md +++ b/docs/storageCredential.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. | | putAwsIamRole | *No description.* | | putAzureManagedIdentity | *No description.* | | putAzureServicePrincipal | *No description.* | @@ -153,6 +156,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 @@ -261,6 +280,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 @@ -273,6 +310,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. + +--- + ##### `putAwsIamRole` ```typescript @@ -406,6 +467,7 @@ public resetReadOnly(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a StorageCredential resource upon running "cdktf plan ". | --- @@ -469,6 +531,50 @@ storageCredential.StorageCredential.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { storageCredential } from '@cdktf/provider-databricks' + +storageCredential.StorageCredential.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a StorageCredential 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 StorageCredential to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing StorageCredential that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/storage_credential#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 StorageCredential to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/systemSchema.csharp.md b/docs/systemSchema.csharp.md index ab2c26ab4..4ad9ffc10 100644 --- a/docs/systemSchema.csharp.md +++ b/docs/systemSchema.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.* | | ResetSchema | *No description.* | | ResetState | *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. + +--- + ##### `ResetId` ```csharp @@ -285,6 +346,7 @@ private void ResetState() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SystemSchema resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ SystemSchema.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +SystemSchema.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a SystemSchema 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 SystemSchema to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing SystemSchema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/system_schema#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 SystemSchema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/systemSchema.go.md b/docs/systemSchema.go.md index a2f84aafc..ae6a62a21 100644 --- a/docs/systemSchema.go.md +++ b/docs/systemSchema.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/systemschema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/systemschema" systemschema.NewSystemSchema(scope Construct, id *string, config SystemSchemaConfig) SystemSchema ``` @@ -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.* | | ResetSchema | *No description.* | | ResetState | *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. + +--- + ##### `ResetId` ```go @@ -285,13 +346,14 @@ func ResetState() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a SystemSchema resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/systemschema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/systemschema" systemschema.SystemSchema_IsConstruct(x interface{}) *bool ``` @@ -323,7 +385,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/systemschema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/systemschema" systemschema.SystemSchema_IsTerraformElement(x interface{}) *bool ``` @@ -337,7 +399,7 @@ systemschema.SystemSchema_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/systemschema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/systemschema" systemschema.SystemSchema_IsTerraformResource(x interface{}) *bool ``` @@ -348,6 +410,50 @@ systemschema.SystemSchema_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/systemschema" + +systemschema.SystemSchema_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a SystemSchema 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 SystemSchema to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing SystemSchema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/system_schema#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 SystemSchema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -613,7 +719,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/systemschema" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/systemschema" &systemschema.SystemSchemaConfig { Connection: interface{}, diff --git a/docs/systemSchema.java.md b/docs/systemSchema.java.md index 9060a9658..99e7e544b 100644 --- a/docs/systemSchema.java.md +++ b/docs/systemSchema.java.md @@ -147,6 +147,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.* | @@ -156,7 +157,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. | | resetId | *No description.* | | resetSchema | *No description.* | | resetState | *No description.* | @@ -227,6 +230,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 @@ -335,6 +354,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 @@ -347,6 +385,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 @@ -372,6 +435,7 @@ public void resetState() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SystemSchema resource upon running "cdktf plan ". | --- @@ -435,6 +499,50 @@ SystemSchema.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.system_schema.SystemSchema; + +SystemSchema.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),SystemSchema.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a SystemSchema 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 SystemSchema to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing SystemSchema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/system_schema#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 SystemSchema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/systemSchema.python.md b/docs/systemSchema.python.md index f95f37893..38f1a3e51 100644 --- a/docs/systemSchema.python.md +++ b/docs/systemSchema.python.md @@ -145,6 +145,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.* | @@ -154,7 +155,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_id | *No description.* | | reset_schema | *No description.* | | reset_state | *No description.* | @@ -230,6 +233,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 @@ -356,6 +377,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 @@ -370,6 +412,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 @@ -395,6 +464,7 @@ def reset_state() -> 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 SystemSchema resource upon running "cdktf plan ". | --- @@ -464,6 +534,55 @@ systemSchema.SystemSchema.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import system_schema + +systemSchema.SystemSchema.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a SystemSchema 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 SystemSchema to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing SystemSchema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/system_schema#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 SystemSchema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/systemSchema.typescript.md b/docs/systemSchema.typescript.md index c9f3bf235..e6fd24611 100644 --- a/docs/systemSchema.typescript.md +++ b/docs/systemSchema.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.* | | resetSchema | *No description.* | | resetState | *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. + +--- + ##### `resetId` ```typescript @@ -285,6 +346,7 @@ public resetState(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a SystemSchema resource upon running "cdktf plan ". | --- @@ -348,6 +410,50 @@ systemSchema.SystemSchema.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { systemSchema } from '@cdktf/provider-databricks' + +systemSchema.SystemSchema.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a SystemSchema 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 SystemSchema to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing SystemSchema that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/system_schema#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 SystemSchema to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/table.csharp.md b/docs/table.csharp.md index cafa76357..812a0d014 100644 --- a/docs/table.csharp.md +++ b/docs/table.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. | | PutColumn | *No description.* | | ResetComment | *No description.* | | ResetId | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutColumn` ```csharp @@ -326,6 +387,7 @@ private void ResetViewDefinition() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Table resource upon running "cdktf plan ". | --- @@ -389,6 +451,50 @@ Table.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Table.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Table 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 Table to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Table that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/table#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 Table to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/table.go.md b/docs/table.go.md index 5c628d70f..cb5c59837 100644 --- a/docs/table.go.md +++ b/docs/table.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/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" table.NewTable(scope Construct, id *string, config TableConfig) Table ``` @@ -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. | | PutColumn | *No description.* | | ResetComment | *No description.* | | ResetId | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `PutColumn` ```go @@ -326,13 +387,14 @@ func ResetViewDefinition() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Table resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" table.Table_IsConstruct(x interface{}) *bool ``` @@ -364,7 +426,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" table.Table_IsTerraformElement(x interface{}) *bool ``` @@ -378,7 +440,7 @@ table.Table_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" table.Table_IsTerraformResource(x interface{}) *bool ``` @@ -389,6 +451,50 @@ table.Table_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" + +table.Table_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Table 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 Table to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Table that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/table#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 Table to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -863,7 +969,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" &table.TableColumn { Name: *string, @@ -1035,7 +1141,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" &table.TableConfig { Connection: interface{}, @@ -1326,7 +1432,7 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datab #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" table.NewTableColumnList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) TableColumnList ``` @@ -1469,7 +1575,7 @@ func InternalValue() interface{} #### Initializers ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/table" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/table" table.NewTableColumnOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) TableColumnOutputReference ``` diff --git a/docs/table.java.md b/docs/table.java.md index 8546c1a75..defa31ba1 100644 --- a/docs/table.java.md +++ b/docs/table.java.md @@ -250,6 +250,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.* | @@ -259,7 +260,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. | | putColumn | *No description.* | | resetComment | *No description.* | | resetId | *No description.* | @@ -335,6 +338,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 @@ -443,6 +462,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 @@ -455,6 +493,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. + +--- + ##### `putColumn` ```java @@ -516,6 +579,7 @@ public void resetViewDefinition() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Table resource upon running "cdktf plan ". | --- @@ -579,6 +643,50 @@ Table.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.table.Table; + +Table.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Table.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Table 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 Table to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Table that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/table#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 Table to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/table.python.md b/docs/table.python.md index afcd1fbf2..ee239dfd1 100644 --- a/docs/table.python.md +++ b/docs/table.python.md @@ -247,6 +247,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.* | @@ -256,7 +257,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_column | *No description.* | | reset_comment | *No description.* | | reset_id | *No description.* | @@ -337,6 +340,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 @@ -463,6 +484,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 @@ -477,6 +519,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_column` ```python @@ -540,6 +609,7 @@ def reset_view_definition() -> 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 Table resource upon running "cdktf plan ". | --- @@ -609,6 +679,55 @@ table.Table.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import table + +table.Table.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Table 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 Table to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Table that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/table#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 Table to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/table.typescript.md b/docs/table.typescript.md index 8a7b8d087..484badf96 100644 --- a/docs/table.typescript.md +++ b/docs/table.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. | | putColumn | *No description.* | | resetComment | *No description.* | | resetId | *No description.* | @@ -145,6 +148,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 @@ -253,6 +272,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 @@ -265,6 +302,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. + +--- + ##### `putColumn` ```typescript @@ -326,6 +387,7 @@ public resetViewDefinition(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Table resource upon running "cdktf plan ". | --- @@ -389,6 +451,50 @@ table.Table.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { table } from '@cdktf/provider-databricks' + +table.Table.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Table 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 Table to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Table that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/table#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 Table to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/token.csharp.md b/docs/token.csharp.md index 5560a8dc4..0f31f6766 100644 --- a/docs/token.csharp.md +++ b/docs/token.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.* | | ResetCreationTime | *No description.* | | ResetExpiryTime | *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 ResetTokenId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Token resource upon running "cdktf plan ". | --- @@ -369,6 +431,50 @@ Token.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Token.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Token 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 Token to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Token that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/token#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 Token to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/token.go.md b/docs/token.go.md index 1149cad83..e24f31a96 100644 --- a/docs/token.go.md +++ b/docs/token.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/token" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/token" token.NewToken(scope Construct, id *string, config TokenConfig) Token ``` @@ -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.* | | ResetCreationTime | *No description.* | | ResetExpiryTime | *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 ResetTokenId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Token resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/token" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/token" token.Token_IsConstruct(x interface{}) *bool ``` @@ -344,7 +406,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/token" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/token" token.Token_IsTerraformElement(x interface{}) *bool ``` @@ -358,7 +420,7 @@ token.Token_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/token" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/token" token.Token_IsTerraformResource(x interface{}) *bool ``` @@ -369,6 +431,50 @@ token.Token_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/token" + +token.Token_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Token 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 Token to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Token that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/token#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 Token to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -700,7 +806,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/token" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/token" &token.TokenConfig { Connection: interface{}, diff --git a/docs/token.java.md b/docs/token.java.md index 14c7719c1..0f2483a15 100644 --- a/docs/token.java.md +++ b/docs/token.java.md @@ -177,6 +177,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.* | @@ -186,7 +187,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.* | | resetCreationTime | *No description.* | | resetExpiryTime | *No description.* | @@ -260,6 +263,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 @@ -368,6 +387,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 @@ -380,6 +418,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 @@ -423,6 +486,7 @@ public void resetTokenId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Token resource upon running "cdktf plan ". | --- @@ -486,6 +550,50 @@ Token.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.token.Token; + +Token.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Token.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Token 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 Token to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Token that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/token#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 Token to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/token.python.md b/docs/token.python.md index 417b3ae7c..874fbedc4 100644 --- a/docs/token.python.md +++ b/docs/token.python.md @@ -175,6 +175,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.* | @@ -184,7 +185,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_creation_time | *No description.* | | reset_expiry_time | *No description.* | @@ -263,6 +266,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 @@ -389,6 +410,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 @@ -403,6 +445,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 @@ -446,6 +515,7 @@ def reset_token_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 Token resource upon running "cdktf plan ". | --- @@ -515,6 +585,55 @@ token.Token.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import token + +token.Token.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Token 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 Token to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Token that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/token#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 Token to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/token.typescript.md b/docs/token.typescript.md index 67d8d1c71..eefcebb34 100644 --- a/docs/token.typescript.md +++ b/docs/token.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.* | | resetCreationTime | *No description.* | | resetExpiryTime | *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 resetTokenId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Token resource upon running "cdktf plan ". | --- @@ -369,6 +431,50 @@ token.Token.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { token } from '@cdktf/provider-databricks' + +token.Token.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Token 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 Token to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Token that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/token#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 Token to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/user.csharp.md b/docs/user.csharp.md index 39b43b4f6..492602d09 100644 --- a/docs/user.csharp.md +++ b/docs/user.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. | | ResetAclPrincipalId | *No description.* | | ResetActive | *No description.* | | ResetAllowClusterCreate | *No description.* | @@ -152,6 +155,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 @@ -260,6 +279,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 @@ -272,6 +309,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. + +--- + ##### `ResetAclPrincipalId` ```csharp @@ -369,6 +430,7 @@ private void ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a User resource upon running "cdktf plan ". | --- @@ -432,6 +494,50 @@ User.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +User.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a User 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 User to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing User that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 User to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/user.go.md b/docs/user.go.md index 5463a781c..10e9b5e95 100644 --- a/docs/user.go.md +++ b/docs/user.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/user" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/user" user.NewUser(scope Construct, id *string, config UserConfig) User ``` @@ -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. | | ResetAclPrincipalId | *No description.* | | ResetActive | *No description.* | | ResetAllowClusterCreate | *No description.* | @@ -152,6 +155,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 @@ -260,6 +279,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 @@ -272,6 +309,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. + +--- + ##### `ResetAclPrincipalId` ```go @@ -369,13 +430,14 @@ func ResetWorkspaceAccess() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a User resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/user" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/user" user.User_IsConstruct(x interface{}) *bool ``` @@ -407,7 +469,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/user" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/user" user.User_IsTerraformElement(x interface{}) *bool ``` @@ -421,7 +483,7 @@ user.User_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/user" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/user" user.User_IsTerraformResource(x interface{}) *bool ``` @@ -432,6 +494,50 @@ user.User_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/user" + +user.User_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a User 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 User to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing User that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 User to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -972,7 +1078,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/user" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/user" &user.UserConfig { Connection: interface{}, diff --git a/docs/user.java.md b/docs/user.java.md index fde794728..ac5a777bb 100644 --- a/docs/user.java.md +++ b/docs/user.java.md @@ -286,6 +286,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.* | @@ -295,7 +296,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. | | resetAclPrincipalId | *No description.* | | resetActive | *No description.* | | resetAllowClusterCreate | *No description.* | @@ -378,6 +381,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 @@ -486,6 +505,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 @@ -498,6 +536,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. + +--- + ##### `resetAclPrincipalId` ```java @@ -595,6 +658,7 @@ public void resetWorkspaceAccess() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a User resource upon running "cdktf plan ". | --- @@ -658,6 +722,50 @@ User.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.user.User; + +User.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),User.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a User 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 User to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing User that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 User to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/user.python.md b/docs/user.python.md index eb5395781..729ad44f8 100644 --- a/docs/user.python.md +++ b/docs/user.python.md @@ -275,6 +275,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.* | @@ -284,7 +285,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_acl_principal_id | *No description.* | | reset_active | *No description.* | | reset_allow_cluster_create | *No description.* | @@ -372,6 +375,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 @@ -498,6 +519,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 @@ -512,6 +554,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_acl_principal_id` ```python @@ -609,6 +678,7 @@ def reset_workspace_access() -> 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 User resource upon running "cdktf plan ". | --- @@ -678,6 +748,55 @@ user.User.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import user + +user.User.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a User 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 User to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing User that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 User to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/user.typescript.md b/docs/user.typescript.md index ec039cd0f..dd849f805 100644 --- a/docs/user.typescript.md +++ b/docs/user.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. | | resetAclPrincipalId | *No description.* | | resetActive | *No description.* | | resetAllowClusterCreate | *No description.* | @@ -152,6 +155,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 @@ -260,6 +279,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 @@ -272,6 +309,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. + +--- + ##### `resetAclPrincipalId` ```typescript @@ -369,6 +430,7 @@ public resetWorkspaceAccess(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a User resource upon running "cdktf plan ". | --- @@ -432,6 +494,50 @@ user.User.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { user } from '@cdktf/provider-databricks' + +user.User.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a User 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 User to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing User that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/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 User to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userInstanceProfile.csharp.md b/docs/userInstanceProfile.csharp.md index 601d2c9cf..0f3a72073 100644 --- a/docs/userInstanceProfile.csharp.md +++ b/docs/userInstanceProfile.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 UserInstanceProfile resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ UserInstanceProfile.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +UserInstanceProfile.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a UserInstanceProfile 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 UserInstanceProfile to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing UserInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_instance_profile#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 UserInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userInstanceProfile.go.md b/docs/userInstanceProfile.go.md index 47310d1c6..60594839b 100644 --- a/docs/userInstanceProfile.go.md +++ b/docs/userInstanceProfile.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/userinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userinstanceprofile" userinstanceprofile.NewUserInstanceProfile(scope Construct, id *string, config UserInstanceProfileConfig) UserInstanceProfile ``` @@ -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 UserInstanceProfile resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/userinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userinstanceprofile" userinstanceprofile.UserInstanceProfile_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/userinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userinstanceprofile" userinstanceprofile.UserInstanceProfile_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ userinstanceprofile.UserInstanceProfile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/userinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userinstanceprofile" userinstanceprofile.UserInstanceProfile_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ userinstanceprofile.UserInstanceProfile_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userinstanceprofile" + +userinstanceprofile.UserInstanceProfile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a UserInstanceProfile 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 UserInstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing UserInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_instance_profile#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 UserInstanceProfile 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/userinstanceprofile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userinstanceprofile" &userinstanceprofile.UserInstanceProfileConfig { Connection: interface{}, diff --git a/docs/userInstanceProfile.java.md b/docs/userInstanceProfile.java.md index d9cb26ea4..84d2b396e 100644 --- a/docs/userInstanceProfile.java.md +++ b/docs/userInstanceProfile.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 UserInstanceProfile resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ UserInstanceProfile.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.user_instance_profile.UserInstanceProfile; + +UserInstanceProfile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),UserInstanceProfile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a UserInstanceProfile 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 UserInstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing UserInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_instance_profile#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 UserInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userInstanceProfile.python.md b/docs/userInstanceProfile.python.md index abe3c01d7..a8fe4567c 100644 --- a/docs/userInstanceProfile.python.md +++ b/docs/userInstanceProfile.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 UserInstanceProfile resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ userInstanceProfile.UserInstanceProfile.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import user_instance_profile + +userInstanceProfile.UserInstanceProfile.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a UserInstanceProfile 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 UserInstanceProfile to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing UserInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_instance_profile#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 UserInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userInstanceProfile.typescript.md b/docs/userInstanceProfile.typescript.md index 6e22a6103..c7ac0a4da 100644 --- a/docs/userInstanceProfile.typescript.md +++ b/docs/userInstanceProfile.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 UserInstanceProfile resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ userInstanceProfile.UserInstanceProfile.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { userInstanceProfile } from '@cdktf/provider-databricks' + +userInstanceProfile.UserInstanceProfile.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a UserInstanceProfile 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 UserInstanceProfile to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing UserInstanceProfile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_instance_profile#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 UserInstanceProfile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userRole.csharp.md b/docs/userRole.csharp.md index 9c8325cb1..b7b92e57c 100644 --- a/docs/userRole.csharp.md +++ b/docs/userRole.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 UserRole resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ UserRole.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +UserRole.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a UserRole 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 UserRole to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing UserRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_role#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 UserRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userRole.go.md b/docs/userRole.go.md index 568dc5cd4..92ce7704c 100644 --- a/docs/userRole.go.md +++ b/docs/userRole.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/userrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userrole" userrole.NewUserRole(scope Construct, id *string, config UserRoleConfig) UserRole ``` @@ -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 UserRole resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/userrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userrole" userrole.UserRole_IsConstruct(x interface{}) *bool ``` @@ -309,7 +371,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/userrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userrole" userrole.UserRole_IsTerraformElement(x interface{}) *bool ``` @@ -323,7 +385,7 @@ userrole.UserRole_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/userrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userrole" userrole.UserRole_IsTerraformResource(x interface{}) *bool ``` @@ -334,6 +396,50 @@ userrole.UserRole_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userrole" + +userrole.UserRole_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a UserRole 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 UserRole to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing UserRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_role#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 UserRole 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/userrole" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/userrole" &userrole.UserRoleConfig { Connection: interface{}, diff --git a/docs/userRole.java.md b/docs/userRole.java.md index cf6ad5d67..8764ab86e 100644 --- a/docs/userRole.java.md +++ b/docs/userRole.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 UserRole resource upon running "cdktf plan ". | --- @@ -421,6 +485,50 @@ UserRole.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.user_role.UserRole; + +UserRole.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),UserRole.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a UserRole 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 UserRole to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing UserRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_role#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 UserRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userRole.python.md b/docs/userRole.python.md index 10a90f9e2..84040cde4 100644 --- a/docs/userRole.python.md +++ b/docs/userRole.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 UserRole resource upon running "cdktf plan ". | --- @@ -450,6 +520,55 @@ userRole.UserRole.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import user_role + +userRole.UserRole.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a UserRole 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 UserRole to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing UserRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_role#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 UserRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/userRole.typescript.md b/docs/userRole.typescript.md index 092289786..133925f5d 100644 --- a/docs/userRole.typescript.md +++ b/docs/userRole.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 UserRole resource upon running "cdktf plan ". | --- @@ -334,6 +396,50 @@ userRole.UserRole.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { userRole } from '@cdktf/provider-databricks' + +userRole.UserRole.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a UserRole 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 UserRole to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing UserRole that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_role#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 UserRole to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/volume.csharp.md b/docs/volume.csharp.md index 2a31ef5ea..454a729d1 100644 --- a/docs/volume.csharp.md +++ b/docs/volume.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.* | | ResetOwner | *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. + +--- + ##### `ResetComment` ```csharp @@ -292,6 +353,7 @@ private void ResetStorageLocation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Volume resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ Volume.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +Volume.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a Volume 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 Volume to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing Volume that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/volume#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 Volume to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/volume.go.md b/docs/volume.go.md index 6288fcb39..a7cf0b97e 100644 --- a/docs/volume.go.md +++ b/docs/volume.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/volume" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/volume" volume.NewVolume(scope Construct, id *string, config VolumeConfig) Volume ``` @@ -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.* | | ResetOwner | *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. + +--- + ##### `ResetComment` ```go @@ -292,13 +353,14 @@ func ResetStorageLocation() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a Volume resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/volume" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/volume" volume.Volume_IsConstruct(x interface{}) *bool ``` @@ -330,7 +392,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/volume" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/volume" volume.Volume_IsTerraformElement(x interface{}) *bool ``` @@ -344,7 +406,7 @@ volume.Volume_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/volume" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/volume" volume.Volume_IsTerraformResource(x interface{}) *bool ``` @@ -355,6 +417,50 @@ volume.Volume_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/volume" + +volume.Volume_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a Volume 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 Volume to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing Volume that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/volume#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 Volume to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -719,7 +825,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/volume" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/volume" &volume.VolumeConfig { Connection: interface{}, diff --git a/docs/volume.java.md b/docs/volume.java.md index 8a9f1b4e1..fdabf8fd5 100644 --- a/docs/volume.java.md +++ b/docs/volume.java.md @@ -197,6 +197,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.* | @@ -206,7 +207,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.* | | resetOwner | *No description.* | @@ -278,6 +281,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 @@ -386,6 +405,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 @@ -398,6 +436,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 @@ -429,6 +492,7 @@ public void resetStorageLocation() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Volume resource upon running "cdktf plan ". | --- @@ -492,6 +556,50 @@ Volume.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.volume.Volume; + +Volume.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),Volume.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a Volume 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 Volume to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing Volume that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/volume#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 Volume to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/volume.python.md b/docs/volume.python.md index 0fede9418..b27ec4651 100644 --- a/docs/volume.python.md +++ b/docs/volume.python.md @@ -195,6 +195,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.* | @@ -204,7 +205,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_owner | *No description.* | @@ -281,6 +284,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 @@ -407,6 +428,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 @@ -421,6 +463,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 @@ -452,6 +521,7 @@ def reset_storage_location() -> 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 Volume resource upon running "cdktf plan ". | --- @@ -521,6 +591,55 @@ volume.Volume.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import volume + +volume.Volume.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a Volume 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 Volume to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing Volume that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/volume#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 Volume to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/volume.typescript.md b/docs/volume.typescript.md index 558238841..69c798b63 100644 --- a/docs/volume.typescript.md +++ b/docs/volume.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.* | | resetOwner | *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. + +--- + ##### `resetComment` ```typescript @@ -292,6 +353,7 @@ public resetStorageLocation(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a Volume resource upon running "cdktf plan ". | --- @@ -355,6 +417,50 @@ volume.Volume.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { volume } from '@cdktf/provider-databricks' + +volume.Volume.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a Volume 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 Volume to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing Volume that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/volume#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 Volume to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceConf.csharp.md b/docs/workspaceConf.csharp.md index 69cdbed5a..89c2bb26e 100644 --- a/docs/workspaceConf.csharp.md +++ b/docs/workspaceConf.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. | | ResetCustomConfig | *No description.* | | ResetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `ResetCustomConfig` ```csharp @@ -278,6 +339,7 @@ private void ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a WorkspaceConf resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ WorkspaceConf.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +WorkspaceConf.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a WorkspaceConf 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 WorkspaceConf to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing WorkspaceConf that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_conf#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 WorkspaceConf to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceConf.go.md b/docs/workspaceConf.go.md index 04588994d..2e0877987 100644 --- a/docs/workspaceConf.go.md +++ b/docs/workspaceConf.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/workspaceconf" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspaceconf" workspaceconf.NewWorkspaceConf(scope Construct, id *string, config WorkspaceConfConfig) WorkspaceConf ``` @@ -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. | | ResetCustomConfig | *No description.* | | ResetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `ResetCustomConfig` ```go @@ -278,13 +339,14 @@ func ResetId() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a WorkspaceConf resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspaceconf" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspaceconf" workspaceconf.WorkspaceConf_IsConstruct(x interface{}) *bool ``` @@ -316,7 +378,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspaceconf" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspaceconf" workspaceconf.WorkspaceConf_IsTerraformElement(x interface{}) *bool ``` @@ -330,7 +392,7 @@ workspaceconf.WorkspaceConf_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspaceconf" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspaceconf" workspaceconf.WorkspaceConf_IsTerraformResource(x interface{}) *bool ``` @@ -341,6 +403,50 @@ workspaceconf.WorkspaceConf_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspaceconf" + +workspaceconf.WorkspaceConf_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a WorkspaceConf 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 WorkspaceConf to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing WorkspaceConf that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_conf#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 WorkspaceConf to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -573,7 +679,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspaceconf" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspaceconf" &workspaceconf.WorkspaceConfConfig { Connection: interface{}, diff --git a/docs/workspaceConf.java.md b/docs/workspaceConf.java.md index 3754bb1be..78e62ee55 100644 --- a/docs/workspaceConf.java.md +++ b/docs/workspaceConf.java.md @@ -137,6 +137,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.* | @@ -146,7 +147,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. | | resetCustomConfig | *No description.* | | resetId | *No description.* | @@ -216,6 +219,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 @@ -324,6 +343,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 @@ -336,6 +374,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. + +--- + ##### `resetCustomConfig` ```java @@ -355,6 +418,7 @@ public void resetId() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a WorkspaceConf resource upon running "cdktf plan ". | --- @@ -418,6 +482,50 @@ WorkspaceConf.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.workspace_conf.WorkspaceConf; + +WorkspaceConf.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),WorkspaceConf.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a WorkspaceConf 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 WorkspaceConf to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing WorkspaceConf that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_conf#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 WorkspaceConf to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceConf.python.md b/docs/workspaceConf.python.md index 502807800..4296a3f8f 100644 --- a/docs/workspaceConf.python.md +++ b/docs/workspaceConf.python.md @@ -135,6 +135,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.* | @@ -144,7 +145,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_custom_config | *No description.* | | reset_id | *No description.* | @@ -219,6 +222,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 @@ -345,6 +366,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 @@ -359,6 +401,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_custom_config` ```python @@ -378,6 +447,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 WorkspaceConf resource upon running "cdktf plan ". | --- @@ -447,6 +517,55 @@ workspaceConf.WorkspaceConf.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import workspace_conf + +workspaceConf.WorkspaceConf.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a WorkspaceConf 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 WorkspaceConf to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing WorkspaceConf that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_conf#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 WorkspaceConf to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceConf.typescript.md b/docs/workspaceConf.typescript.md index e8c505c33..15dd08916 100644 --- a/docs/workspaceConf.typescript.md +++ b/docs/workspaceConf.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. | | resetCustomConfig | *No description.* | | resetId | *No description.* | @@ -139,6 +142,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 @@ -247,6 +266,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 @@ -259,6 +296,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. + +--- + ##### `resetCustomConfig` ```typescript @@ -278,6 +339,7 @@ public resetId(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a WorkspaceConf resource upon running "cdktf plan ". | --- @@ -341,6 +403,50 @@ workspaceConf.WorkspaceConf.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { workspaceConf } from '@cdktf/provider-databricks' + +workspaceConf.WorkspaceConf.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a WorkspaceConf 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 WorkspaceConf to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing WorkspaceConf that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_conf#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 WorkspaceConf to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceFile.csharp.md b/docs/workspaceFile.csharp.md index 9f453b6d4..543bb2b31 100644 --- a/docs/workspaceFile.csharp.md +++ b/docs/workspaceFile.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. | | ResetContentBase64 | *No description.* | | ResetId | *No description.* | | ResetMd5 | *No description.* | @@ -142,6 +145,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 @@ -250,6 +269,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 @@ -262,6 +299,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. + +--- + ##### `ResetContentBase64` ```csharp @@ -299,6 +360,7 @@ private void ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a WorkspaceFile resource upon running "cdktf plan ". | --- @@ -362,6 +424,50 @@ WorkspaceFile.IsTerraformResource(object X); --- +##### `GenerateConfigForImport` + +```csharp +using HashiCorp.Cdktf.Providers.Databricks; + +WorkspaceFile.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null); +``` + +Generates CDKTF code for importing a WorkspaceFile 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 WorkspaceFile to import. + +--- + +###### `ImportFromId`Required + +- *Type:* string + +The id of the existing WorkspaceFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_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 WorkspaceFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceFile.go.md b/docs/workspaceFile.go.md index e27a9cc52..5a2d74028 100644 --- a/docs/workspaceFile.go.md +++ b/docs/workspaceFile.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/workspacefile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspacefile" workspacefile.NewWorkspaceFile(scope Construct, id *string, config WorkspaceFileConfig) WorkspaceFile ``` @@ -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. | | ResetContentBase64 | *No description.* | | ResetId | *No description.* | | ResetMd5 | *No description.* | @@ -142,6 +145,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 @@ -250,6 +269,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 @@ -262,6 +299,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. + +--- + ##### `ResetContentBase64` ```go @@ -299,13 +360,14 @@ func ResetSource() | IsConstruct | Checks if `x` is a construct. | | IsTerraformElement | *No description.* | | IsTerraformResource | *No description.* | +| GenerateConfigForImport | Generates CDKTF code for importing a WorkspaceFile resource upon running "cdktf plan ". | --- ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspacefile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspacefile" workspacefile.WorkspaceFile_IsConstruct(x interface{}) *bool ``` @@ -337,7 +399,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspacefile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspacefile" workspacefile.WorkspaceFile_IsTerraformElement(x interface{}) *bool ``` @@ -351,7 +413,7 @@ workspacefile.WorkspaceFile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspacefile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspacefile" workspacefile.WorkspaceFile_IsTerraformResource(x interface{}) *bool ``` @@ -362,6 +424,50 @@ workspacefile.WorkspaceFile_IsTerraformResource(x interface{}) *bool --- +##### `GenerateConfigForImport` + +```go +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspacefile" + +workspacefile.WorkspaceFile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource +``` + +Generates CDKTF code for importing a WorkspaceFile 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 WorkspaceFile to import. + +--- + +###### `importFromId`Required + +- *Type:* *string + +The id of the existing WorkspaceFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_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 WorkspaceFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | @@ -693,7 +799,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v11/workspacefile" +import "github.com/cdktf/cdktf-provider-databricks-go/databricks/v12/workspacefile" &workspacefile.WorkspaceFileConfig { Connection: interface{}, diff --git a/docs/workspaceFile.java.md b/docs/workspaceFile.java.md index b7b2feb99..bd8c161a2 100644 --- a/docs/workspaceFile.java.md +++ b/docs/workspaceFile.java.md @@ -177,6 +177,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.* | @@ -186,7 +187,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. | | resetContentBase64 | *No description.* | | resetId | *No description.* | | resetMd5 | *No description.* | @@ -259,6 +262,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 @@ -367,6 +386,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 @@ -379,6 +417,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. + +--- + ##### `resetContentBase64` ```java @@ -416,6 +479,7 @@ public void resetSource() | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a WorkspaceFile resource upon running "cdktf plan ". | --- @@ -479,6 +543,50 @@ WorkspaceFile.isTerraformResource(java.lang.Object x) --- +##### `generateConfigForImport` + +```java +import com.hashicorp.cdktf.providers.databricks.workspace_file.WorkspaceFile; + +WorkspaceFile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId),WorkspaceFile.generateConfigForImport(Construct scope, java.lang.String importToId, java.lang.String importFromId, TerraformProvider provider) +``` + +Generates CDKTF code for importing a WorkspaceFile 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 WorkspaceFile to import. + +--- + +###### `importFromId`Required + +- *Type:* java.lang.String + +The id of the existing WorkspaceFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_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 WorkspaceFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceFile.python.md b/docs/workspaceFile.python.md index 9db272ca6..4c173b9ce 100644 --- a/docs/workspaceFile.python.md +++ b/docs/workspaceFile.python.md @@ -175,6 +175,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.* | @@ -184,7 +185,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_content_base64 | *No description.* | | reset_id | *No description.* | | reset_md5 | *No description.* | @@ -262,6 +265,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 @@ -388,6 +409,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 @@ -402,6 +444,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_content_base64` ```python @@ -439,6 +508,7 @@ def reset_source() -> 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 WorkspaceFile resource upon running "cdktf plan ". | --- @@ -508,6 +578,55 @@ workspaceFile.WorkspaceFile.is_terraform_resource( --- +##### `generate_config_for_import` + +```python +from cdktf_cdktf_provider_databricks import workspace_file + +workspaceFile.WorkspaceFile.generate_config_for_import( + scope: Construct, + import_to_id: str, + import_from_id: str, + provider: TerraformProvider = None +) +``` + +Generates CDKTF code for importing a WorkspaceFile 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 WorkspaceFile to import. + +--- + +###### `import_from_id`Required + +- *Type:* str + +The id of the existing WorkspaceFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_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 WorkspaceFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/docs/workspaceFile.typescript.md b/docs/workspaceFile.typescript.md index dd36e7fd7..57de07650 100644 --- a/docs/workspaceFile.typescript.md +++ b/docs/workspaceFile.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. | | resetContentBase64 | *No description.* | | resetId | *No description.* | | resetMd5 | *No description.* | @@ -142,6 +145,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 @@ -250,6 +269,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 @@ -262,6 +299,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. + +--- + ##### `resetContentBase64` ```typescript @@ -299,6 +360,7 @@ public resetSource(): void | isConstruct | Checks if `x` is a construct. | | isTerraformElement | *No description.* | | isTerraformResource | *No description.* | +| generateConfigForImport | Generates CDKTF code for importing a WorkspaceFile resource upon running "cdktf plan ". | --- @@ -362,6 +424,50 @@ workspaceFile.WorkspaceFile.isTerraformResource(x: any) --- +##### `generateConfigForImport` + +```typescript +import { workspaceFile } from '@cdktf/provider-databricks' + +workspaceFile.WorkspaceFile.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider) +``` + +Generates CDKTF code for importing a WorkspaceFile 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 WorkspaceFile to import. + +--- + +###### `importFromId`Required + +- *Type:* string + +The id of the existing WorkspaceFile that should be imported. + +Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_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 WorkspaceFile to import is found. + +--- + #### Properties | **Name** | **Type** | **Description** | diff --git a/package.json b/package.json index 1570b2c87..60ef1ee32 100644 --- a/package.json +++ b/package.json @@ -47,8 +47,8 @@ "@actions/core": "^1.1.0", "@cdktf/provider-project": "^0.2.95", "@types/node": "^18", - "cdktf": "^0.18.0", - "cdktf-cli": "^0.18.0", + "cdktf": "^0.19.0", + "cdktf-cli": "^0.19.0", "constructs": "^10.0.0", "dot-prop": "^5.2.0", "jsii": "^5.0.1", @@ -58,12 +58,12 @@ "jsii-rosetta": "~5.1.2", "node-fetch": "cjs", "npm-check-updates": "^16", - "projen": "^0.74.18", + "projen": "^0.75.0", "standard-version": "^9", "typescript": "^4.9.5" }, "peerDependencies": { - "cdktf": "^0.18.0", + "cdktf": "^0.19.0", "constructs": "^10.0.0" }, "resolutions": { diff --git a/src/access-control-rule-set/index.ts b/src/access-control-rule-set/index.ts index a30e3b729..2bf532491 100644 --- a/src/access-control-rule-set/index.ts +++ b/src/access-control-rule-set/index.ts @@ -162,6 +162,20 @@ export class AccessControlRuleSet extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_access_control_rule_set"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a AccessControlRuleSet resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the AccessControlRuleSet to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the AccessControlRuleSet to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_access_control_rule_set", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/aws-s3-mount/index.ts b/src/aws-s3-mount/index.ts index f17936f5a..a10f8f023 100644 --- a/src/aws-s3-mount/index.ts +++ b/src/aws-s3-mount/index.ts @@ -47,6 +47,20 @@ export class AwsS3Mount extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_aws_s3_mount"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a AwsS3Mount resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the AwsS3Mount to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the AwsS3Mount to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_aws_s3_mount", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/azure-adls-gen1-mount/index.ts b/src/azure-adls-gen1-mount/index.ts index 53aea570e..4e8f31a27 100644 --- a/src/azure-adls-gen1-mount/index.ts +++ b/src/azure-adls-gen1-mount/index.ts @@ -67,6 +67,20 @@ export class AzureAdlsGen1Mount extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_azure_adls_gen1_mount"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a AzureAdlsGen1Mount resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the AzureAdlsGen1Mount to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the AzureAdlsGen1Mount to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_azure_adls_gen1_mount", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/azure-adls-gen2-mount/index.ts b/src/azure-adls-gen2-mount/index.ts index 5b471b761..4e206e916 100644 --- a/src/azure-adls-gen2-mount/index.ts +++ b/src/azure-adls-gen2-mount/index.ts @@ -71,6 +71,20 @@ export class AzureAdlsGen2Mount extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_azure_adls_gen2_mount"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a AzureAdlsGen2Mount resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the AzureAdlsGen2Mount to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the AzureAdlsGen2Mount to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_azure_adls_gen2_mount", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/azure-blob-mount/index.ts b/src/azure-blob-mount/index.ts index 1c374834e..a4fcac472 100644 --- a/src/azure-blob-mount/index.ts +++ b/src/azure-blob-mount/index.ts @@ -63,6 +63,20 @@ export class AzureBlobMount extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_azure_blob_mount"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a AzureBlobMount resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the AzureBlobMount to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the AzureBlobMount to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_azure_blob_mount", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/catalog-workspace-binding/index.ts b/src/catalog-workspace-binding/index.ts index 7a3603abc..13bc56b89 100644 --- a/src/catalog-workspace-binding/index.ts +++ b/src/catalog-workspace-binding/index.ts @@ -39,6 +39,20 @@ export class CatalogWorkspaceBinding extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_catalog_workspace_binding"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a CatalogWorkspaceBinding resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the CatalogWorkspaceBinding to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the CatalogWorkspaceBinding to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_catalog_workspace_binding", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/catalog/index.ts b/src/catalog/index.ts index b4cc0d6a0..e448dc690 100644 --- a/src/catalog/index.ts +++ b/src/catalog/index.ts @@ -79,6 +79,20 @@ export class Catalog extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_catalog"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Catalog resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Catalog to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the Catalog to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_catalog", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/cluster-policy/index.ts b/src/cluster-policy/index.ts index 3d7a71b95..2684ba053 100644 --- a/src/cluster-policy/index.ts +++ b/src/cluster-policy/index.ts @@ -55,6 +55,20 @@ export class ClusterPolicy extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_cluster_policy"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ClusterPolicy resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ClusterPolicy to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the ClusterPolicy to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_cluster_policy", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/cluster/index.ts b/src/cluster/index.ts index ba5dea2b0..b737be3f3 100644 --- a/src/cluster/index.ts +++ b/src/cluster/index.ts @@ -3346,6 +3346,20 @@ export class Cluster extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_cluster"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Cluster resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Cluster to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the Cluster to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_cluster", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/connection/index.ts b/src/connection/index.ts index 91559b91c..1b1652723 100644 --- a/src/connection/index.ts +++ b/src/connection/index.ts @@ -63,6 +63,20 @@ export class Connection extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_connection"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Connection resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Connection to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the Connection to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_connection", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-aws-assume-role-policy/index.ts b/src/data-databricks-aws-assume-role-policy/index.ts index a1f42e18a..3ce64bb54 100644 --- a/src/data-databricks-aws-assume-role-policy/index.ts +++ b/src/data-databricks-aws-assume-role-policy/index.ts @@ -45,6 +45,20 @@ export class DataDatabricksAwsAssumeRolePolicy extends cdktf.TerraformDataSource // ================= public static readonly tfResourceType = "databricks_aws_assume_role_policy"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksAwsAssumeRolePolicy resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksAwsAssumeRolePolicy to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksAwsAssumeRolePolicy to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_aws_assume_role_policy", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-aws-bucket-policy/index.ts b/src/data-databricks-aws-bucket-policy/index.ts index 7c78e5d3d..4f2cfe065 100644 --- a/src/data-databricks-aws-bucket-policy/index.ts +++ b/src/data-databricks-aws-bucket-policy/index.ts @@ -47,6 +47,20 @@ export class DataDatabricksAwsBucketPolicy extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_aws_bucket_policy"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksAwsBucketPolicy resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksAwsBucketPolicy to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksAwsBucketPolicy to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_aws_bucket_policy", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-aws-crossaccount-policy/index.ts b/src/data-databricks-aws-crossaccount-policy/index.ts index af06aebaa..c5a30017b 100644 --- a/src/data-databricks-aws-crossaccount-policy/index.ts +++ b/src/data-databricks-aws-crossaccount-policy/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksAwsCrossaccountPolicy extends cdktf.TerraformDataSour // ================= public static readonly tfResourceType = "databricks_aws_crossaccount_policy"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksAwsCrossaccountPolicy resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksAwsCrossaccountPolicy to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksAwsCrossaccountPolicy to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_aws_crossaccount_policy", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-catalogs/index.ts b/src/data-databricks-catalogs/index.ts index b8a7c6519..c3cc99812 100644 --- a/src/data-databricks-catalogs/index.ts +++ b/src/data-databricks-catalogs/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksCatalogs extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_catalogs"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksCatalogs resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksCatalogs to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksCatalogs to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_catalogs", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-cluster-policy/index.ts b/src/data-databricks-cluster-policy/index.ts index ed022917a..e9f4bfec1 100644 --- a/src/data-databricks-cluster-policy/index.ts +++ b/src/data-databricks-cluster-policy/index.ts @@ -59,6 +59,20 @@ export class DataDatabricksClusterPolicy extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_cluster_policy"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksClusterPolicy resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksClusterPolicy to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksClusterPolicy to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_cluster_policy", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-cluster/index.ts b/src/data-databricks-cluster/index.ts index 1d377fa98..5d2fc262b 100644 --- a/src/data-databricks-cluster/index.ts +++ b/src/data-databricks-cluster/index.ts @@ -4196,6 +4196,20 @@ export class DataDatabricksCluster extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_cluster"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksCluster resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksCluster to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksCluster to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_cluster", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-clusters/index.ts b/src/data-databricks-clusters/index.ts index 6695054ee..0592eb9f1 100644 --- a/src/data-databricks-clusters/index.ts +++ b/src/data-databricks-clusters/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksClusters extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_clusters"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksClusters resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksClusters to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksClusters to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_clusters", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-current-user/index.ts b/src/data-databricks-current-user/index.ts index 668fdd834..428b6b8de 100644 --- a/src/data-databricks-current-user/index.ts +++ b/src/data-databricks-current-user/index.ts @@ -31,6 +31,20 @@ export class DataDatabricksCurrentUser extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_current_user"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksCurrentUser resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksCurrentUser to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksCurrentUser to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_current_user", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-dbfs-file-paths/index.ts b/src/data-databricks-dbfs-file-paths/index.ts index 6639c8bfe..25847cd07 100644 --- a/src/data-databricks-dbfs-file-paths/index.ts +++ b/src/data-databricks-dbfs-file-paths/index.ts @@ -108,6 +108,20 @@ export class DataDatabricksDbfsFilePaths extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_dbfs_file_paths"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksDbfsFilePaths resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksDbfsFilePaths to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksDbfsFilePaths to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_dbfs_file_paths", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-dbfs-file/index.ts b/src/data-databricks-dbfs-file/index.ts index 225895428..9009a68c9 100644 --- a/src/data-databricks-dbfs-file/index.ts +++ b/src/data-databricks-dbfs-file/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksDbfsFile extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_dbfs_file"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksDbfsFile resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksDbfsFile to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksDbfsFile to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_dbfs_file", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-directory/index.ts b/src/data-databricks-directory/index.ts index 5cd3ddc89..387e473e6 100644 --- a/src/data-databricks-directory/index.ts +++ b/src/data-databricks-directory/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksDirectory extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_directory"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksDirectory resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksDirectory to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksDirectory to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_directory", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-group/index.ts b/src/data-databricks-group/index.ts index 82c2a1ede..77a7738ca 100644 --- a/src/data-databricks-group/index.ts +++ b/src/data-databricks-group/index.ts @@ -87,6 +87,20 @@ export class DataDatabricksGroup extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_group"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksGroup resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksGroup to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksGroup to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_group", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-instance-pool/index.ts b/src/data-databricks-instance-pool/index.ts index 1dcd227eb..e684ce658 100644 --- a/src/data-databricks-instance-pool/index.ts +++ b/src/data-databricks-instance-pool/index.ts @@ -1894,6 +1894,20 @@ export class DataDatabricksInstancePool extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_instance_pool"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksInstancePool resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksInstancePool to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksInstancePool to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_instance_pool", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-job/index.ts b/src/data-databricks-job/index.ts index a59a5f23a..adebda24a 100644 --- a/src/data-databricks-job/index.ts +++ b/src/data-databricks-job/index.ts @@ -49,6 +49,20 @@ export class DataDatabricksJob extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_job"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksJob resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksJob to import + * @param importFromId 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 + * @param provider? Optional instance of the provider where the DataDatabricksJob to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_job", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-jobs/index.ts b/src/data-databricks-jobs/index.ts index c1447bfa6..4bc96407f 100644 --- a/src/data-databricks-jobs/index.ts +++ b/src/data-databricks-jobs/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksJobs extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_jobs"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksJobs resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksJobs to import + * @param importFromId The id of the existing DataDatabricksJobs that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/jobs#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksJobs to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_jobs", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-metastore/index.ts b/src/data-databricks-metastore/index.ts index a5a79b4a3..5ee4926c6 100644 --- a/src/data-databricks-metastore/index.ts +++ b/src/data-databricks-metastore/index.ts @@ -565,6 +565,20 @@ export class DataDatabricksMetastore extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_metastore"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksMetastore resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksMetastore to import + * @param importFromId The id of the existing DataDatabricksMetastore that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastore#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksMetastore to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_metastore", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-metastores/index.ts b/src/data-databricks-metastores/index.ts index 1ff420061..5c0267b43 100644 --- a/src/data-databricks-metastores/index.ts +++ b/src/data-databricks-metastores/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksMetastores extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_metastores"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksMetastores resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksMetastores to import + * @param importFromId The id of the existing DataDatabricksMetastores that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/metastores#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksMetastores to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_metastores", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-mws-credentials/index.ts b/src/data-databricks-mws-credentials/index.ts index a9e0a47b9..577f7ccbd 100644 --- a/src/data-databricks-mws-credentials/index.ts +++ b/src/data-databricks-mws-credentials/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksMwsCredentials extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_mws_credentials"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksMwsCredentials resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksMwsCredentials to import + * @param importFromId The id of the existing DataDatabricksMwsCredentials that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_credentials#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksMwsCredentials to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_credentials", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-mws-workspaces/index.ts b/src/data-databricks-mws-workspaces/index.ts index ccd0e3fd9..45e112d35 100644 --- a/src/data-databricks-mws-workspaces/index.ts +++ b/src/data-databricks-mws-workspaces/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksMwsWorkspaces extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_mws_workspaces"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksMwsWorkspaces resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksMwsWorkspaces to import + * @param importFromId The id of the existing DataDatabricksMwsWorkspaces that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/mws_workspaces#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksMwsWorkspaces to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_workspaces", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-node-type/index.ts b/src/data-databricks-node-type/index.ts index 3033bb2d9..8c58df9ae 100644 --- a/src/data-databricks-node-type/index.ts +++ b/src/data-databricks-node-type/index.ts @@ -83,6 +83,20 @@ export class DataDatabricksNodeType extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_node_type"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksNodeType resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksNodeType to import + * @param importFromId The id of the existing DataDatabricksNodeType that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/node_type#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksNodeType to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_node_type", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-notebook-paths/index.ts b/src/data-databricks-notebook-paths/index.ts index ecf7fa443..b136f1d05 100644 --- a/src/data-databricks-notebook-paths/index.ts +++ b/src/data-databricks-notebook-paths/index.ts @@ -108,6 +108,20 @@ export class DataDatabricksNotebookPaths extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_notebook_paths"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksNotebookPaths resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksNotebookPaths to import + * @param importFromId The id of the existing DataDatabricksNotebookPaths that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook_paths#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksNotebookPaths to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_notebook_paths", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-notebook/index.ts b/src/data-databricks-notebook/index.ts index 13e081781..7f8f86a89 100644 --- a/src/data-databricks-notebook/index.ts +++ b/src/data-databricks-notebook/index.ts @@ -51,6 +51,20 @@ export class DataDatabricksNotebook extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_notebook"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksNotebook resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksNotebook to import + * @param importFromId The id of the existing DataDatabricksNotebook that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/notebook#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksNotebook to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_notebook", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-pipelines/index.ts b/src/data-databricks-pipelines/index.ts index 8a6855da9..71bb04008 100644 --- a/src/data-databricks-pipelines/index.ts +++ b/src/data-databricks-pipelines/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksPipelines extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_pipelines"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksPipelines resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksPipelines to import + * @param importFromId The id of the existing DataDatabricksPipelines that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/pipelines#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksPipelines to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_pipelines", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-schemas/index.ts b/src/data-databricks-schemas/index.ts index 1b6ba57e4..ebc5dac12 100644 --- a/src/data-databricks-schemas/index.ts +++ b/src/data-databricks-schemas/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksSchemas extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_schemas"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksSchemas resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksSchemas to import + * @param importFromId The id of the existing DataDatabricksSchemas that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/schemas#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksSchemas to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_schemas", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-service-principal/index.ts b/src/data-databricks-service-principal/index.ts index 0ca7cb3cf..a5ca2ff11 100644 --- a/src/data-databricks-service-principal/index.ts +++ b/src/data-databricks-service-principal/index.ts @@ -63,6 +63,20 @@ export class DataDatabricksServicePrincipal extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_service_principal"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksServicePrincipal resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksServicePrincipal to import + * @param importFromId The id of the existing DataDatabricksServicePrincipal that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principal#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksServicePrincipal to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_service_principal", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-service-principals/index.ts b/src/data-databricks-service-principals/index.ts index 5106492b0..91aa8f40b 100644 --- a/src/data-databricks-service-principals/index.ts +++ b/src/data-databricks-service-principals/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksServicePrincipals extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_service_principals"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksServicePrincipals resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksServicePrincipals to import + * @param importFromId The id of the existing DataDatabricksServicePrincipals that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/service_principals#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksServicePrincipals to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_service_principals", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-share/index.ts b/src/data-databricks-share/index.ts index f5c02512e..93eac4ae7 100644 --- a/src/data-databricks-share/index.ts +++ b/src/data-databricks-share/index.ts @@ -680,6 +680,20 @@ export class DataDatabricksShare extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_share"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksShare resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksShare to import + * @param importFromId The id of the existing DataDatabricksShare that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/share#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksShare to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_share", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-shares/index.ts b/src/data-databricks-shares/index.ts index fef8a048a..f64df952a 100644 --- a/src/data-databricks-shares/index.ts +++ b/src/data-databricks-shares/index.ts @@ -35,6 +35,20 @@ export class DataDatabricksShares extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_shares"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksShares resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksShares to import + * @param importFromId The id of the existing DataDatabricksShares that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/shares#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksShares to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_shares", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-spark-version/index.ts b/src/data-databricks-spark-version/index.ts index d6d615fb0..d1c6f7326 100644 --- a/src/data-databricks-spark-version/index.ts +++ b/src/data-databricks-spark-version/index.ts @@ -71,6 +71,20 @@ export class DataDatabricksSparkVersion extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_spark_version"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksSparkVersion resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksSparkVersion to import + * @param importFromId The id of the existing DataDatabricksSparkVersion that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/spark_version#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksSparkVersion to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_spark_version", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-sql-warehouse/index.ts b/src/data-databricks-sql-warehouse/index.ts index 9393aa85e..a2667c804 100644 --- a/src/data-databricks-sql-warehouse/index.ts +++ b/src/data-databricks-sql-warehouse/index.ts @@ -512,6 +512,20 @@ export class DataDatabricksSqlWarehouse extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_sql_warehouse"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksSqlWarehouse resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksSqlWarehouse to import + * @param importFromId The id of the existing DataDatabricksSqlWarehouse that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouse#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksSqlWarehouse to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_warehouse", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-sql-warehouses/index.ts b/src/data-databricks-sql-warehouses/index.ts index 79830bd77..13ff4d000 100644 --- a/src/data-databricks-sql-warehouses/index.ts +++ b/src/data-databricks-sql-warehouses/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksSqlWarehouses extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_sql_warehouses"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksSqlWarehouses resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksSqlWarehouses to import + * @param importFromId The id of the existing DataDatabricksSqlWarehouses that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/sql_warehouses#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksSqlWarehouses to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_warehouses", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-tables/index.ts b/src/data-databricks-tables/index.ts index acd6eef52..10b6607ba 100644 --- a/src/data-databricks-tables/index.ts +++ b/src/data-databricks-tables/index.ts @@ -43,6 +43,20 @@ export class DataDatabricksTables extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_tables"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksTables resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksTables to import + * @param importFromId The id of the existing DataDatabricksTables that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/tables#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksTables to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_tables", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-user/index.ts b/src/data-databricks-user/index.ts index bf14a77e9..b3c737eee 100644 --- a/src/data-databricks-user/index.ts +++ b/src/data-databricks-user/index.ts @@ -39,6 +39,20 @@ export class DataDatabricksUser extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_user"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksUser resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksUser to import + * @param importFromId The id of the existing DataDatabricksUser that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/user#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksUser to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_user", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-views/index.ts b/src/data-databricks-views/index.ts index 0f6ff254c..249665f2d 100644 --- a/src/data-databricks-views/index.ts +++ b/src/data-databricks-views/index.ts @@ -43,6 +43,20 @@ export class DataDatabricksViews extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_views"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksViews resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksViews to import + * @param importFromId The id of the existing DataDatabricksViews that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/views#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksViews to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_views", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/data-databricks-zones/index.ts b/src/data-databricks-zones/index.ts index e46c19731..e95e7a679 100644 --- a/src/data-databricks-zones/index.ts +++ b/src/data-databricks-zones/index.ts @@ -31,6 +31,20 @@ export class DataDatabricksZones extends cdktf.TerraformDataSource { // ================= public static readonly tfResourceType = "databricks_zones"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataDatabricksZones resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataDatabricksZones to import + * @param importFromId The id of the existing DataDatabricksZones that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/data-sources/zones#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataDatabricksZones to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_zones", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/dbfs-file/index.ts b/src/dbfs-file/index.ts index ce5a933d7..328281f0d 100644 --- a/src/dbfs-file/index.ts +++ b/src/dbfs-file/index.ts @@ -47,6 +47,20 @@ export class DbfsFile extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_dbfs_file"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DbfsFile resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DbfsFile to import + * @param importFromId The id of the existing DbfsFile that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/dbfs_file#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DbfsFile to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_dbfs_file", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/directory/index.ts b/src/directory/index.ts index 30519f803..ac334fd04 100644 --- a/src/directory/index.ts +++ b/src/directory/index.ts @@ -43,6 +43,20 @@ export class Directory extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_directory"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Directory resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Directory to import + * @param importFromId The id of the existing Directory that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/directory#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Directory to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_directory", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/entitlements/index.ts b/src/entitlements/index.ts index e3d574498..44510dc79 100644 --- a/src/entitlements/index.ts +++ b/src/entitlements/index.ts @@ -59,6 +59,20 @@ export class Entitlements extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_entitlements"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Entitlements resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Entitlements to import + * @param importFromId The id of the existing Entitlements that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/entitlements#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Entitlements to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_entitlements", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/external-location/index.ts b/src/external-location/index.ts index 91d9234b4..966dbdef2 100644 --- a/src/external-location/index.ts +++ b/src/external-location/index.ts @@ -240,6 +240,20 @@ export class ExternalLocation extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_external_location"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ExternalLocation resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ExternalLocation to import + * @param importFromId The id of the existing ExternalLocation that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/external_location#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the ExternalLocation to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_external_location", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/git-credential/index.ts b/src/git-credential/index.ts index f2cac5e54..bb493835f 100644 --- a/src/git-credential/index.ts +++ b/src/git-credential/index.ts @@ -47,6 +47,20 @@ export class GitCredential extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_git_credential"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a GitCredential resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the GitCredential to import + * @param importFromId The id of the existing GitCredential that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/git_credential#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the GitCredential to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_git_credential", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/global-init-script/index.ts b/src/global-init-script/index.ts index 19b518491..c9a19c19e 100644 --- a/src/global-init-script/index.ts +++ b/src/global-init-script/index.ts @@ -109,6 +109,20 @@ export class GlobalInitScript extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_global_init_script"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a GlobalInitScript resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the GlobalInitScript to import + * @param importFromId The id of the existing GlobalInitScript that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/global_init_script#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the GlobalInitScript to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_global_init_script", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/grants/index.ts b/src/grants/index.ts index d1580cdf2..6ba18b945 100644 --- a/src/grants/index.ts +++ b/src/grants/index.ts @@ -207,6 +207,20 @@ export class Grants extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_grants"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Grants resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Grants to import + * @param importFromId The id of the existing Grants that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/grants#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Grants to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_grants", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/group-instance-profile/index.ts b/src/group-instance-profile/index.ts index ec0cfa233..c382b56a6 100644 --- a/src/group-instance-profile/index.ts +++ b/src/group-instance-profile/index.ts @@ -39,6 +39,20 @@ export class GroupInstanceProfile extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_group_instance_profile"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a GroupInstanceProfile resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the GroupInstanceProfile to import + * @param importFromId The id of the existing GroupInstanceProfile that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_instance_profile#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the GroupInstanceProfile to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_group_instance_profile", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/group-member/index.ts b/src/group-member/index.ts index 078de9f92..cea73b5cb 100644 --- a/src/group-member/index.ts +++ b/src/group-member/index.ts @@ -39,6 +39,20 @@ export class GroupMember extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_group_member"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a GroupMember resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the GroupMember to import + * @param importFromId The id of the existing GroupMember that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_member#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the GroupMember to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_group_member", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/group-role/index.ts b/src/group-role/index.ts index 11fce6e0f..1e3b0871e 100644 --- a/src/group-role/index.ts +++ b/src/group-role/index.ts @@ -39,6 +39,20 @@ export class GroupRole extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_group_role"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a GroupRole resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the GroupRole to import + * @param importFromId The id of the existing GroupRole that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group_role#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the GroupRole to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_group_role", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/group/index.ts b/src/group/index.ts index 6adeec58d..6825198b7 100644 --- a/src/group/index.ts +++ b/src/group/index.ts @@ -67,6 +67,20 @@ export class Group extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_group"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Group resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Group to import + * @param importFromId The id of the existing Group that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/group#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Group to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_group", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/instance-pool/index.ts b/src/instance-pool/index.ts index 6dbbff1c8..6373f0c76 100644 --- a/src/instance-pool/index.ts +++ b/src/instance-pool/index.ts @@ -1246,6 +1246,20 @@ export class InstancePool extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_instance_pool"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a InstancePool resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the InstancePool to import + * @param importFromId The id of the existing InstancePool that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_pool#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the InstancePool to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_instance_pool", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/instance-profile/index.ts b/src/instance-profile/index.ts index dbcf49428..0ba33f8d8 100644 --- a/src/instance-profile/index.ts +++ b/src/instance-profile/index.ts @@ -47,6 +47,20 @@ export class InstanceProfile extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_instance_profile"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a InstanceProfile resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the InstanceProfile to import + * @param importFromId The id of the existing InstanceProfile that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/instance_profile#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the InstanceProfile to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_instance_profile", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/ip-access-list/index.ts b/src/ip-access-list/index.ts index f2f3c825c..93c8791d3 100644 --- a/src/ip-access-list/index.ts +++ b/src/ip-access-list/index.ts @@ -47,6 +47,20 @@ export class IpAccessList extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_ip_access_list"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a IpAccessList resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the IpAccessList to import + * @param importFromId The id of the existing IpAccessList that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/ip_access_list#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the IpAccessList to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_ip_access_list", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/job/index.ts b/src/job/index.ts index d1c824bef..afe94ed57 100644 --- a/src/job/index.ts +++ b/src/job/index.ts @@ -18113,6 +18113,20 @@ export class Job extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_job"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Job resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Job to import + * @param importFromId The id of the existing Job that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/job#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Job to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_job", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/library/index.ts b/src/library/index.ts index 6c10f3223..9c8be4de8 100644 --- a/src/library/index.ts +++ b/src/library/index.ts @@ -359,6 +359,20 @@ export class Library extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_library"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Library resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Library to import + * @param importFromId The id of the existing Library that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/library#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Library to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_library", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/metastore-assignment/index.ts b/src/metastore-assignment/index.ts index fc9f23603..1abfa3153 100644 --- a/src/metastore-assignment/index.ts +++ b/src/metastore-assignment/index.ts @@ -43,6 +43,20 @@ export class MetastoreAssignment extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_metastore_assignment"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MetastoreAssignment resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MetastoreAssignment to import + * @param importFromId The id of the existing MetastoreAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_assignment#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MetastoreAssignment to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_metastore_assignment", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/metastore-data-access/index.ts b/src/metastore-data-access/index.ts index 5e7886d17..8684566aa 100644 --- a/src/metastore-data-access/index.ts +++ b/src/metastore-data-access/index.ts @@ -579,6 +579,20 @@ export class MetastoreDataAccess extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_metastore_data_access"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MetastoreDataAccess resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MetastoreDataAccess to import + * @param importFromId The id of the existing MetastoreDataAccess that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore_data_access#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MetastoreDataAccess to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_metastore_data_access", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/metastore/index.ts b/src/metastore/index.ts index d795a52f7..49c8279f4 100644 --- a/src/metastore/index.ts +++ b/src/metastore/index.ts @@ -99,6 +99,20 @@ export class Metastore extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_metastore"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Metastore resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Metastore to import + * @param importFromId The id of the existing Metastore that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/metastore#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Metastore to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_metastore", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mlflow-experiment/index.ts b/src/mlflow-experiment/index.ts index 7d1d77df5..f9f543ab6 100644 --- a/src/mlflow-experiment/index.ts +++ b/src/mlflow-experiment/index.ts @@ -113,6 +113,20 @@ export class MlflowExperiment extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mlflow_experiment"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MlflowExperiment resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MlflowExperiment to import + * @param importFromId The id of the existing MlflowExperiment that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_experiment#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MlflowExperiment to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mlflow_experiment", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mlflow-model/index.ts b/src/mlflow-model/index.ts index dd32d76a7..80b8d979f 100644 --- a/src/mlflow-model/index.ts +++ b/src/mlflow-model/index.ts @@ -181,6 +181,20 @@ export class MlflowModel extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mlflow_model"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MlflowModel resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MlflowModel to import + * @param importFromId The id of the existing MlflowModel that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_model#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MlflowModel to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mlflow_model", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mlflow-webhook/index.ts b/src/mlflow-webhook/index.ts index 15f1d871b..1f8021b87 100644 --- a/src/mlflow-webhook/index.ts +++ b/src/mlflow-webhook/index.ts @@ -315,6 +315,20 @@ export class MlflowWebhook extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mlflow_webhook"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MlflowWebhook resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MlflowWebhook to import + * @param importFromId The id of the existing MlflowWebhook that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mlflow_webhook#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MlflowWebhook to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mlflow_webhook", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/model-serving/index.ts b/src/model-serving/index.ts index 3d1cfa690..66e6a1944 100644 --- a/src/model-serving/index.ts +++ b/src/model-serving/index.ts @@ -831,6 +831,20 @@ export class ModelServing extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_model_serving"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ModelServing resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ModelServing to import + * @param importFromId The id of the existing ModelServing that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/model_serving#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the ModelServing to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_model_serving", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mount/index.ts b/src/mount/index.ts index 02f815391..f29a546b5 100644 --- a/src/mount/index.ts +++ b/src/mount/index.ts @@ -995,6 +995,20 @@ export class Mount extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mount"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Mount resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Mount to import + * @param importFromId The id of the existing Mount that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mount#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Mount to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mount", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-credentials/index.ts b/src/mws-credentials/index.ts index e1a700101..6dd895d82 100644 --- a/src/mws-credentials/index.ts +++ b/src/mws-credentials/index.ts @@ -43,6 +43,20 @@ export class MwsCredentials extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_credentials"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsCredentials resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsCredentials to import + * @param importFromId The id of the existing MwsCredentials that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_credentials#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsCredentials to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_credentials", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-customer-managed-keys/index.ts b/src/mws-customer-managed-keys/index.ts index 7ab17e965..0480a35c9 100644 --- a/src/mws-customer-managed-keys/index.ts +++ b/src/mws-customer-managed-keys/index.ts @@ -234,6 +234,20 @@ export class MwsCustomerManagedKeys extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_customer_managed_keys"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsCustomerManagedKeys resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsCustomerManagedKeys to import + * @param importFromId The id of the existing MwsCustomerManagedKeys that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_customer_managed_keys#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsCustomerManagedKeys to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_customer_managed_keys", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-log-delivery/index.ts b/src/mws-log-delivery/index.ts index d68924be7..4602e7d58 100644 --- a/src/mws-log-delivery/index.ts +++ b/src/mws-log-delivery/index.ts @@ -75,6 +75,20 @@ export class MwsLogDelivery extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_log_delivery"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsLogDelivery resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsLogDelivery to import + * @param importFromId The id of the existing MwsLogDelivery that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_log_delivery#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsLogDelivery to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_log_delivery", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-networks/index.ts b/src/mws-networks/index.ts index ccafb65db..24bfaf0ea 100644 --- a/src/mws-networks/index.ts +++ b/src/mws-networks/index.ts @@ -477,6 +477,20 @@ export class MwsNetworks extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_networks"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsNetworks resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsNetworks to import + * @param importFromId The id of the existing MwsNetworks that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_networks#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsNetworks to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_networks", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-permission-assignment/index.ts b/src/mws-permission-assignment/index.ts index 7425a0878..fdeaea3bf 100644 --- a/src/mws-permission-assignment/index.ts +++ b/src/mws-permission-assignment/index.ts @@ -43,6 +43,20 @@ export class MwsPermissionAssignment extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_permission_assignment"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsPermissionAssignment resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsPermissionAssignment to import + * @param importFromId The id of the existing MwsPermissionAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_permission_assignment#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsPermissionAssignment to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_permission_assignment", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-private-access-settings/index.ts b/src/mws-private-access-settings/index.ts index 65eff786d..8e7450769 100644 --- a/src/mws-private-access-settings/index.ts +++ b/src/mws-private-access-settings/index.ts @@ -63,6 +63,20 @@ export class MwsPrivateAccessSettings extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_private_access_settings"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsPrivateAccessSettings resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsPrivateAccessSettings to import + * @param importFromId The id of the existing MwsPrivateAccessSettings that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_private_access_settings#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsPrivateAccessSettings to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_private_access_settings", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-storage-configurations/index.ts b/src/mws-storage-configurations/index.ts index 2193d183e..920e189e1 100644 --- a/src/mws-storage-configurations/index.ts +++ b/src/mws-storage-configurations/index.ts @@ -43,6 +43,20 @@ export class MwsStorageConfigurations extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_storage_configurations"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsStorageConfigurations resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsStorageConfigurations to import + * @param importFromId The id of the existing MwsStorageConfigurations that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_storage_configurations#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsStorageConfigurations to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_storage_configurations", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-vpc-endpoint/index.ts b/src/mws-vpc-endpoint/index.ts index 19446c791..a2195b093 100644 --- a/src/mws-vpc-endpoint/index.ts +++ b/src/mws-vpc-endpoint/index.ts @@ -237,6 +237,20 @@ export class MwsVpcEndpoint extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_vpc_endpoint"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsVpcEndpoint resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsVpcEndpoint to import + * @param importFromId The id of the existing MwsVpcEndpoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_vpc_endpoint#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsVpcEndpoint to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_vpc_endpoint", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/mws-workspaces/index.ts b/src/mws-workspaces/index.ts index 0ff3ca0fe..2ec023ed7 100644 --- a/src/mws-workspaces/index.ts +++ b/src/mws-workspaces/index.ts @@ -854,6 +854,20 @@ export class MwsWorkspaces extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_mws_workspaces"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a MwsWorkspaces resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the MwsWorkspaces to import + * @param importFromId The id of the existing MwsWorkspaces that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/mws_workspaces#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the MwsWorkspaces to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_mws_workspaces", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/notebook/index.ts b/src/notebook/index.ts index e8b28ee46..254e24be7 100644 --- a/src/notebook/index.ts +++ b/src/notebook/index.ts @@ -63,6 +63,20 @@ export class Notebook extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_notebook"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Notebook resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Notebook to import + * @param importFromId The id of the existing Notebook that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/notebook#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Notebook to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_notebook", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/obo-token/index.ts b/src/obo-token/index.ts index 3b284f78a..0667c3f4e 100644 --- a/src/obo-token/index.ts +++ b/src/obo-token/index.ts @@ -43,6 +43,20 @@ export class OboToken extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_obo_token"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a OboToken resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the OboToken to import + * @param importFromId The id of the existing OboToken that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/obo_token#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the OboToken to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_obo_token", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/permission-assignment/index.ts b/src/permission-assignment/index.ts index 936194b2e..a23e40151 100644 --- a/src/permission-assignment/index.ts +++ b/src/permission-assignment/index.ts @@ -39,6 +39,20 @@ export class PermissionAssignment extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_permission_assignment"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a PermissionAssignment resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the PermissionAssignment to import + * @param importFromId The id of the existing PermissionAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permission_assignment#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the PermissionAssignment to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_permission_assignment", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/permissions/index.ts b/src/permissions/index.ts index 5c2cdf5c4..330827f17 100644 --- a/src/permissions/index.ts +++ b/src/permissions/index.ts @@ -300,6 +300,20 @@ export class Permissions extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_permissions"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Permissions resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Permissions to import + * @param importFromId The id of the existing Permissions that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/permissions#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Permissions to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_permissions", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/pipeline/index.ts b/src/pipeline/index.ts index c18cd8378..e18eb5710 100644 --- a/src/pipeline/index.ts +++ b/src/pipeline/index.ts @@ -3344,6 +3344,20 @@ export class Pipeline extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_pipeline"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Pipeline resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Pipeline to import + * @param importFromId The id of the existing Pipeline that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/pipeline#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Pipeline to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_pipeline", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/provider-resource/index.ts b/src/provider-resource/index.ts index a0c8e2761..bbc408b07 100644 --- a/src/provider-resource/index.ts +++ b/src/provider-resource/index.ts @@ -47,6 +47,20 @@ export class ProviderResource extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_provider"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ProviderResource resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ProviderResource to import + * @param importFromId The id of the existing ProviderResource that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/provider#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the ProviderResource to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_provider", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/provider/index.ts b/src/provider/index.ts index 857cb0767..dfb6c9512 100644 --- a/src/provider/index.ts +++ b/src/provider/index.ts @@ -146,6 +146,20 @@ export class DatabricksProvider extends cdktf.TerraformProvider { // ================= public static readonly tfResourceType = "databricks"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DatabricksProvider resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DatabricksProvider to import + * @param importFromId The id of the existing DatabricksProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DatabricksProvider to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/recipient/index.ts b/src/recipient/index.ts index c0d9939a0..aff83c08c 100644 --- a/src/recipient/index.ts +++ b/src/recipient/index.ts @@ -387,6 +387,20 @@ export class Recipient extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_recipient"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Recipient resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Recipient to import + * @param importFromId The id of the existing Recipient that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/recipient#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Recipient to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_recipient", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/registered-model/index.ts b/src/registered-model/index.ts index 1c9b7d4c3..25866b09e 100644 --- a/src/registered-model/index.ts +++ b/src/registered-model/index.ts @@ -51,6 +51,20 @@ export class RegisteredModel extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_registered_model"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a RegisteredModel resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the RegisteredModel to import + * @param importFromId The id of the existing RegisteredModel that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/registered_model#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the RegisteredModel to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_registered_model", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/repo/index.ts b/src/repo/index.ts index 07dc6de60..68962fc7f 100644 --- a/src/repo/index.ts +++ b/src/repo/index.ts @@ -123,6 +123,20 @@ export class Repo extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_repo"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Repo resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Repo to import + * @param importFromId The id of the existing Repo that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/repo#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Repo to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_repo", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/schema/index.ts b/src/schema/index.ts index 3dfac85cc..5945a78c7 100644 --- a/src/schema/index.ts +++ b/src/schema/index.ts @@ -63,6 +63,20 @@ export class Schema extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_schema"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Schema resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Schema to import + * @param importFromId The id of the existing Schema that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/schema#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Schema to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_schema", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/secret-acl/index.ts b/src/secret-acl/index.ts index 795495593..c841f900c 100644 --- a/src/secret-acl/index.ts +++ b/src/secret-acl/index.ts @@ -43,6 +43,20 @@ export class SecretAcl extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_secret_acl"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SecretAcl resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SecretAcl to import + * @param importFromId The id of the existing SecretAcl that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_acl#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SecretAcl to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_secret_acl", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/secret-scope/index.ts b/src/secret-scope/index.ts index 881c347e2..221a02472 100644 --- a/src/secret-scope/index.ts +++ b/src/secret-scope/index.ts @@ -135,6 +135,20 @@ export class SecretScope extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_secret_scope"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SecretScope resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SecretScope to import + * @param importFromId The id of the existing SecretScope that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret_scope#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SecretScope to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_secret_scope", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/secret/index.ts b/src/secret/index.ts index 6b1e07a0a..4ffffb152 100644 --- a/src/secret/index.ts +++ b/src/secret/index.ts @@ -43,6 +43,20 @@ export class Secret extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_secret"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Secret resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Secret to import + * @param importFromId The id of the existing Secret that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/secret#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Secret to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_secret", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/service-principal-role/index.ts b/src/service-principal-role/index.ts index 3d9726ffe..9e71274c1 100644 --- a/src/service-principal-role/index.ts +++ b/src/service-principal-role/index.ts @@ -39,6 +39,20 @@ export class ServicePrincipalRole extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_service_principal_role"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ServicePrincipalRole resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ServicePrincipalRole to import + * @param importFromId The id of the existing ServicePrincipalRole that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_role#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the ServicePrincipalRole to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_service_principal_role", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/service-principal-secret/index.ts b/src/service-principal-secret/index.ts index 0cb428094..23347e81a 100644 --- a/src/service-principal-secret/index.ts +++ b/src/service-principal-secret/index.ts @@ -43,6 +43,20 @@ export class ServicePrincipalSecret extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_service_principal_secret"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ServicePrincipalSecret resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ServicePrincipalSecret to import + * @param importFromId The id of the existing ServicePrincipalSecret that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal_secret#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the ServicePrincipalSecret to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_service_principal_secret", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/service-principal/index.ts b/src/service-principal/index.ts index c9ad35c5b..194d72517 100644 --- a/src/service-principal/index.ts +++ b/src/service-principal/index.ts @@ -91,6 +91,20 @@ export class ServicePrincipal extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_service_principal"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a ServicePrincipal resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the ServicePrincipal to import + * @param importFromId The id of the existing ServicePrincipal that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/service_principal#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the ServicePrincipal to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_service_principal", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/share/index.ts b/src/share/index.ts index 6250ad80f..9a4c76539 100644 --- a/src/share/index.ts +++ b/src/share/index.ts @@ -684,6 +684,20 @@ export class Share extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_share"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Share resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Share to import + * @param importFromId The id of the existing Share that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/share#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Share to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_share", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-alert/index.ts b/src/sql-alert/index.ts index 043ce5882..18040e5d2 100644 --- a/src/sql-alert/index.ts +++ b/src/sql-alert/index.ts @@ -279,6 +279,20 @@ export class SqlAlert extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_alert"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlAlert resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlAlert to import + * @param importFromId The id of the existing SqlAlert that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_alert#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlAlert to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_alert", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-dashboard/index.ts b/src/sql-dashboard/index.ts index 7131b3c86..30e2c1c0d 100644 --- a/src/sql-dashboard/index.ts +++ b/src/sql-dashboard/index.ts @@ -55,6 +55,20 @@ export class SqlDashboard extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_dashboard"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlDashboard resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlDashboard to import + * @param importFromId The id of the existing SqlDashboard that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_dashboard#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlDashboard to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_dashboard", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-endpoint/index.ts b/src/sql-endpoint/index.ts index 097188468..f4e3f66ec 100644 --- a/src/sql-endpoint/index.ts +++ b/src/sql-endpoint/index.ts @@ -597,6 +597,20 @@ export class SqlEndpoint extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_endpoint"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlEndpoint resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlEndpoint to import + * @param importFromId The id of the existing SqlEndpoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_endpoint#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlEndpoint to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_endpoint", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-global-config/index.ts b/src/sql-global-config/index.ts index ff4b8527c..920bc7e49 100644 --- a/src/sql-global-config/index.ts +++ b/src/sql-global-config/index.ts @@ -55,6 +55,20 @@ export class SqlGlobalConfig extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_global_config"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlGlobalConfig resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlGlobalConfig to import + * @param importFromId The id of the existing SqlGlobalConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_global_config#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlGlobalConfig to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_global_config", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-permissions/index.ts b/src/sql-permissions/index.ts index 1ea4c8431..badb6edb3 100644 --- a/src/sql-permissions/index.ts +++ b/src/sql-permissions/index.ts @@ -183,6 +183,20 @@ export class SqlPermissions extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_permissions"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlPermissions resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlPermissions to import + * @param importFromId The id of the existing SqlPermissions that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_permissions#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlPermissions to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_permissions", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-query/index.ts b/src/sql-query/index.ts index 2964ab0ab..1b9a37ba4 100644 --- a/src/sql-query/index.ts +++ b/src/sql-query/index.ts @@ -2314,6 +2314,20 @@ export class SqlQuery extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_query"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlQuery resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlQuery to import + * @param importFromId The id of the existing SqlQuery that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_query#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlQuery to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_query", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-table/index.ts b/src/sql-table/index.ts index 602b1520a..940a969b5 100644 --- a/src/sql-table/index.ts +++ b/src/sql-table/index.ts @@ -256,6 +256,20 @@ export class SqlTable extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_table"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlTable resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlTable to import + * @param importFromId The id of the existing SqlTable that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_table#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlTable to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_table", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-visualization/index.ts b/src/sql-visualization/index.ts index 5a3eb208a..5a3f598f7 100644 --- a/src/sql-visualization/index.ts +++ b/src/sql-visualization/index.ts @@ -59,6 +59,20 @@ export class SqlVisualization extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_visualization"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlVisualization resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlVisualization to import + * @param importFromId The id of the existing SqlVisualization that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_visualization#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlVisualization to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_visualization", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/sql-widget/index.ts b/src/sql-widget/index.ts index 09046c3fd..7ef575468 100644 --- a/src/sql-widget/index.ts +++ b/src/sql-widget/index.ts @@ -460,6 +460,20 @@ export class SqlWidget extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_sql_widget"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SqlWidget resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SqlWidget to import + * @param importFromId The id of the existing SqlWidget that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/sql_widget#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SqlWidget to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_sql_widget", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/storage-credential/index.ts b/src/storage-credential/index.ts index 5dcbd97a5..5bd13a4a6 100644 --- a/src/storage-credential/index.ts +++ b/src/storage-credential/index.ts @@ -575,6 +575,20 @@ export class StorageCredential extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_storage_credential"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a StorageCredential resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the StorageCredential to import + * @param importFromId The id of the existing StorageCredential that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/storage_credential#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the StorageCredential to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_storage_credential", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/system-schema/index.ts b/src/system-schema/index.ts index d7822d827..a0c69cec5 100644 --- a/src/system-schema/index.ts +++ b/src/system-schema/index.ts @@ -39,6 +39,20 @@ export class SystemSchema extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_system_schema"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a SystemSchema resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the SystemSchema to import + * @param importFromId The id of the existing SystemSchema that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/system_schema#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the SystemSchema to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_system_schema", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/table/index.ts b/src/table/index.ts index 502a1db1a..68d8a828f 100644 --- a/src/table/index.ts +++ b/src/table/index.ts @@ -436,6 +436,20 @@ export class Table extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_table"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Table resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Table to import + * @param importFromId The id of the existing Table that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/table#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Table to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_table", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/token/index.ts b/src/token/index.ts index 50c0a2145..e6a2944b6 100644 --- a/src/token/index.ts +++ b/src/token/index.ts @@ -51,6 +51,20 @@ export class Token extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_token"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Token resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Token to import + * @param importFromId The id of the existing Token that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/token#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Token to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_token", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/user-instance-profile/index.ts b/src/user-instance-profile/index.ts index c4a5bd5bd..5311baf46 100644 --- a/src/user-instance-profile/index.ts +++ b/src/user-instance-profile/index.ts @@ -39,6 +39,20 @@ export class UserInstanceProfile extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_user_instance_profile"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a UserInstanceProfile resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the UserInstanceProfile to import + * @param importFromId The id of the existing UserInstanceProfile that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_instance_profile#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the UserInstanceProfile to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_user_instance_profile", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/user-role/index.ts b/src/user-role/index.ts index 08ff4a595..78a754c85 100644 --- a/src/user-role/index.ts +++ b/src/user-role/index.ts @@ -39,6 +39,20 @@ export class UserRole extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_user_role"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a UserRole resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the UserRole to import + * @param importFromId The id of the existing UserRole that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user_role#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the UserRole to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_user_role", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/user/index.ts b/src/user/index.ts index 44de97acf..872b0f057 100644 --- a/src/user/index.ts +++ b/src/user/index.ts @@ -91,6 +91,20 @@ export class User extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_user"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a User resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the User to import + * @param importFromId The id of the existing User that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/user#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the User to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_user", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/volume/index.ts b/src/volume/index.ts index 4d9ee2d47..2f4425053 100644 --- a/src/volume/index.ts +++ b/src/volume/index.ts @@ -59,6 +59,20 @@ export class Volume extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_volume"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a Volume resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the Volume to import + * @param importFromId The id of the existing Volume that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/volume#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the Volume to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_volume", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/workspace-conf/index.ts b/src/workspace-conf/index.ts index 8d8db11e0..904d66027 100644 --- a/src/workspace-conf/index.ts +++ b/src/workspace-conf/index.ts @@ -35,6 +35,20 @@ export class WorkspaceConf extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_workspace_conf"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a WorkspaceConf resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the WorkspaceConf to import + * @param importFromId The id of the existing WorkspaceConf that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_conf#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the WorkspaceConf to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_workspace_conf", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/src/workspace-file/index.ts b/src/workspace-file/index.ts index cc45ed96c..e620e81c7 100644 --- a/src/workspace-file/index.ts +++ b/src/workspace-file/index.ts @@ -51,6 +51,20 @@ export class WorkspaceFile extends cdktf.TerraformResource { // ================= public static readonly tfResourceType = "databricks_workspace_file"; + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a WorkspaceFile resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the WorkspaceFile to import + * @param importFromId The id of the existing WorkspaceFile that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.28.0/docs/resources/workspace_file#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the WorkspaceFile to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "databricks_workspace_file", importId: importFromId, provider }); + } + // =========== // INITIALIZER // =========== diff --git a/yarn.lock b/yarn.lock index b68674407..1c1f0f481 100644 --- a/yarn.lock +++ b/yarn.lock @@ -78,19 +78,19 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@cdktf/cli-core@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@cdktf/cli-core/-/cli-core-0.18.2.tgz#32ebaca2c79ed3b2341bf46e3bdf4db6991b0f5e" - integrity sha512-deJzuZIJ829tzx0X1t1E1n6jeSCal2SoR1v9r9F6EFTlfAhU3uccj6z6e8RalnLKh4SMJWRtN8PsWzuGaBEN2Q== - dependencies: - "@cdktf/commons" "0.18.2" - "@cdktf/hcl2cdk" "0.18.2" - "@cdktf/hcl2json" "0.18.2" - "@cdktf/node-pty-prebuilt-multiarch" "0.10.1-pre.10" - "@cdktf/provider-schema" "0.18.2" +"@cdktf/cli-core@0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@cdktf/cli-core/-/cli-core-0.19.0.tgz#ed2bccb413332f8cfb685662d60bcbb17c4d5fdb" + integrity sha512-iSkhxuSHEPkPCPwvcM81ytniS3v/3YT+zY/MzeKWVkaMj1hZDF3e2C5gnjOdrb0ZCFIH1+znF+aJK9LiqBoV+Q== + dependencies: + "@cdktf/commons" "0.19.0" + "@cdktf/hcl2cdk" "0.19.0" + "@cdktf/hcl2json" "0.19.0" + "@cdktf/node-pty-prebuilt-multiarch" "0.10.1-pre.11" + "@cdktf/provider-schema" "0.19.0" "@sentry/node" "^7.64.0" archiver "^5.3.1" - cdktf "0.18.2" + cdktf "0.19.0" chalk "^4.1.2" chokidar "^3.5.3" cli-spinners "2.7.0" @@ -132,13 +132,13 @@ yoga-layout-prebuilt "^1.10.0" zod "^1.11.17" -"@cdktf/commons@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@cdktf/commons/-/commons-0.18.2.tgz#3c14a69681510e4b3a4a989cc0fd31a523232cd0" - integrity sha512-9jLT7K6bkGWdy8wRbpZfmAnzDPczV9NBpGIS3vsKJCZwoipccmG2LD12DlbM3610IHISksya2AQLlLmJMsTnmA== +"@cdktf/commons@0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@cdktf/commons/-/commons-0.19.0.tgz#e0bc7e428b4689550ac9c652e366116114d09875" + integrity sha512-zhqGhx7PWa1lCa1B7RUH1qoln2emrGbGJ3kjRKMOxJxbTKdQBwFUbsaEOiOAVBm0ukTt2DX+VWQc8YPpMgSbgA== dependencies: "@sentry/node" "^7.64.0" - cdktf "0.18.2" + cdktf "0.19.0" ci-info "^3.8.0" codemaker "^1.87.0" constructs "^10.0.25" @@ -149,18 +149,18 @@ log4js "^6.9.1" uuid "^9.0.1" -"@cdktf/hcl2cdk@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2cdk/-/hcl2cdk-0.18.2.tgz#1ec46d43a3e7ef5a17f123aa3cd683df621b956b" - integrity sha512-/AdUWmg1EC++HrS2I/C8H3JV1m/JfK3ONGBY1efNlc3LO7TBKJssKWVBMtYp45IJD86m7rNBOeL1TD0AZ1KjrQ== +"@cdktf/hcl2cdk@0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2cdk/-/hcl2cdk-0.19.0.tgz#1077eb093f56424c60315dda350648f1f608fb0d" + integrity sha512-43XWR/ZLZVc8amOC6GmyGFkK9doiP9DKMjEDpYEnXCl1UhdFGHHipcSK6fnc30RCIq3KFF9FTuztvUyruToRyA== dependencies: "@babel/generator" "^7.21.4" "@babel/template" "^7.20.7" "@babel/types" "^7.21.4" - "@cdktf/commons" "0.18.2" - "@cdktf/hcl2json" "0.18.2" - "@cdktf/provider-generator" "0.18.2" - "@cdktf/provider-schema" "0.18.2" + "@cdktf/commons" "0.19.0" + "@cdktf/hcl2json" "0.19.0" + "@cdktf/provider-generator" "0.19.0" + "@cdktf/provider-schema" "0.19.0" camelcase "^6.3.0" deep-equal "^2.2.0" glob "^10.3.3" @@ -171,49 +171,49 @@ reserved-words "^0.1.2" zod "^3.21.4" -"@cdktf/hcl2json@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.18.2.tgz#fd23555d9b2620ed561a9f18843c9d8ee28eb20a" - integrity sha512-TSuIMet9RSuXUWPz40ed/W4WMu92aHVnJ44lB5nap9E1PE8brr7FhnW32dFOy9m2H8WU4GAfSQ0k3GW6JitSig== +"@cdktf/hcl2json@0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.19.0.tgz#39fb184421b44b35cb69207dd17c7713ac246563" + integrity sha512-wo68qo74dTxcZWJkwlhTV+YoVopUUUTpRC8W73HWkaL/lw6GDozh4GHwphagIHYJy07Ecxdx/WTp0sGDBaFBuQ== dependencies: fs-extra "^11.1.1" -"@cdktf/node-pty-prebuilt-multiarch@0.10.1-pre.10": - version "0.10.1-pre.10" - resolved "https://registry.yarnpkg.com/@cdktf/node-pty-prebuilt-multiarch/-/node-pty-prebuilt-multiarch-0.10.1-pre.10.tgz#b404351940c595bd96405aaeec7ceffe8b0fc83b" - integrity sha512-5ysQrHJvqYLYg407KvaDNu+xx68ZGaqeF0SohXe5e4yNqJhPFPUQ536rkReQcPc2yZiF5PDmmvf5T9MOacHpSQ== +"@cdktf/node-pty-prebuilt-multiarch@0.10.1-pre.11": + version "0.10.1-pre.11" + resolved "https://registry.yarnpkg.com/@cdktf/node-pty-prebuilt-multiarch/-/node-pty-prebuilt-multiarch-0.10.1-pre.11.tgz#07ab168845047e5879e737ac5ab0919a49ba89a8" + integrity sha512-qvga/nzEtdCJMu/6jJfDqpzbRejvXtNhWFnbubfuYyN5nMNORNXX+POT4j+mQSDQar5bIQ1a812szw/zr47cfw== dependencies: nan "^2.14.2" prebuild-install "^7.1.1" -"@cdktf/provider-generator@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@cdktf/provider-generator/-/provider-generator-0.18.2.tgz#e4210bb8cb2d9e48271a2a2fba4f5ec65d77b3b1" - integrity sha512-Qqfmwlz1t9Ie84CLkefxDR8a2bsacxbaEncO6NqzwYWaCu/K5TDDOqHjLKl1kv3mKjdZtJ0YLMJsMP0C49hKPg== +"@cdktf/provider-generator@0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@cdktf/provider-generator/-/provider-generator-0.19.0.tgz#348e8e2744e61a7a40340f634b7bb9e12a7fafc3" + integrity sha512-+1qKfvSA4YH+i6PBbuDwj8xP5NNCsyeF5KR6S/2NqBxz/4w4xptB+h/IehiVGSHtwI2/XmL4bF3gLpNB9Q2dGg== dependencies: - "@cdktf/commons" "0.18.2" - "@cdktf/hcl2json" "0.18.2" - "@cdktf/provider-schema" "0.18.2" - "@types/node" "16.18.23" + "@cdktf/commons" "0.19.0" + "@cdktf/hcl2json" "0.19.0" + "@cdktf/provider-schema" "0.19.0" + "@types/node" "18.11.19" codemaker "^1.87.0" deepmerge "^4.2.2" fs-extra "^8.1.0" jsii-srcmak "^0.1.951" "@cdktf/provider-project@^0.2.95": - version "0.2.131" - resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.2.131.tgz#713f5895fd00ce11adc394434b0efda914413010" - integrity sha512-jryd50w5YfZWavPtIosvWaVuKPLxiYCXYGc7tRo/buMppwnhHe0ytM/ObRzVCBj5MYU1yIe+aXfLgstSq030BQ== + version "0.2.134" + resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.2.134.tgz#1f1d90c19e0e0a121c157f881586a8ec8eadace6" + integrity sha512-bqU1i0iBg8ky1FRwV6qLdP4Au+XxIhHC7tAIu8Jx++SYhQRnz8hh5fKs3o6UCOtnoUZOTgi4DDNZ1ltnBN/dFA== dependencies: change-case "^4.1.2" fs-extra "^10.1.0" -"@cdktf/provider-schema@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@cdktf/provider-schema/-/provider-schema-0.18.2.tgz#b0094e4124d91d75e44701a79262b8d3159ecd91" - integrity sha512-UB3oxmh0GJ/NeubDKjF+gT8bsh7kcT+lCbG0OZwXPlTKBuaDRuS2InkvcUAlvhC7ML1+DqpTl5PsAaowuW46uA== +"@cdktf/provider-schema@0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@cdktf/provider-schema/-/provider-schema-0.19.0.tgz#3377e69ae7150056eb59f2b542e5fa5b83493f51" + integrity sha512-tfl6EqzBGL+qRBc+lgtb4qZvj8J4R+htF+N6BmrFnz9NiplRJmy1xzRMZ1fsrboeH0QExlyFYdIaZ97Q3CtD7A== dependencies: - "@cdktf/commons" "0.18.2" + "@cdktf/commons" "0.19.0" fs-extra "^11.1.1" "@colors/colors@1.5.0": @@ -749,10 +749,10 @@ dependencies: undici-types "~5.25.1" -"@types/node@16.18.23": - version "16.18.23" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.23.tgz#b6e934fe427eb7081d0015aad070acb3373c3c90" - integrity sha512-XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g== +"@types/node@18.11.19": + version "18.11.19" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.19.tgz#35e26df9ec441ab99d73e99e9aca82935eea216d" + integrity sha512-YUgMWAQBWLObABqrvx8qKO1enAvBUdjZOAWQ5grBAkp5LQv45jBvYKZ3oFS9iKRCQyFjqw6iuEa1vmFqtxYLZw== "@types/node@^18": version "18.18.5" @@ -1220,18 +1220,18 @@ case@^1.6.3: resolved "https://registry.yarnpkg.com/case/-/case-1.6.3.tgz#0a4386e3e9825351ca2e6216c60467ff5f1ea1c9" integrity sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== -cdktf-cli@^0.18.0: - version "0.18.2" - resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.18.2.tgz#c9864fb5b4869cb820cfd55a8682dbdb7d9af7f6" - integrity sha512-Href8hApBsCuvLz1bOiV5t13gkTbl4O457CeiBQmEjfFLg5myluA2nSMBSgCo0JGd/89sCbQXt1MdQU577qM2Q== +cdktf-cli@^0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.19.0.tgz#d0278749beed81a8b450c4b1c41de6046967187e" + integrity sha512-WGLs0IOgig8WDO2E6RYWtG5lCDL+ICX+plFipWT8JhuJpemxBhk8pO8uhDSWvBF85ZpVecQv+szfQVmXq8mdUg== dependencies: - "@cdktf/cli-core" "0.18.2" - "@cdktf/commons" "0.18.2" - "@cdktf/hcl2cdk" "0.18.2" - "@cdktf/hcl2json" "0.18.2" + "@cdktf/cli-core" "0.19.0" + "@cdktf/commons" "0.19.0" + "@cdktf/hcl2cdk" "0.19.0" + "@cdktf/hcl2json" "0.19.0" "@inquirer/prompts" "^2.3.0" "@sentry/node" "^7.64.0" - cdktf "0.18.2" + cdktf "0.19.0" ci-info "^3.8.0" codemaker "^1.87.0" constructs "^10.0.25" @@ -1251,10 +1251,10 @@ cdktf-cli@^0.18.0: yoga-layout-prebuilt "^1.10.0" zod "^1.11.17" -cdktf@0.18.2, cdktf@^0.18.0: - version "0.18.2" - resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.18.2.tgz#21b02a4114812b0a696e70d9f7cfc59caa2c0af9" - integrity sha512-ohCsfFwEjXbF4bGbzkx/YB/aq6spceAPtKBXfdF/kNjUx1hVH28lQDS5ykJbnxAAnvrUA8FWz034buun7uPrdQ== +cdktf@0.19.0, cdktf@^0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.19.0.tgz#097a3241b95e77eeab8ae1f7a714bf45dc6ca55b" + integrity sha512-5tcNhvrvsE9WawC5cPwV7B9ATQ5lWNjyCJN7EnMofxTtkBEdnnGx0esC+vpNO4Fs0LhmV37qCUlm+K6anZaPYw== dependencies: archiver "5.3.1" json-stable-stringify "^1.0.2" @@ -4385,10 +4385,10 @@ progress@^2.0.3: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -projen@^0.74.18: - version "0.74.18" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.74.18.tgz#626e8fbd1591fc0fadecd5d56ad5c83146ab44f0" - integrity sha512-VGpz4AIBxYX9sTn0piRa5WFH9/bB1HM452C5+qFvWraT7PPCcoENdH6iegdzSYe5h2RIZXSyHs9beokypzc7zw== +projen@^0.75.0: + version "0.75.0" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.75.0.tgz#f7e317cdfd5a009e7670e3779d60aeef7b9d5f5a" + integrity sha512-Xc3fDcdawK0WoVECl2tzFmf3a4BmM5bPUBzOHyZMSCOc5hmHkgFxbKquE/Er5WMV4+BHMRXA8QeZAIuZZ9ryeQ== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3"