diff --git a/.gitattributes b/.gitattributes index d36ee3781..9c84ee52f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,6 +6,7 @@ /.github/ISSUE_TEMPLATE/config.yml linguist-generated /.github/pull_request_template.md linguist-generated /.github/workflows/alert-open-prs.yml linguist-generated +/.github/workflows/auto-approve.yml linguist-generated /.github/workflows/auto-close-community-issues.yml linguist-generated /.github/workflows/auto-close-community-prs.yml linguist-generated /.github/workflows/build.yml linguist-generated diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml new file mode 100644 index 000000000..58f6460fd --- /dev/null +++ b/.github/workflows/auto-approve.yml @@ -0,0 +1,33 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +name: auto-approve +on: + pull_request_target: + types: + - opened + - labeled + - ready_for_review + - reopened +jobs: + approve: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + if: contains(github.event.pull_request.labels.*.name, 'auto-approve') && github.event.pull_request.draft == false + steps: + - name: Checkout PR + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + with: + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + - name: Auto-approve PRs by other users as team-tf-cdk + if: github.event.pull_request.user.login != 'team-tf-cdk' && (contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) || github.actor == 'dependabot[bot]') + env: + GH_TOKEN: ${{ secrets.PROJEN_GITHUB_TOKEN }} + run: gh pr review ${{ github.event.pull_request.number }} --approve + - name: Auto-approve PRs by team-tf-cdk as github-actions[bot] + if: github.event.pull_request.user.login == 'team-tf-cdk' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh pr review ${{ github.event.pull_request.number }} --approve diff --git a/.github/workflows/provider-upgrade.yml b/.github/workflows/provider-upgrade.yml index 7ef9c5619..83fbf2bd0 100644 --- a/.github/workflows/provider-upgrade.yml +++ b/.github/workflows/provider-upgrade.yml @@ -34,6 +34,19 @@ jobs: id: new_version if: ${{ steps.check_version.outputs.new_version == 'available' }} run: echo "value=$(jq -r '. | to_entries[] | .value' src/version.json)" >> $GITHUB_OUTPUT + - name: Determine if this is a minor or patch release + id: release + if: ${{ steps.check_version.outputs.new_version == 'available' }} + env: + CURRENT_VERSION: ${{ steps.current_version.outputs.value }} + NEW_VERSION: ${{ steps.new_version.outputs.value }} + run: |- + CURRENT_VERSION_MINOR=$(cut -d "." -f 1 <<< "$CURRENT_VERSION") + NEW_VERSION_MINOR=$(cut -d "." -f 1 <<< "$NEW_VERSION") + [[ "$CURRENT_VERSION_MINOR" != "$NEW_VERSION_MINOR" ]] && IS_MINOR_RELEASE=true || IS_MINOR_RELEASE=false + [[ "$IS_MINOR_RELEASE" == "true" ]] && SEMANTIC_TYPE=feat || SEMANTIC_TYPE=fix + echo "is_minor=$IS_MINOR_RELEASE" >> $GITHUB_OUTPUT + echo "type=$SEMANTIC_TYPE" >> $GITHUB_OUTPUT - if: ${{ steps.check_version.outputs.new_version == 'available' }} run: yarn compile - if: ${{ steps.check_version.outputs.new_version == 'available' }} @@ -42,11 +55,11 @@ jobs: if: ${{ steps.check_version.outputs.new_version == 'available' }} uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 with: - commit-message: "fix: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" branch: auto/provider-upgrade - title: "fix: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" + commit-message: "${{ steps.release.outputs.type }}: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" + title: "${{ steps.release.outputs.type }}: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" body: This PR upgrades the underlying Terraform provider to version ${{ steps.new_version.outputs.value }} - labels: automerge + labels: automerge,auto-approve token: ${{ secrets.GH_TOKEN }} delete-branch: true committer: team-tf-cdk diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index 2f126c5de..bf336ed78 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -81,7 +81,7 @@ jobs: *Automatically created by projen via the "upgrade-main" workflow* branch: github-actions/upgrade-main title: "chore(deps): upgrade dependencies" - labels: automerge,dependencies + labels: automerge,auto-approve,dependencies body: |- Upgrades project dependencies. See details in [workflow run]. diff --git a/.gitignore b/.gitignore index 463f1d918..ed07c7848 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ package-lock.json !/.github/workflows/provider-upgrade.yml !/LICENSE !/.github/ISSUE_TEMPLATE/config.yml +!/.github/workflows/auto-approve.yml !/.github/workflows/auto-close-community-issues.yml !/.github/workflows/auto-close-community-prs.yml !/.github/workflows/lock.yml diff --git a/.projen/files.json b/.projen/files.json index d44d81817..52f25ae3e 100644 --- a/.projen/files.json +++ b/.projen/files.json @@ -6,6 +6,7 @@ ".github/ISSUE_TEMPLATE/config.yml", ".github/pull_request_template.md", ".github/workflows/alert-open-prs.yml", + ".github/workflows/auto-approve.yml", ".github/workflows/auto-close-community-issues.yml", ".github/workflows/auto-close-community-prs.yml", ".github/workflows/build.yml", diff --git a/docs/app.csharp.md b/docs/app.csharp.md index 761ce5053..9c896c042 100644 --- a/docs/app.csharp.md +++ b/docs/app.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutSpec | *No description.* | | PutTimeouts | *No description.* | | ResetId | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutSpec` ```csharp diff --git a/docs/app.go.md b/docs/app.go.md index 809d505b7..91a83cce6 100644 --- a/docs/app.go.md +++ b/docs/app.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutSpec | *No description.* | | PutTimeouts | *No description.* | | ResetId | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutSpec` ```go diff --git a/docs/app.java.md b/docs/app.java.md index ad56856a4..565f9d0fe 100644 --- a/docs/app.java.md +++ b/docs/app.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putSpec | *No description.* | | putTimeouts | *No description.* | | resetId | *No description.* | @@ -356,6 +359,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -387,6 +396,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -412,6 +439,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putSpec` ```java diff --git a/docs/app.python.md b/docs/app.python.md index 780ae477f..20ecc5924 100644 --- a/docs/app.python.md +++ b/docs/app.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_spec | *No description.* | | put_timeouts | *No description.* | | reset_id | *No description.* | @@ -379,6 +382,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -414,6 +423,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -441,6 +470,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_spec` ```python diff --git a/docs/app.typescript.md b/docs/app.typescript.md index e2f7a3f41..54d865aa0 100644 --- a/docs/app.typescript.md +++ b/docs/app.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putSpec | *No description.* | | putTimeouts | *No description.* | | resetId | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putSpec` ```typescript diff --git a/docs/cdn.csharp.md b/docs/cdn.csharp.md index d65efe411..823defd58 100644 --- a/docs/cdn.csharp.md +++ b/docs/cdn.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetCertificateId | *No description.* | | ResetCertificateName | *No description.* | | ResetCustomDomain | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetCertificateId` ```csharp diff --git a/docs/cdn.go.md b/docs/cdn.go.md index 6e107c46c..febc6544a 100644 --- a/docs/cdn.go.md +++ b/docs/cdn.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetCertificateId | *No description.* | | ResetCertificateName | *No description.* | | ResetCustomDomain | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetCertificateId` ```go diff --git a/docs/cdn.java.md b/docs/cdn.java.md index 3e47c1da9..d08ea70ef 100644 --- a/docs/cdn.java.md +++ b/docs/cdn.java.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCertificateId | *No description.* | | resetCertificateName | *No description.* | | resetCustomDomain | *No description.* | @@ -390,6 +393,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -421,6 +430,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -446,6 +473,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetCertificateId` ```java diff --git a/docs/cdn.python.md b/docs/cdn.python.md index f8be34207..e0dca23b2 100644 --- a/docs/cdn.python.md +++ b/docs/cdn.python.md @@ -189,9 +189,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_certificate_id | *No description.* | | reset_certificate_name | *No description.* | | reset_custom_domain | *No description.* | @@ -413,6 +416,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -448,6 +457,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -475,6 +504,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_certificate_id` ```python diff --git a/docs/cdn.typescript.md b/docs/cdn.typescript.md index 7f20218e2..362dce29a 100644 --- a/docs/cdn.typescript.md +++ b/docs/cdn.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCertificateId | *No description.* | | resetCertificateName | *No description.* | | resetCustomDomain | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetCertificateId` ```typescript diff --git a/docs/certificate.csharp.md b/docs/certificate.csharp.md index c9e2309b7..437853d42 100644 --- a/docs/certificate.csharp.md +++ b/docs/certificate.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetCertificateChain | *No description.* | | ResetDomains | *No description.* | | ResetId | *No description.* | @@ -266,6 +269,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -296,6 +305,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetCertificateChain` ```csharp diff --git a/docs/certificate.go.md b/docs/certificate.go.md index 7016ce751..38de18007 100644 --- a/docs/certificate.go.md +++ b/docs/certificate.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetCertificateChain | *No description.* | | ResetDomains | *No description.* | | ResetId | *No description.* | @@ -266,6 +269,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -296,6 +305,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetCertificateChain` ```go diff --git a/docs/certificate.java.md b/docs/certificate.java.md index 537b14cad..c05f0c4d7 100644 --- a/docs/certificate.java.md +++ b/docs/certificate.java.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCertificateChain | *No description.* | | resetDomains | *No description.* | | resetId | *No description.* | @@ -393,6 +396,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -424,6 +433,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -449,6 +476,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetCertificateChain` ```java diff --git a/docs/certificate.python.md b/docs/certificate.python.md index 8fcfb4820..8cc787ee5 100644 --- a/docs/certificate.python.md +++ b/docs/certificate.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_certificate_chain | *No description.* | | reset_domains | *No description.* | | reset_id | *No description.* | @@ -416,6 +419,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -451,6 +460,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -478,6 +507,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_certificate_chain` ```python diff --git a/docs/certificate.typescript.md b/docs/certificate.typescript.md index bd917a9b8..43c3150ac 100644 --- a/docs/certificate.typescript.md +++ b/docs/certificate.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCertificateChain | *No description.* | | resetDomains | *No description.* | | resetId | *No description.* | @@ -266,6 +269,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -296,6 +305,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetCertificateChain` ```typescript diff --git a/docs/containerRegistry.csharp.md b/docs/containerRegistry.csharp.md index fb604f02c..714d745c5 100644 --- a/docs/containerRegistry.csharp.md +++ b/docs/containerRegistry.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetRegion | *No description.* | @@ -262,6 +265,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -292,6 +301,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/containerRegistry.go.md b/docs/containerRegistry.go.md index 49931a695..7796140ba 100644 --- a/docs/containerRegistry.go.md +++ b/docs/containerRegistry.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetRegion | *No description.* | @@ -262,6 +265,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -292,6 +301,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/containerRegistry.java.md b/docs/containerRegistry.java.md index 7f5e4c7a1..00bba41eb 100644 --- a/docs/containerRegistry.java.md +++ b/docs/containerRegistry.java.md @@ -163,9 +163,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetRegion | *No description.* | @@ -359,6 +362,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -390,6 +399,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -415,6 +442,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/containerRegistry.python.md b/docs/containerRegistry.python.md index 835069169..2f2810aae 100644 --- a/docs/containerRegistry.python.md +++ b/docs/containerRegistry.python.md @@ -161,9 +161,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | | reset_region | *No description.* | @@ -382,6 +385,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -417,6 +426,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -444,6 +473,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/containerRegistry.typescript.md b/docs/containerRegistry.typescript.md index 48307ac32..6404984b7 100644 --- a/docs/containerRegistry.typescript.md +++ b/docs/containerRegistry.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetRegion | *No description.* | @@ -262,6 +265,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -292,6 +301,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/containerRegistryDockerCredentials.csharp.md b/docs/containerRegistryDockerCredentials.csharp.md index 91655de48..212a7db59 100644 --- a/docs/containerRegistryDockerCredentials.csharp.md +++ b/docs/containerRegistryDockerCredentials.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetExpirySeconds | *No description.* | | ResetId | *No description.* | | ResetWrite | *No description.* | @@ -263,6 +266,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -293,6 +302,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetExpirySeconds` ```csharp diff --git a/docs/containerRegistryDockerCredentials.go.md b/docs/containerRegistryDockerCredentials.go.md index 3d57c86a0..96b919434 100644 --- a/docs/containerRegistryDockerCredentials.go.md +++ b/docs/containerRegistryDockerCredentials.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetExpirySeconds | *No description.* | | ResetId | *No description.* | | ResetWrite | *No description.* | @@ -263,6 +266,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -293,6 +302,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetExpirySeconds` ```go diff --git a/docs/containerRegistryDockerCredentials.java.md b/docs/containerRegistryDockerCredentials.java.md index 0ff63e75a..97c726096 100644 --- a/docs/containerRegistryDockerCredentials.java.md +++ b/docs/containerRegistryDockerCredentials.java.md @@ -164,9 +164,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetExpirySeconds | *No description.* | | resetId | *No description.* | | resetWrite | *No description.* | @@ -361,6 +364,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -392,6 +401,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -417,6 +444,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetExpirySeconds` ```java diff --git a/docs/containerRegistryDockerCredentials.python.md b/docs/containerRegistryDockerCredentials.python.md index c048da13b..72eef1f6b 100644 --- a/docs/containerRegistryDockerCredentials.python.md +++ b/docs/containerRegistryDockerCredentials.python.md @@ -161,9 +161,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_expiry_seconds | *No description.* | | reset_id | *No description.* | | reset_write | *No description.* | @@ -383,6 +386,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -418,6 +427,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -445,6 +474,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_expiry_seconds` ```python diff --git a/docs/containerRegistryDockerCredentials.typescript.md b/docs/containerRegistryDockerCredentials.typescript.md index f5cfd2cfa..dd624a6e9 100644 --- a/docs/containerRegistryDockerCredentials.typescript.md +++ b/docs/containerRegistryDockerCredentials.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetExpirySeconds | *No description.* | | resetId | *No description.* | | resetWrite | *No description.* | @@ -263,6 +266,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -293,6 +302,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetExpirySeconds` ```typescript diff --git a/docs/customImage.csharp.md b/docs/customImage.csharp.md index bffe4d82a..f01564bb7 100644 --- a/docs/customImage.csharp.md +++ b/docs/customImage.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetDescription | *No description.* | | ResetDistribution | *No description.* | @@ -266,6 +269,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -296,6 +305,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/customImage.go.md b/docs/customImage.go.md index bb70d99d2..0e1211b71 100644 --- a/docs/customImage.go.md +++ b/docs/customImage.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetDescription | *No description.* | | ResetDistribution | *No description.* | @@ -266,6 +269,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -296,6 +305,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/customImage.java.md b/docs/customImage.java.md index 1cc3aeb7e..28604f891 100644 --- a/docs/customImage.java.md +++ b/docs/customImage.java.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetDescription | *No description.* | | resetDistribution | *No description.* | @@ -405,6 +408,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -436,6 +445,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -461,6 +488,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/customImage.python.md b/docs/customImage.python.md index 469864f3b..ccd99c59c 100644 --- a/docs/customImage.python.md +++ b/docs/customImage.python.md @@ -203,9 +203,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_description | *No description.* | | reset_distribution | *No description.* | @@ -428,6 +431,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -463,6 +472,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -490,6 +519,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/customImage.typescript.md b/docs/customImage.typescript.md index 11c091502..e1cb08a9e 100644 --- a/docs/customImage.typescript.md +++ b/docs/customImage.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetDescription | *No description.* | | resetDistribution | *No description.* | @@ -266,6 +269,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -296,6 +305,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/databaseCluster.csharp.md b/docs/databaseCluster.csharp.md index 14f5c81d6..e474dec3e 100644 --- a/docs/databaseCluster.csharp.md +++ b/docs/databaseCluster.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutBackupRestore | *No description.* | | PutMaintenanceWindow | *No description.* | | PutTimeouts | *No description.* | @@ -274,6 +277,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -304,6 +313,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -328,6 +355,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutBackupRestore` ```csharp diff --git a/docs/databaseCluster.go.md b/docs/databaseCluster.go.md index 4d2e85d73..8e8019aa3 100644 --- a/docs/databaseCluster.go.md +++ b/docs/databaseCluster.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutBackupRestore | *No description.* | | PutMaintenanceWindow | *No description.* | | PutTimeouts | *No description.* | @@ -274,6 +277,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -304,6 +313,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -328,6 +355,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutBackupRestore` ```go diff --git a/docs/databaseCluster.java.md b/docs/databaseCluster.java.md index 136dc10e8..2afb30242 100644 --- a/docs/databaseCluster.java.md +++ b/docs/databaseCluster.java.md @@ -290,9 +290,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putBackupRestore | *No description.* | | putMaintenanceWindow | *No description.* | | putTimeouts | *No description.* | @@ -498,6 +501,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -529,6 +538,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -554,6 +581,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putBackupRestore` ```java diff --git a/docs/databaseCluster.python.md b/docs/databaseCluster.python.md index 8afb3add6..cba1f4bb8 100644 --- a/docs/databaseCluster.python.md +++ b/docs/databaseCluster.python.md @@ -287,9 +287,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_backup_restore | *No description.* | | put_maintenance_window | *No description.* | | put_timeouts | *No description.* | @@ -520,6 +523,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -555,6 +564,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -582,6 +611,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_backup_restore` ```python diff --git a/docs/databaseCluster.typescript.md b/docs/databaseCluster.typescript.md index 09a49379d..bf1618623 100644 --- a/docs/databaseCluster.typescript.md +++ b/docs/databaseCluster.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putBackupRestore | *No description.* | | putMaintenanceWindow | *No description.* | | putTimeouts | *No description.* | @@ -274,6 +277,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -304,6 +313,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -328,6 +355,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putBackupRestore` ```typescript diff --git a/docs/databaseConnectionPool.csharp.md b/docs/databaseConnectionPool.csharp.md index b6fea190a..22af77d22 100644 --- a/docs/databaseConnectionPool.csharp.md +++ b/docs/databaseConnectionPool.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetUser | *No description.* | @@ -262,6 +265,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -292,6 +301,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/databaseConnectionPool.go.md b/docs/databaseConnectionPool.go.md index 207f9f395..57639c870 100644 --- a/docs/databaseConnectionPool.go.md +++ b/docs/databaseConnectionPool.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetUser | *No description.* | @@ -262,6 +265,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -292,6 +301,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/databaseConnectionPool.java.md b/docs/databaseConnectionPool.java.md index b10e6d192..54a8c65c9 100644 --- a/docs/databaseConnectionPool.java.md +++ b/docs/databaseConnectionPool.java.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetUser | *No description.* | @@ -389,6 +392,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -420,6 +429,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -445,6 +472,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/databaseConnectionPool.python.md b/docs/databaseConnectionPool.python.md index 325aa07de..40f8fdb8c 100644 --- a/docs/databaseConnectionPool.python.md +++ b/docs/databaseConnectionPool.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | | reset_user | *No description.* | @@ -412,6 +415,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -447,6 +456,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -474,6 +503,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/databaseConnectionPool.typescript.md b/docs/databaseConnectionPool.typescript.md index 924d25a81..cb91ebe38 100644 --- a/docs/databaseConnectionPool.typescript.md +++ b/docs/databaseConnectionPool.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetUser | *No description.* | @@ -262,6 +265,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -292,6 +301,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/databaseDb.csharp.md b/docs/databaseDb.csharp.md index 5298f789a..4bdb63116 100644 --- a/docs/databaseDb.csharp.md +++ b/docs/databaseDb.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/databaseDb.go.md b/docs/databaseDb.go.md index 2c21b0b6b..7901a93e5 100644 --- a/docs/databaseDb.go.md +++ b/docs/databaseDb.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/databaseDb.java.md b/docs/databaseDb.java.md index 56b585bd4..028324698 100644 --- a/docs/databaseDb.java.md +++ b/docs/databaseDb.java.md @@ -153,9 +153,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -348,6 +351,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -379,6 +388,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -404,6 +431,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/databaseDb.python.md b/docs/databaseDb.python.md index 9e97a1eee..8a22ff8c4 100644 --- a/docs/databaseDb.python.md +++ b/docs/databaseDb.python.md @@ -151,9 +151,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -371,6 +374,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -406,6 +415,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -433,6 +462,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/databaseDb.typescript.md b/docs/databaseDb.typescript.md index aaa202d23..ce5e02da5 100644 --- a/docs/databaseDb.typescript.md +++ b/docs/databaseDb.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/databaseFirewall.csharp.md b/docs/databaseFirewall.csharp.md index f4d8e0ce2..59d1943d3 100644 --- a/docs/databaseFirewall.csharp.md +++ b/docs/databaseFirewall.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutRule | *No description.* | | ResetId | *No description.* | @@ -262,6 +265,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -292,6 +301,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutRule` ```csharp diff --git a/docs/databaseFirewall.go.md b/docs/databaseFirewall.go.md index c20b77d16..90e462cd5 100644 --- a/docs/databaseFirewall.go.md +++ b/docs/databaseFirewall.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutRule | *No description.* | | ResetId | *No description.* | @@ -262,6 +265,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -292,6 +301,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutRule` ```go diff --git a/docs/databaseFirewall.java.md b/docs/databaseFirewall.java.md index d142bbc0d..56657ef01 100644 --- a/docs/databaseFirewall.java.md +++ b/docs/databaseFirewall.java.md @@ -156,9 +156,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putRule | *No description.* | | resetId | *No description.* | @@ -352,6 +355,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -383,6 +392,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -408,6 +435,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putRule` ```java diff --git a/docs/databaseFirewall.python.md b/docs/databaseFirewall.python.md index 0d3ea5947..f7b193011 100644 --- a/docs/databaseFirewall.python.md +++ b/docs/databaseFirewall.python.md @@ -153,9 +153,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_rule | *No description.* | | reset_id | *No description.* | @@ -374,6 +377,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -409,6 +418,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -436,6 +465,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_rule` ```python diff --git a/docs/databaseFirewall.typescript.md b/docs/databaseFirewall.typescript.md index f49bcd623..bc4d38295 100644 --- a/docs/databaseFirewall.typescript.md +++ b/docs/databaseFirewall.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putRule | *No description.* | | resetId | *No description.* | @@ -262,6 +265,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -292,6 +301,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putRule` ```typescript diff --git a/docs/databaseKafkaTopic.csharp.md b/docs/databaseKafkaTopic.csharp.md index aac7f6530..3503dfb47 100644 --- a/docs/databaseKafkaTopic.csharp.md +++ b/docs/databaseKafkaTopic.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutConfig | *No description.* | | ResetConfig | *No description.* | | ResetId | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutConfig` ```csharp diff --git a/docs/databaseKafkaTopic.go.md b/docs/databaseKafkaTopic.go.md index 8561df1c8..43204f5da 100644 --- a/docs/databaseKafkaTopic.go.md +++ b/docs/databaseKafkaTopic.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutConfig | *No description.* | | ResetConfig | *No description.* | | ResetId | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutConfig` ```go diff --git a/docs/databaseKafkaTopic.java.md b/docs/databaseKafkaTopic.java.md index 12410e051..6890d3434 100644 --- a/docs/databaseKafkaTopic.java.md +++ b/docs/databaseKafkaTopic.java.md @@ -186,9 +186,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putConfig | *No description.* | | resetConfig | *No description.* | | resetId | *No description.* | @@ -385,6 +388,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -416,6 +425,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -441,6 +468,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putConfig` ```java diff --git a/docs/databaseKafkaTopic.python.md b/docs/databaseKafkaTopic.python.md index a72e7adb5..25817f1a6 100644 --- a/docs/databaseKafkaTopic.python.md +++ b/docs/databaseKafkaTopic.python.md @@ -183,9 +183,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_config | *No description.* | | reset_config | *No description.* | | reset_id | *No description.* | @@ -407,6 +410,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -442,6 +451,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -469,6 +498,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_config` ```python diff --git a/docs/databaseKafkaTopic.typescript.md b/docs/databaseKafkaTopic.typescript.md index a16656f64..f24fe1cfa 100644 --- a/docs/databaseKafkaTopic.typescript.md +++ b/docs/databaseKafkaTopic.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putConfig | *No description.* | | resetConfig | *No description.* | | resetId | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putConfig` ```typescript diff --git a/docs/databaseMysqlConfig.csharp.md b/docs/databaseMysqlConfig.csharp.md index 105eb7d7a..0cb86f660 100644 --- a/docs/databaseMysqlConfig.csharp.md +++ b/docs/databaseMysqlConfig.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetBackupHour | *No description.* | | ResetBackupMinute | *No description.* | | ResetBinlogRetentionPeriod | *No description.* | @@ -288,6 +291,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -318,6 +327,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetBackupHour` ```csharp diff --git a/docs/databaseMysqlConfig.go.md b/docs/databaseMysqlConfig.go.md index 2a51a6410..df9684c34 100644 --- a/docs/databaseMysqlConfig.go.md +++ b/docs/databaseMysqlConfig.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetBackupHour | *No description.* | | ResetBackupMinute | *No description.* | | ResetBinlogRetentionPeriod | *No description.* | @@ -288,6 +291,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -318,6 +327,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetBackupHour` ```go diff --git a/docs/databaseMysqlConfig.java.md b/docs/databaseMysqlConfig.java.md index 1133a399e..32975f3c8 100644 --- a/docs/databaseMysqlConfig.java.md +++ b/docs/databaseMysqlConfig.java.md @@ -417,9 +417,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetBackupHour | *No description.* | | resetBackupMinute | *No description.* | | resetBinlogRetentionPeriod | *No description.* | @@ -639,6 +642,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -670,6 +679,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -695,6 +722,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetBackupHour` ```java diff --git a/docs/databaseMysqlConfig.python.md b/docs/databaseMysqlConfig.python.md index 23bcdfaef..5292d2253 100644 --- a/docs/databaseMysqlConfig.python.md +++ b/docs/databaseMysqlConfig.python.md @@ -411,9 +411,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_backup_hour | *No description.* | | reset_backup_minute | *No description.* | | reset_binlog_retention_period | *No description.* | @@ -658,6 +661,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -693,6 +702,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -720,6 +749,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_backup_hour` ```python diff --git a/docs/databaseMysqlConfig.typescript.md b/docs/databaseMysqlConfig.typescript.md index ea997deb4..2a8b410d4 100644 --- a/docs/databaseMysqlConfig.typescript.md +++ b/docs/databaseMysqlConfig.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetBackupHour | *No description.* | | resetBackupMinute | *No description.* | | resetBinlogRetentionPeriod | *No description.* | @@ -288,6 +291,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -318,6 +327,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetBackupHour` ```typescript diff --git a/docs/databaseRedisConfig.csharp.md b/docs/databaseRedisConfig.csharp.md index 188b3d759..f0122244b 100644 --- a/docs/databaseRedisConfig.csharp.md +++ b/docs/databaseRedisConfig.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetAclChannelsDefault | *No description.* | | ResetId | *No description.* | | ResetIoThreads | *No description.* | @@ -272,6 +275,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -302,6 +311,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -326,6 +353,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAclChannelsDefault` ```csharp diff --git a/docs/databaseRedisConfig.go.md b/docs/databaseRedisConfig.go.md index 4df4416d1..e34992657 100644 --- a/docs/databaseRedisConfig.go.md +++ b/docs/databaseRedisConfig.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetAclChannelsDefault | *No description.* | | ResetId | *No description.* | | ResetIoThreads | *No description.* | @@ -272,6 +275,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -302,6 +311,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -326,6 +353,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAclChannelsDefault` ```go diff --git a/docs/databaseRedisConfig.java.md b/docs/databaseRedisConfig.java.md index d877fc05a..ae393b139 100644 --- a/docs/databaseRedisConfig.java.md +++ b/docs/databaseRedisConfig.java.md @@ -254,9 +254,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAclChannelsDefault | *No description.* | | resetId | *No description.* | | resetIoThreads | *No description.* | @@ -460,6 +463,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -491,6 +500,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -516,6 +543,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAclChannelsDefault` ```java diff --git a/docs/databaseRedisConfig.python.md b/docs/databaseRedisConfig.python.md index 061465d9a..70ab3a5d0 100644 --- a/docs/databaseRedisConfig.python.md +++ b/docs/databaseRedisConfig.python.md @@ -251,9 +251,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_acl_channels_default | *No description.* | | reset_id | *No description.* | | reset_io_threads | *No description.* | @@ -482,6 +485,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -517,6 +526,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -544,6 +573,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_acl_channels_default` ```python diff --git a/docs/databaseRedisConfig.typescript.md b/docs/databaseRedisConfig.typescript.md index 1aea15a95..ac239447c 100644 --- a/docs/databaseRedisConfig.typescript.md +++ b/docs/databaseRedisConfig.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAclChannelsDefault | *No description.* | | resetId | *No description.* | | resetIoThreads | *No description.* | @@ -272,6 +275,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -302,6 +311,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -326,6 +353,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAclChannelsDefault` ```typescript diff --git a/docs/databaseReplica.csharp.md b/docs/databaseReplica.csharp.md index 91feaddd6..42ad7e93c 100644 --- a/docs/databaseReplica.csharp.md +++ b/docs/databaseReplica.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetPrivateNetworkUuid | *No description.* | | ResetRegion | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/databaseReplica.go.md b/docs/databaseReplica.go.md index eb4ac6cfd..1466d15c6 100644 --- a/docs/databaseReplica.go.md +++ b/docs/databaseReplica.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetPrivateNetworkUuid | *No description.* | | ResetRegion | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/databaseReplica.java.md b/docs/databaseReplica.java.md index 7a0be17bf..841db26ff 100644 --- a/docs/databaseReplica.java.md +++ b/docs/databaseReplica.java.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetPrivateNetworkUuid | *No description.* | | resetRegion | *No description.* | @@ -392,6 +395,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -423,6 +432,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -448,6 +475,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/databaseReplica.python.md b/docs/databaseReplica.python.md index b6e5e5653..03e81028e 100644 --- a/docs/databaseReplica.python.md +++ b/docs/databaseReplica.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | | reset_private_network_uuid | *No description.* | | reset_region | *No description.* | @@ -415,6 +418,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -450,6 +459,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -477,6 +506,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/databaseReplica.typescript.md b/docs/databaseReplica.typescript.md index 92b995b18..17cf1e857 100644 --- a/docs/databaseReplica.typescript.md +++ b/docs/databaseReplica.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetPrivateNetworkUuid | *No description.* | | resetRegion | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/databaseUser.csharp.md b/docs/databaseUser.csharp.md index 1ff82f963..f477bcad3 100644 --- a/docs/databaseUser.csharp.md +++ b/docs/databaseUser.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutSettings | *No description.* | | ResetId | *No description.* | | ResetMysqlAuthPlugin | *No description.* | @@ -264,6 +267,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -294,6 +303,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -318,6 +345,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutSettings` ```csharp diff --git a/docs/databaseUser.go.md b/docs/databaseUser.go.md index 5f3863beb..bcacc6d26 100644 --- a/docs/databaseUser.go.md +++ b/docs/databaseUser.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutSettings | *No description.* | | ResetId | *No description.* | | ResetMysqlAuthPlugin | *No description.* | @@ -264,6 +267,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -294,6 +303,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -318,6 +345,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutSettings` ```go diff --git a/docs/databaseUser.java.md b/docs/databaseUser.java.md index 0bb51eb4e..4ad0ab999 100644 --- a/docs/databaseUser.java.md +++ b/docs/databaseUser.java.md @@ -176,9 +176,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putSettings | *No description.* | | resetId | *No description.* | | resetMysqlAuthPlugin | *No description.* | @@ -374,6 +377,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -405,6 +414,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -430,6 +457,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putSettings` ```java diff --git a/docs/databaseUser.python.md b/docs/databaseUser.python.md index 8694dc841..2d6263eb0 100644 --- a/docs/databaseUser.python.md +++ b/docs/databaseUser.python.md @@ -173,9 +173,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_settings | *No description.* | | reset_id | *No description.* | | reset_mysql_auth_plugin | *No description.* | @@ -396,6 +399,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -431,6 +440,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -458,6 +487,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_settings` ```python diff --git a/docs/databaseUser.typescript.md b/docs/databaseUser.typescript.md index cf893f861..aed6c40e9 100644 --- a/docs/databaseUser.typescript.md +++ b/docs/databaseUser.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putSettings | *No description.* | | resetId | *No description.* | | resetMysqlAuthPlugin | *No description.* | @@ -264,6 +267,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -294,6 +303,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -318,6 +345,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putSettings` ```typescript diff --git a/docs/domain.csharp.md b/docs/domain.csharp.md index 66c8c764f..0f89065bf 100644 --- a/docs/domain.csharp.md +++ b/docs/domain.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetIpAddress | *No description.* | @@ -262,6 +265,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -292,6 +301,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/domain.go.md b/docs/domain.go.md index b0e6aa1d9..3bd25aa75 100644 --- a/docs/domain.go.md +++ b/docs/domain.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetIpAddress | *No description.* | @@ -262,6 +265,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -292,6 +301,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/domain.java.md b/docs/domain.java.md index d6e1c0b55..e09ebb89a 100644 --- a/docs/domain.java.md +++ b/docs/domain.java.md @@ -153,9 +153,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetIpAddress | *No description.* | @@ -349,6 +352,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -380,6 +389,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -405,6 +432,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/domain.python.md b/docs/domain.python.md index 18f76805c..4e8059a39 100644 --- a/docs/domain.python.md +++ b/docs/domain.python.md @@ -151,9 +151,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | | reset_ip_address | *No description.* | @@ -372,6 +375,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -407,6 +416,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -434,6 +463,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/domain.typescript.md b/docs/domain.typescript.md index 062ac3d1f..5f957570b 100644 --- a/docs/domain.typescript.md +++ b/docs/domain.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetIpAddress | *No description.* | @@ -262,6 +265,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -292,6 +301,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/droplet.csharp.md b/docs/droplet.csharp.md index ba041483b..dc6214c85 100644 --- a/docs/droplet.csharp.md +++ b/docs/droplet.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetBackups | *No description.* | | ResetDropletAgent | *No description.* | @@ -277,6 +280,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -307,6 +316,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -331,6 +358,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/droplet.go.md b/docs/droplet.go.md index 7d40d3d47..29aeeac39 100644 --- a/docs/droplet.go.md +++ b/docs/droplet.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetBackups | *No description.* | | ResetDropletAgent | *No description.* | @@ -277,6 +280,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -307,6 +316,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -331,6 +358,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/droplet.java.md b/docs/droplet.java.md index 068cc866a..d2b454a43 100644 --- a/docs/droplet.java.md +++ b/docs/droplet.java.md @@ -322,9 +322,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetBackups | *No description.* | | resetDropletAgent | *No description.* | @@ -533,6 +536,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -564,6 +573,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -589,6 +616,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/droplet.python.md b/docs/droplet.python.md index 38211cc92..326136335 100644 --- a/docs/droplet.python.md +++ b/docs/droplet.python.md @@ -313,9 +313,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_backups | *No description.* | | reset_droplet_agent | *No description.* | @@ -549,6 +552,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -584,6 +593,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -611,6 +640,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/droplet.typescript.md b/docs/droplet.typescript.md index 6edae1067..d4e4e8702 100644 --- a/docs/droplet.typescript.md +++ b/docs/droplet.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetBackups | *No description.* | | resetDropletAgent | *No description.* | @@ -277,6 +280,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -307,6 +316,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -331,6 +358,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/dropletSnapshot.csharp.md b/docs/dropletSnapshot.csharp.md index 75f42347b..65f7e9ec0 100644 --- a/docs/dropletSnapshot.csharp.md +++ b/docs/dropletSnapshot.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/dropletSnapshot.go.md b/docs/dropletSnapshot.go.md index 372bde5a2..bbbb62862 100644 --- a/docs/dropletSnapshot.go.md +++ b/docs/dropletSnapshot.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/dropletSnapshot.java.md b/docs/dropletSnapshot.java.md index 1d132ae24..b841a4fa5 100644 --- a/docs/dropletSnapshot.java.md +++ b/docs/dropletSnapshot.java.md @@ -153,9 +153,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -348,6 +351,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -379,6 +388,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -404,6 +431,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/dropletSnapshot.python.md b/docs/dropletSnapshot.python.md index 6e9443e59..4113bdbdc 100644 --- a/docs/dropletSnapshot.python.md +++ b/docs/dropletSnapshot.python.md @@ -151,9 +151,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -371,6 +374,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -406,6 +415,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -433,6 +462,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/dropletSnapshot.typescript.md b/docs/dropletSnapshot.typescript.md index 260af7a2f..e034c4ad8 100644 --- a/docs/dropletSnapshot.typescript.md +++ b/docs/dropletSnapshot.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/firewall.csharp.md b/docs/firewall.csharp.md index 37f6b44d7..63d1796c1 100644 --- a/docs/firewall.csharp.md +++ b/docs/firewall.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutInboundRule | *No description.* | | PutOutboundRule | *No description.* | | ResetDropletIds | *No description.* | @@ -267,6 +270,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -297,6 +306,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutInboundRule` ```csharp diff --git a/docs/firewall.go.md b/docs/firewall.go.md index d868b1b5d..efdfbaccc 100644 --- a/docs/firewall.go.md +++ b/docs/firewall.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutInboundRule | *No description.* | | PutOutboundRule | *No description.* | | ResetDropletIds | *No description.* | @@ -267,6 +270,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -297,6 +306,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutInboundRule` ```go diff --git a/docs/firewall.java.md b/docs/firewall.java.md index fd25d5eec..071a95d5d 100644 --- a/docs/firewall.java.md +++ b/docs/firewall.java.md @@ -189,9 +189,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putInboundRule | *No description.* | | putOutboundRule | *No description.* | | resetDropletIds | *No description.* | @@ -390,6 +393,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -421,6 +430,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -446,6 +473,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putInboundRule` ```java diff --git a/docs/firewall.python.md b/docs/firewall.python.md index c6b34270a..7e4ca4026 100644 --- a/docs/firewall.python.md +++ b/docs/firewall.python.md @@ -185,9 +185,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_inbound_rule | *No description.* | | put_outbound_rule | *No description.* | | reset_droplet_ids | *No description.* | @@ -411,6 +414,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -446,6 +455,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -473,6 +502,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_inbound_rule` ```python diff --git a/docs/firewall.typescript.md b/docs/firewall.typescript.md index dfdf062b0..9a6b2c9e5 100644 --- a/docs/firewall.typescript.md +++ b/docs/firewall.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putInboundRule | *No description.* | | putOutboundRule | *No description.* | | resetDropletIds | *No description.* | @@ -267,6 +270,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -297,6 +306,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putInboundRule` ```typescript diff --git a/docs/floatingIp.csharp.md b/docs/floatingIp.csharp.md index 4025a2ff7..fbec033e1 100644 --- a/docs/floatingIp.csharp.md +++ b/docs/floatingIp.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetDropletId | *No description.* | | ResetId | *No description.* | | ResetIpAddress | *No description.* | @@ -263,6 +266,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -293,6 +302,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetDropletId` ```csharp diff --git a/docs/floatingIp.go.md b/docs/floatingIp.go.md index 3d5c2dd0d..e3f1d6e87 100644 --- a/docs/floatingIp.go.md +++ b/docs/floatingIp.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetDropletId | *No description.* | | ResetId | *No description.* | | ResetIpAddress | *No description.* | @@ -263,6 +266,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -293,6 +302,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetDropletId` ```go diff --git a/docs/floatingIp.java.md b/docs/floatingIp.java.md index 9d234798e..3b2229de3 100644 --- a/docs/floatingIp.java.md +++ b/docs/floatingIp.java.md @@ -163,9 +163,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDropletId | *No description.* | | resetId | *No description.* | | resetIpAddress | *No description.* | @@ -360,6 +363,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -391,6 +400,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -416,6 +443,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDropletId` ```java diff --git a/docs/floatingIp.python.md b/docs/floatingIp.python.md index 30dfb8cef..bfdec951f 100644 --- a/docs/floatingIp.python.md +++ b/docs/floatingIp.python.md @@ -161,9 +161,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_droplet_id | *No description.* | | reset_id | *No description.* | | reset_ip_address | *No description.* | @@ -383,6 +386,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -418,6 +427,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -445,6 +474,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_droplet_id` ```python diff --git a/docs/floatingIp.typescript.md b/docs/floatingIp.typescript.md index 5ac64ed8d..73d5ea004 100644 --- a/docs/floatingIp.typescript.md +++ b/docs/floatingIp.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDropletId | *No description.* | | resetId | *No description.* | | resetIpAddress | *No description.* | @@ -263,6 +266,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -293,6 +302,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDropletId` ```typescript diff --git a/docs/floatingIpAssignment.csharp.md b/docs/floatingIpAssignment.csharp.md index be0f0018e..7b55ac04c 100644 --- a/docs/floatingIpAssignment.csharp.md +++ b/docs/floatingIpAssignment.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/floatingIpAssignment.go.md b/docs/floatingIpAssignment.go.md index 52d40d955..b1b909658 100644 --- a/docs/floatingIpAssignment.go.md +++ b/docs/floatingIpAssignment.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/floatingIpAssignment.java.md b/docs/floatingIpAssignment.java.md index a78339c4b..8db8156a2 100644 --- a/docs/floatingIpAssignment.java.md +++ b/docs/floatingIpAssignment.java.md @@ -153,9 +153,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -348,6 +351,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -379,6 +388,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -404,6 +431,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/floatingIpAssignment.python.md b/docs/floatingIpAssignment.python.md index af688783f..db0de622b 100644 --- a/docs/floatingIpAssignment.python.md +++ b/docs/floatingIpAssignment.python.md @@ -151,9 +151,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -371,6 +374,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -406,6 +415,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -433,6 +462,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/floatingIpAssignment.typescript.md b/docs/floatingIpAssignment.typescript.md index 198b9ba4d..1a3787e1e 100644 --- a/docs/floatingIpAssignment.typescript.md +++ b/docs/floatingIpAssignment.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/kubernetesCluster.csharp.md b/docs/kubernetesCluster.csharp.md index 8f897a226..3c064f4fb 100644 --- a/docs/kubernetesCluster.csharp.md +++ b/docs/kubernetesCluster.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutMaintenancePolicy | *No description.* | | PutNodePool | *No description.* | | PutTimeouts | *No description.* | @@ -273,6 +276,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -303,6 +312,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -327,6 +354,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutMaintenancePolicy` ```csharp diff --git a/docs/kubernetesCluster.go.md b/docs/kubernetesCluster.go.md index 548d9e81b..b408a521b 100644 --- a/docs/kubernetesCluster.go.md +++ b/docs/kubernetesCluster.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutMaintenancePolicy | *No description.* | | PutNodePool | *No description.* | | PutTimeouts | *No description.* | @@ -273,6 +276,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -303,6 +312,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -327,6 +354,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutMaintenancePolicy` ```go diff --git a/docs/kubernetesCluster.java.md b/docs/kubernetesCluster.java.md index 875bc3782..48717c390 100644 --- a/docs/kubernetesCluster.java.md +++ b/docs/kubernetesCluster.java.md @@ -274,9 +274,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putMaintenancePolicy | *No description.* | | putNodePool | *No description.* | | putTimeouts | *No description.* | @@ -481,6 +484,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -512,6 +521,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -537,6 +564,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putMaintenancePolicy` ```java diff --git a/docs/kubernetesCluster.python.md b/docs/kubernetesCluster.python.md index 5d23d7049..ff4c96977 100644 --- a/docs/kubernetesCluster.python.md +++ b/docs/kubernetesCluster.python.md @@ -267,9 +267,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_maintenance_policy | *No description.* | | put_node_pool | *No description.* | | put_timeouts | *No description.* | @@ -499,6 +502,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -534,6 +543,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -561,6 +590,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_maintenance_policy` ```python diff --git a/docs/kubernetesCluster.typescript.md b/docs/kubernetesCluster.typescript.md index 72644d186..22f6204d7 100644 --- a/docs/kubernetesCluster.typescript.md +++ b/docs/kubernetesCluster.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putMaintenancePolicy | *No description.* | | putNodePool | *No description.* | | putTimeouts | *No description.* | @@ -273,6 +276,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -303,6 +312,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -327,6 +354,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putMaintenancePolicy` ```typescript diff --git a/docs/kubernetesNodePool.csharp.md b/docs/kubernetesNodePool.csharp.md index 242e08442..97cac5ff7 100644 --- a/docs/kubernetesNodePool.csharp.md +++ b/docs/kubernetesNodePool.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTaint | *No description.* | | PutTimeouts | *No description.* | | ResetAutoScale | *No description.* | @@ -271,6 +274,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -301,6 +310,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -325,6 +352,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTaint` ```csharp diff --git a/docs/kubernetesNodePool.go.md b/docs/kubernetesNodePool.go.md index 135803a18..d61ee4ecf 100644 --- a/docs/kubernetesNodePool.go.md +++ b/docs/kubernetesNodePool.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTaint | *No description.* | | PutTimeouts | *No description.* | | ResetAutoScale | *No description.* | @@ -271,6 +274,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -301,6 +310,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -325,6 +352,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTaint` ```go diff --git a/docs/kubernetesNodePool.java.md b/docs/kubernetesNodePool.java.md index 3b182c816..a9ace69aa 100644 --- a/docs/kubernetesNodePool.java.md +++ b/docs/kubernetesNodePool.java.md @@ -249,9 +249,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTaint | *No description.* | | putTimeouts | *No description.* | | resetAutoScale | *No description.* | @@ -454,6 +457,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -485,6 +494,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -510,6 +537,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTaint` ```java diff --git a/docs/kubernetesNodePool.python.md b/docs/kubernetesNodePool.python.md index c763a857d..4e35f1a93 100644 --- a/docs/kubernetesNodePool.python.md +++ b/docs/kubernetesNodePool.python.md @@ -245,9 +245,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_taint | *No description.* | | put_timeouts | *No description.* | | reset_auto_scale | *No description.* | @@ -475,6 +478,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -510,6 +519,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -537,6 +566,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_taint` ```python diff --git a/docs/kubernetesNodePool.typescript.md b/docs/kubernetesNodePool.typescript.md index 530fe28c0..f3d345b89 100644 --- a/docs/kubernetesNodePool.typescript.md +++ b/docs/kubernetesNodePool.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTaint | *No description.* | | putTimeouts | *No description.* | | resetAutoScale | *No description.* | @@ -271,6 +274,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -301,6 +310,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -325,6 +352,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTaint` ```typescript diff --git a/docs/loadbalancer.csharp.md b/docs/loadbalancer.csharp.md index 9ce8042e5..752b9c1d5 100644 --- a/docs/loadbalancer.csharp.md +++ b/docs/loadbalancer.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutFirewall | *No description.* | | PutForwardingRule | *No description.* | | PutHealthcheck | *No description.* | @@ -282,6 +285,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -312,6 +321,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutFirewall` ```csharp diff --git a/docs/loadbalancer.go.md b/docs/loadbalancer.go.md index f0f5aebb1..07bc0f6ae 100644 --- a/docs/loadbalancer.go.md +++ b/docs/loadbalancer.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutFirewall | *No description.* | | PutForwardingRule | *No description.* | | PutHealthcheck | *No description.* | @@ -282,6 +285,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -312,6 +321,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutFirewall` ```go diff --git a/docs/loadbalancer.java.md b/docs/loadbalancer.java.md index ccf231da1..a543b8182 100644 --- a/docs/loadbalancer.java.md +++ b/docs/loadbalancer.java.md @@ -338,9 +338,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putFirewall | *No description.* | | putForwardingRule | *No description.* | | putHealthcheck | *No description.* | @@ -554,6 +557,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -585,6 +594,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -610,6 +637,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putFirewall` ```java diff --git a/docs/loadbalancer.python.md b/docs/loadbalancer.python.md index ae101d904..172428ff2 100644 --- a/docs/loadbalancer.python.md +++ b/docs/loadbalancer.python.md @@ -331,9 +331,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_firewall | *No description.* | | put_forwarding_rule | *No description.* | | put_healthcheck | *No description.* | @@ -572,6 +575,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -607,6 +616,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -634,6 +663,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_firewall` ```python diff --git a/docs/loadbalancer.typescript.md b/docs/loadbalancer.typescript.md index 27a8e64e3..3cd48ec84 100644 --- a/docs/loadbalancer.typescript.md +++ b/docs/loadbalancer.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putFirewall | *No description.* | | putForwardingRule | *No description.* | | putHealthcheck | *No description.* | @@ -282,6 +285,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -312,6 +321,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putFirewall` ```typescript diff --git a/docs/monitorAlert.csharp.md b/docs/monitorAlert.csharp.md index 3bd0b2cc2..70099842a 100644 --- a/docs/monitorAlert.csharp.md +++ b/docs/monitorAlert.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutAlerts | *No description.* | | ResetEnabled | *No description.* | | ResetEntities | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutAlerts` ```csharp diff --git a/docs/monitorAlert.go.md b/docs/monitorAlert.go.md index f2ba16d9c..ce323cad5 100644 --- a/docs/monitorAlert.go.md +++ b/docs/monitorAlert.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutAlerts | *No description.* | | ResetEnabled | *No description.* | | ResetEntities | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutAlerts` ```go diff --git a/docs/monitorAlert.java.md b/docs/monitorAlert.java.md index 62e133ba0..eca40469a 100644 --- a/docs/monitorAlert.java.md +++ b/docs/monitorAlert.java.md @@ -232,9 +232,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putAlerts | *No description.* | | resetEnabled | *No description.* | | resetEntities | *No description.* | @@ -431,6 +434,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -462,6 +471,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -487,6 +514,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putAlerts` ```java diff --git a/docs/monitorAlert.python.md b/docs/monitorAlert.python.md index 7d0d06cc2..5c6964ff2 100644 --- a/docs/monitorAlert.python.md +++ b/docs/monitorAlert.python.md @@ -229,9 +229,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_alerts | *No description.* | | reset_enabled | *No description.* | | reset_entities | *No description.* | @@ -453,6 +456,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -488,6 +497,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -515,6 +544,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_alerts` ```python diff --git a/docs/monitorAlert.typescript.md b/docs/monitorAlert.typescript.md index 6c0a8d539..3f67f47eb 100644 --- a/docs/monitorAlert.typescript.md +++ b/docs/monitorAlert.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putAlerts | *No description.* | | resetEnabled | *No description.* | | resetEntities | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putAlerts` ```typescript diff --git a/docs/project.csharp.md b/docs/project.csharp.md index f0aa2d6dc..989cacecf 100644 --- a/docs/project.csharp.md +++ b/docs/project.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetDescription | *No description.* | | ResetEnvironment | *No description.* | @@ -268,6 +271,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -298,6 +307,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -322,6 +349,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/project.go.md b/docs/project.go.md index 07d49dca6..4e6a94a5d 100644 --- a/docs/project.go.md +++ b/docs/project.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetDescription | *No description.* | | ResetEnvironment | *No description.* | @@ -268,6 +271,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -298,6 +307,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -322,6 +349,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/project.java.md b/docs/project.java.md index e195f327d..f96450316 100644 --- a/docs/project.java.md +++ b/docs/project.java.md @@ -218,9 +218,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetDescription | *No description.* | | resetEnvironment | *No description.* | @@ -420,6 +423,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -451,6 +460,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -476,6 +503,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/project.python.md b/docs/project.python.md index a4bca2768..bf478c3c5 100644 --- a/docs/project.python.md +++ b/docs/project.python.md @@ -215,9 +215,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_description | *No description.* | | reset_environment | *No description.* | @@ -442,6 +445,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -477,6 +486,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -504,6 +533,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/project.typescript.md b/docs/project.typescript.md index 6639a2699..5d24653af 100644 --- a/docs/project.typescript.md +++ b/docs/project.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetDescription | *No description.* | | resetEnvironment | *No description.* | @@ -268,6 +271,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -298,6 +307,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -322,6 +349,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/projectResources.csharp.md b/docs/projectResources.csharp.md index a1771506e..1f5ee807e 100644 --- a/docs/projectResources.csharp.md +++ b/docs/projectResources.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/projectResources.go.md b/docs/projectResources.go.md index aa563272d..a3295d869 100644 --- a/docs/projectResources.go.md +++ b/docs/projectResources.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/projectResources.java.md b/docs/projectResources.java.md index 55d87740a..e60e8caf8 100644 --- a/docs/projectResources.java.md +++ b/docs/projectResources.java.md @@ -157,9 +157,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -352,6 +355,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -383,6 +392,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -408,6 +435,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/projectResources.python.md b/docs/projectResources.python.md index 3dee8a143..a2c320bf4 100644 --- a/docs/projectResources.python.md +++ b/docs/projectResources.python.md @@ -155,9 +155,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -375,6 +378,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -410,6 +419,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -437,6 +466,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/projectResources.typescript.md b/docs/projectResources.typescript.md index ba82a3ef9..8058b5d49 100644 --- a/docs/projectResources.typescript.md +++ b/docs/projectResources.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/record.csharp.md b/docs/record.csharp.md index 4cd061420..d81ce3e22 100644 --- a/docs/record.csharp.md +++ b/docs/record.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetFlags | *No description.* | | ResetId | *No description.* | | ResetPort | *No description.* | @@ -267,6 +270,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -297,6 +306,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetFlags` ```csharp diff --git a/docs/record.go.md b/docs/record.go.md index 16a13439e..bd5d6453b 100644 --- a/docs/record.go.md +++ b/docs/record.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetFlags | *No description.* | | ResetId | *No description.* | | ResetPort | *No description.* | @@ -267,6 +270,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -297,6 +306,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetFlags` ```go diff --git a/docs/record.java.md b/docs/record.java.md index f2f7e7520..431130c96 100644 --- a/docs/record.java.md +++ b/docs/record.java.md @@ -233,9 +233,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetFlags | *No description.* | | resetId | *No description.* | | resetPort | *No description.* | @@ -434,6 +437,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -465,6 +474,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -490,6 +517,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetFlags` ```java diff --git a/docs/record.python.md b/docs/record.python.md index 36148a03d..18d923607 100644 --- a/docs/record.python.md +++ b/docs/record.python.md @@ -231,9 +231,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_flags | *No description.* | | reset_id | *No description.* | | reset_port | *No description.* | @@ -457,6 +460,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -492,6 +501,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -519,6 +548,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_flags` ```python diff --git a/docs/record.typescript.md b/docs/record.typescript.md index 73af879a7..7ed0de522 100644 --- a/docs/record.typescript.md +++ b/docs/record.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetFlags | *No description.* | | resetId | *No description.* | | resetPort | *No description.* | @@ -267,6 +270,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -297,6 +306,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetFlags` ```typescript diff --git a/docs/reservedIp.csharp.md b/docs/reservedIp.csharp.md index 7bfeb8a36..93869c6ba 100644 --- a/docs/reservedIp.csharp.md +++ b/docs/reservedIp.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetDropletId | *No description.* | | ResetId | *No description.* | | ResetIpAddress | *No description.* | @@ -263,6 +266,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -293,6 +302,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetDropletId` ```csharp diff --git a/docs/reservedIp.go.md b/docs/reservedIp.go.md index 51ecbe3cb..9272fff6f 100644 --- a/docs/reservedIp.go.md +++ b/docs/reservedIp.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetDropletId | *No description.* | | ResetId | *No description.* | | ResetIpAddress | *No description.* | @@ -263,6 +266,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -293,6 +302,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetDropletId` ```go diff --git a/docs/reservedIp.java.md b/docs/reservedIp.java.md index a3bb36de0..3fa4d6e03 100644 --- a/docs/reservedIp.java.md +++ b/docs/reservedIp.java.md @@ -163,9 +163,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDropletId | *No description.* | | resetId | *No description.* | | resetIpAddress | *No description.* | @@ -360,6 +363,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -391,6 +400,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -416,6 +443,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDropletId` ```java diff --git a/docs/reservedIp.python.md b/docs/reservedIp.python.md index 0ab1c3724..c5902570c 100644 --- a/docs/reservedIp.python.md +++ b/docs/reservedIp.python.md @@ -161,9 +161,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_droplet_id | *No description.* | | reset_id | *No description.* | | reset_ip_address | *No description.* | @@ -383,6 +386,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -418,6 +427,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -445,6 +474,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_droplet_id` ```python diff --git a/docs/reservedIp.typescript.md b/docs/reservedIp.typescript.md index 9e0205a0a..c04b3b77c 100644 --- a/docs/reservedIp.typescript.md +++ b/docs/reservedIp.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDropletId | *No description.* | | resetId | *No description.* | | resetIpAddress | *No description.* | @@ -263,6 +266,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -293,6 +302,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDropletId` ```typescript diff --git a/docs/reservedIpAssignment.csharp.md b/docs/reservedIpAssignment.csharp.md index d38af54dd..28b4ac3b9 100644 --- a/docs/reservedIpAssignment.csharp.md +++ b/docs/reservedIpAssignment.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/reservedIpAssignment.go.md b/docs/reservedIpAssignment.go.md index 81c3ecbc8..89045a591 100644 --- a/docs/reservedIpAssignment.go.md +++ b/docs/reservedIpAssignment.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/reservedIpAssignment.java.md b/docs/reservedIpAssignment.java.md index 6c2881497..a9772fdab 100644 --- a/docs/reservedIpAssignment.java.md +++ b/docs/reservedIpAssignment.java.md @@ -153,9 +153,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -348,6 +351,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -379,6 +388,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -404,6 +431,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/reservedIpAssignment.python.md b/docs/reservedIpAssignment.python.md index 9dafe322f..61078c418 100644 --- a/docs/reservedIpAssignment.python.md +++ b/docs/reservedIpAssignment.python.md @@ -151,9 +151,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -371,6 +374,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -406,6 +415,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -433,6 +462,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/reservedIpAssignment.typescript.md b/docs/reservedIpAssignment.typescript.md index efae1b121..32f4c5fd6 100644 --- a/docs/reservedIpAssignment.typescript.md +++ b/docs/reservedIpAssignment.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/spacesBucket.csharp.md b/docs/spacesBucket.csharp.md index d34031481..9b63e3fe6 100644 --- a/docs/spacesBucket.csharp.md +++ b/docs/spacesBucket.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutCorsRule | *No description.* | | PutLifecycleRule | *No description.* | | PutVersioning | *No description.* | @@ -270,6 +273,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -300,6 +309,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -324,6 +351,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutCorsRule` ```csharp diff --git a/docs/spacesBucket.go.md b/docs/spacesBucket.go.md index 4cd6f6e88..3a4709584 100644 --- a/docs/spacesBucket.go.md +++ b/docs/spacesBucket.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutCorsRule | *No description.* | | PutLifecycleRule | *No description.* | | PutVersioning | *No description.* | @@ -270,6 +273,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -300,6 +309,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -324,6 +351,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutCorsRule` ```go diff --git a/docs/spacesBucket.java.md b/docs/spacesBucket.java.md index d3fad139c..497582eef 100644 --- a/docs/spacesBucket.java.md +++ b/docs/spacesBucket.java.md @@ -220,9 +220,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putCorsRule | *No description.* | | putLifecycleRule | *No description.* | | putVersioning | *No description.* | @@ -424,6 +427,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -455,6 +464,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -480,6 +507,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putCorsRule` ```java diff --git a/docs/spacesBucket.python.md b/docs/spacesBucket.python.md index 0ca30f284..43f1aebba 100644 --- a/docs/spacesBucket.python.md +++ b/docs/spacesBucket.python.md @@ -215,9 +215,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_cors_rule | *No description.* | | put_lifecycle_rule | *No description.* | | put_versioning | *No description.* | @@ -444,6 +447,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -479,6 +488,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -506,6 +535,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_cors_rule` ```python diff --git a/docs/spacesBucket.typescript.md b/docs/spacesBucket.typescript.md index 3e201e5a7..d5fefdfb5 100644 --- a/docs/spacesBucket.typescript.md +++ b/docs/spacesBucket.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putCorsRule | *No description.* | | putLifecycleRule | *No description.* | | putVersioning | *No description.* | @@ -270,6 +273,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -300,6 +309,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -324,6 +351,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putCorsRule` ```typescript diff --git a/docs/spacesBucketCorsConfiguration.csharp.md b/docs/spacesBucketCorsConfiguration.csharp.md index 7355a6dc3..dc82327df 100644 --- a/docs/spacesBucketCorsConfiguration.csharp.md +++ b/docs/spacesBucketCorsConfiguration.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutCorsRule | *No description.* | | ResetId | *No description.* | @@ -262,6 +265,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -292,6 +301,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutCorsRule` ```csharp diff --git a/docs/spacesBucketCorsConfiguration.go.md b/docs/spacesBucketCorsConfiguration.go.md index 41a8fd046..279f6b75c 100644 --- a/docs/spacesBucketCorsConfiguration.go.md +++ b/docs/spacesBucketCorsConfiguration.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutCorsRule | *No description.* | | ResetId | *No description.* | @@ -262,6 +265,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -292,6 +301,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutCorsRule` ```go diff --git a/docs/spacesBucketCorsConfiguration.java.md b/docs/spacesBucketCorsConfiguration.java.md index 495f91c50..5bc8ca091 100644 --- a/docs/spacesBucketCorsConfiguration.java.md +++ b/docs/spacesBucketCorsConfiguration.java.md @@ -168,9 +168,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putCorsRule | *No description.* | | resetId | *No description.* | @@ -364,6 +367,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -395,6 +404,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -420,6 +447,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putCorsRule` ```java diff --git a/docs/spacesBucketCorsConfiguration.python.md b/docs/spacesBucketCorsConfiguration.python.md index a17778cff..5db6d93bb 100644 --- a/docs/spacesBucketCorsConfiguration.python.md +++ b/docs/spacesBucketCorsConfiguration.python.md @@ -165,9 +165,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_cors_rule | *No description.* | | reset_id | *No description.* | @@ -386,6 +389,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -421,6 +430,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -448,6 +477,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_cors_rule` ```python diff --git a/docs/spacesBucketCorsConfiguration.typescript.md b/docs/spacesBucketCorsConfiguration.typescript.md index 0929538a2..8ab6e75b7 100644 --- a/docs/spacesBucketCorsConfiguration.typescript.md +++ b/docs/spacesBucketCorsConfiguration.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putCorsRule | *No description.* | | resetId | *No description.* | @@ -262,6 +265,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -292,6 +301,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putCorsRule` ```typescript diff --git a/docs/spacesBucketObject.csharp.md b/docs/spacesBucketObject.csharp.md index 7a439a774..d9bfa861e 100644 --- a/docs/spacesBucketObject.csharp.md +++ b/docs/spacesBucketObject.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetAcl | *No description.* | | ResetCacheControl | *No description.* | | ResetContent | *No description.* | @@ -274,6 +277,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -304,6 +313,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -328,6 +355,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAcl` ```csharp diff --git a/docs/spacesBucketObject.go.md b/docs/spacesBucketObject.go.md index fc655b694..be0ba4a74 100644 --- a/docs/spacesBucketObject.go.md +++ b/docs/spacesBucketObject.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetAcl | *No description.* | | ResetCacheControl | *No description.* | | ResetContent | *No description.* | @@ -274,6 +277,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -304,6 +313,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -328,6 +355,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAcl` ```go diff --git a/docs/spacesBucketObject.java.md b/docs/spacesBucketObject.java.md index aaec61642..9a14f4b24 100644 --- a/docs/spacesBucketObject.java.md +++ b/docs/spacesBucketObject.java.md @@ -294,9 +294,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAcl | *No description.* | | resetCacheControl | *No description.* | | resetContent | *No description.* | @@ -502,6 +505,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -533,6 +542,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -558,6 +585,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAcl` ```java diff --git a/docs/spacesBucketObject.python.md b/docs/spacesBucketObject.python.md index 8764a2903..87e20d3e8 100644 --- a/docs/spacesBucketObject.python.md +++ b/docs/spacesBucketObject.python.md @@ -291,9 +291,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_acl | *No description.* | | reset_cache_control | *No description.* | | reset_content | *No description.* | @@ -524,6 +527,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -559,6 +568,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -586,6 +615,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_acl` ```python diff --git a/docs/spacesBucketObject.typescript.md b/docs/spacesBucketObject.typescript.md index 15ffebe01..f89c4fd57 100644 --- a/docs/spacesBucketObject.typescript.md +++ b/docs/spacesBucketObject.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAcl | *No description.* | | resetCacheControl | *No description.* | | resetContent | *No description.* | @@ -274,6 +277,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -304,6 +313,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -328,6 +355,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAcl` ```typescript diff --git a/docs/spacesBucketPolicy.csharp.md b/docs/spacesBucketPolicy.csharp.md index 85395ce26..38e988d94 100644 --- a/docs/spacesBucketPolicy.csharp.md +++ b/docs/spacesBucketPolicy.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/spacesBucketPolicy.go.md b/docs/spacesBucketPolicy.go.md index 137589713..db123821e 100644 --- a/docs/spacesBucketPolicy.go.md +++ b/docs/spacesBucketPolicy.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/spacesBucketPolicy.java.md b/docs/spacesBucketPolicy.java.md index f2a52048a..7c9d3d205 100644 --- a/docs/spacesBucketPolicy.java.md +++ b/docs/spacesBucketPolicy.java.md @@ -163,9 +163,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -358,6 +361,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -389,6 +398,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -414,6 +441,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/spacesBucketPolicy.python.md b/docs/spacesBucketPolicy.python.md index f322655ef..62c2d6278 100644 --- a/docs/spacesBucketPolicy.python.md +++ b/docs/spacesBucketPolicy.python.md @@ -161,9 +161,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -381,6 +384,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -416,6 +425,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -443,6 +472,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/spacesBucketPolicy.typescript.md b/docs/spacesBucketPolicy.typescript.md index 1b61a3de1..163262bff 100644 --- a/docs/spacesBucketPolicy.typescript.md +++ b/docs/spacesBucketPolicy.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/sshKey.csharp.md b/docs/sshKey.csharp.md index a84545d8a..e2584b434 100644 --- a/docs/sshKey.csharp.md +++ b/docs/sshKey.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/sshKey.go.md b/docs/sshKey.go.md index 0c10ecb6a..341a15602 100644 --- a/docs/sshKey.go.md +++ b/docs/sshKey.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/sshKey.java.md b/docs/sshKey.java.md index 2cbf21962..ff2daa489 100644 --- a/docs/sshKey.java.md +++ b/docs/sshKey.java.md @@ -153,9 +153,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -348,6 +351,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -379,6 +388,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -404,6 +431,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/sshKey.python.md b/docs/sshKey.python.md index 2cc61b3ac..ff8248bb3 100644 --- a/docs/sshKey.python.md +++ b/docs/sshKey.python.md @@ -151,9 +151,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -371,6 +374,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -406,6 +415,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -433,6 +462,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/sshKey.typescript.md b/docs/sshKey.typescript.md index d2a6d6420..83d0f4862 100644 --- a/docs/sshKey.typescript.md +++ b/docs/sshKey.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/tag.csharp.md b/docs/tag.csharp.md index 4bc87e8c6..5459fda97 100644 --- a/docs/tag.csharp.md +++ b/docs/tag.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/tag.go.md b/docs/tag.go.md index 4c1d29281..1c396b7ee 100644 --- a/docs/tag.go.md +++ b/docs/tag.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/tag.java.md b/docs/tag.java.md index b61ea0ea8..b1cb17fe0 100644 --- a/docs/tag.java.md +++ b/docs/tag.java.md @@ -143,9 +143,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -338,6 +341,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -369,6 +378,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -394,6 +421,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/tag.python.md b/docs/tag.python.md index 9fedf7c26..f76a1a6d0 100644 --- a/docs/tag.python.md +++ b/docs/tag.python.md @@ -141,9 +141,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -361,6 +364,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -396,6 +405,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -423,6 +452,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/tag.typescript.md b/docs/tag.typescript.md index 90c3e2feb..90a7d6b6c 100644 --- a/docs/tag.typescript.md +++ b/docs/tag.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/uptimeAlert.csharp.md b/docs/uptimeAlert.csharp.md index c3dd3833e..584f305f9 100644 --- a/docs/uptimeAlert.csharp.md +++ b/docs/uptimeAlert.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutNotifications | *No description.* | | ResetComparison | *No description.* | | ResetPeriod | *No description.* | @@ -264,6 +267,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -294,6 +303,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -318,6 +345,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutNotifications` ```csharp diff --git a/docs/uptimeAlert.go.md b/docs/uptimeAlert.go.md index fd7a2f37d..4f8d8667b 100644 --- a/docs/uptimeAlert.go.md +++ b/docs/uptimeAlert.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutNotifications | *No description.* | | ResetComparison | *No description.* | | ResetPeriod | *No description.* | @@ -264,6 +267,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -294,6 +303,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -318,6 +345,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutNotifications` ```go diff --git a/docs/uptimeAlert.java.md b/docs/uptimeAlert.java.md index 968339497..42fac9eca 100644 --- a/docs/uptimeAlert.java.md +++ b/docs/uptimeAlert.java.md @@ -209,9 +209,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putNotifications | *No description.* | | resetComparison | *No description.* | | resetPeriod | *No description.* | @@ -407,6 +410,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -438,6 +447,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -463,6 +490,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putNotifications` ```java diff --git a/docs/uptimeAlert.python.md b/docs/uptimeAlert.python.md index aae8f04f1..d8c3417ce 100644 --- a/docs/uptimeAlert.python.md +++ b/docs/uptimeAlert.python.md @@ -206,9 +206,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_notifications | *No description.* | | reset_comparison | *No description.* | | reset_period | *No description.* | @@ -429,6 +432,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -464,6 +473,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -491,6 +520,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_notifications` ```python diff --git a/docs/uptimeAlert.typescript.md b/docs/uptimeAlert.typescript.md index 29d829621..bd86ed683 100644 --- a/docs/uptimeAlert.typescript.md +++ b/docs/uptimeAlert.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putNotifications | *No description.* | | resetComparison | *No description.* | | resetPeriod | *No description.* | @@ -264,6 +267,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -294,6 +303,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -318,6 +345,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putNotifications` ```typescript diff --git a/docs/uptimeCheck.csharp.md b/docs/uptimeCheck.csharp.md index 9d669b43e..05eef4d88 100644 --- a/docs/uptimeCheck.csharp.md +++ b/docs/uptimeCheck.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetEnabled | *No description.* | | ResetRegions | *No description.* | | ResetType | *No description.* | @@ -263,6 +266,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -293,6 +302,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetEnabled` ```csharp diff --git a/docs/uptimeCheck.go.md b/docs/uptimeCheck.go.md index 7bda32bb3..dbc40f2ab 100644 --- a/docs/uptimeCheck.go.md +++ b/docs/uptimeCheck.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetEnabled | *No description.* | | ResetRegions | *No description.* | | ResetType | *No description.* | @@ -263,6 +266,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -293,6 +302,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetEnabled` ```go diff --git a/docs/uptimeCheck.java.md b/docs/uptimeCheck.java.md index 4f1a2b5bc..698c47cc5 100644 --- a/docs/uptimeCheck.java.md +++ b/docs/uptimeCheck.java.md @@ -181,9 +181,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetEnabled | *No description.* | | resetRegions | *No description.* | | resetType | *No description.* | @@ -378,6 +381,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -409,6 +418,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -434,6 +461,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetEnabled` ```java diff --git a/docs/uptimeCheck.python.md b/docs/uptimeCheck.python.md index 70ab259bf..424c2d5dc 100644 --- a/docs/uptimeCheck.python.md +++ b/docs/uptimeCheck.python.md @@ -178,9 +178,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_enabled | *No description.* | | reset_regions | *No description.* | | reset_type | *No description.* | @@ -400,6 +403,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -435,6 +444,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -462,6 +491,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_enabled` ```python diff --git a/docs/uptimeCheck.typescript.md b/docs/uptimeCheck.typescript.md index 9c841f89d..9c2e54572 100644 --- a/docs/uptimeCheck.typescript.md +++ b/docs/uptimeCheck.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetEnabled | *No description.* | | resetRegions | *No description.* | | resetType | *No description.* | @@ -263,6 +266,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -293,6 +302,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -317,6 +344,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetEnabled` ```typescript diff --git a/docs/volume.csharp.md b/docs/volume.csharp.md index acc58e8d9..0bbe845b7 100644 --- a/docs/volume.csharp.md +++ b/docs/volume.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetDescription | *No description.* | | ResetFilesystemType | *No description.* | | ResetId | *No description.* | @@ -267,6 +270,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -297,6 +306,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetDescription` ```csharp diff --git a/docs/volume.go.md b/docs/volume.go.md index 07f21f70e..d1f2cdfd4 100644 --- a/docs/volume.go.md +++ b/docs/volume.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetDescription | *No description.* | | ResetFilesystemType | *No description.* | | ResetId | *No description.* | @@ -267,6 +270,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -297,6 +306,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetDescription` ```go diff --git a/docs/volume.java.md b/docs/volume.java.md index 2ae97022f..a88efe330 100644 --- a/docs/volume.java.md +++ b/docs/volume.java.md @@ -223,9 +223,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDescription | *No description.* | | resetFilesystemType | *No description.* | | resetId | *No description.* | @@ -424,6 +427,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -455,6 +464,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -480,6 +507,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDescription` ```java diff --git a/docs/volume.python.md b/docs/volume.python.md index ac1436702..9d55a553d 100644 --- a/docs/volume.python.md +++ b/docs/volume.python.md @@ -221,9 +221,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_description | *No description.* | | reset_filesystem_type | *No description.* | | reset_id | *No description.* | @@ -447,6 +450,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -482,6 +491,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -509,6 +538,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_description` ```python diff --git a/docs/volume.typescript.md b/docs/volume.typescript.md index cb2b6572b..398fe20cb 100644 --- a/docs/volume.typescript.md +++ b/docs/volume.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDescription | *No description.* | | resetFilesystemType | *No description.* | | resetId | *No description.* | @@ -267,6 +270,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -297,6 +306,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -321,6 +348,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDescription` ```typescript diff --git a/docs/volumeAttachment.csharp.md b/docs/volumeAttachment.csharp.md index d1fedb4fb..1368429fe 100644 --- a/docs/volumeAttachment.csharp.md +++ b/docs/volumeAttachment.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -291,6 +300,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/volumeAttachment.go.md b/docs/volumeAttachment.go.md index 49853c2d1..abd20bb1f 100644 --- a/docs/volumeAttachment.go.md +++ b/docs/volumeAttachment.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | --- @@ -261,6 +264,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -291,6 +300,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/volumeAttachment.java.md b/docs/volumeAttachment.java.md index e70b6ae77..a9154e6bd 100644 --- a/docs/volumeAttachment.java.md +++ b/docs/volumeAttachment.java.md @@ -153,9 +153,12 @@ If you experience problems setting this value it might not be settable. Please t | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -348,6 +351,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -379,6 +388,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -404,6 +431,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/volumeAttachment.python.md b/docs/volumeAttachment.python.md index 120cfd0d2..fc327122d 100644 --- a/docs/volumeAttachment.python.md +++ b/docs/volumeAttachment.python.md @@ -151,9 +151,12 @@ 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.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | --- @@ -371,6 +374,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -406,6 +415,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -433,6 +462,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/volumeAttachment.typescript.md b/docs/volumeAttachment.typescript.md index 1f48eaad6..ded3cb6fc 100644 --- a/docs/volumeAttachment.typescript.md +++ b/docs/volumeAttachment.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | --- @@ -261,6 +264,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -291,6 +300,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -315,6 +342,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/volumeSnapshot.csharp.md b/docs/volumeSnapshot.csharp.md index 411a082c4..6eef6af9a 100644 --- a/docs/volumeSnapshot.csharp.md +++ b/docs/volumeSnapshot.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetTags | *No description.* | @@ -262,6 +265,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -292,6 +301,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/volumeSnapshot.go.md b/docs/volumeSnapshot.go.md index 15b8fb704..3070e56da 100644 --- a/docs/volumeSnapshot.go.md +++ b/docs/volumeSnapshot.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetId | *No description.* | | ResetTags | *No description.* | @@ -262,6 +265,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -292,6 +301,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/volumeSnapshot.java.md b/docs/volumeSnapshot.java.md index 6b3bdcd2f..eb3b41e59 100644 --- a/docs/volumeSnapshot.java.md +++ b/docs/volumeSnapshot.java.md @@ -163,9 +163,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetTags | *No description.* | @@ -359,6 +362,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -390,6 +399,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -415,6 +442,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/volumeSnapshot.python.md b/docs/volumeSnapshot.python.md index 7efc2bfaa..e2d9ec9df 100644 --- a/docs/volumeSnapshot.python.md +++ b/docs/volumeSnapshot.python.md @@ -161,9 +161,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | reset_id | *No description.* | | reset_tags | *No description.* | @@ -382,6 +385,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -417,6 +426,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -444,6 +473,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/volumeSnapshot.typescript.md b/docs/volumeSnapshot.typescript.md index 51735c6ac..6b38cf070 100644 --- a/docs/volumeSnapshot.typescript.md +++ b/docs/volumeSnapshot.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetId | *No description.* | | resetTags | *No description.* | @@ -262,6 +265,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -292,6 +301,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -316,6 +343,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/vpc.csharp.md b/docs/vpc.csharp.md index 970955fc5..2f04ecef2 100644 --- a/docs/vpc.csharp.md +++ b/docs/vpc.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetDescription | *No description.* | | ResetId | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/vpc.go.md b/docs/vpc.go.md index 02df75e30..e282ae9d3 100644 --- a/docs/vpc.go.md +++ b/docs/vpc.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetDescription | *No description.* | | ResetId | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/vpc.java.md b/docs/vpc.java.md index 2032500dd..277b48545 100644 --- a/docs/vpc.java.md +++ b/docs/vpc.java.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetDescription | *No description.* | | resetId | *No description.* | @@ -392,6 +395,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -423,6 +432,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -448,6 +475,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/vpc.python.md b/docs/vpc.python.md index ab3226be5..92054effc 100644 --- a/docs/vpc.python.md +++ b/docs/vpc.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/digit | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_description | *No description.* | | reset_id | *No description.* | @@ -415,6 +418,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -450,6 +459,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -477,6 +506,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/vpc.typescript.md b/docs/vpc.typescript.md index cbf0ec54e..3c99949c2 100644 --- a/docs/vpc.typescript.md +++ b/docs/vpc.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetDescription | *No description.* | | resetId | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/package.json b/package.json index 4a3720b07..1293dd458 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "jsii-docgen": "^10.2.3", "jsii-pacmak": "^1.92.0", "jsii-rosetta": "~5.1.2", - "projen": "^0.77.3", + "projen": "^0.77.4", "standard-version": "^9", "typescript": "~5.2.0" }, diff --git a/yarn.lock b/yarn.lock index adc36a575..80f702e63 100644 --- a/yarn.lock +++ b/yarn.lock @@ -19,19 +19,19 @@ undici "^5.25.4" "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.4.tgz#03ae5af150be94392cb5c7ccd97db5a19a5da6aa" - integrity sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA== + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: "@babel/highlight" "^7.23.4" chalk "^2.4.2" "@babel/generator@^7.21.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.4.tgz#4a41377d8566ec18f807f42962a7f3551de83d1c" - integrity sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ== + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.5.tgz#17d0a1ea6b62f351d281350a5f80b87a810c4755" + integrity sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA== dependencies: - "@babel/types" "^7.23.4" + "@babel/types" "^7.23.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -56,9 +56,9 @@ js-tokens "^4.0.0" "@babel/parser@^7.22.15": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.4.tgz#409fbe690c333bb70187e2de4021e1e47a026661" - integrity sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ== + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.5.tgz#37dee97c4752af148e1d38c34b856b2507660563" + integrity sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ== "@babel/template@^7.20.7": version "7.22.15" @@ -69,28 +69,28 @@ "@babel/parser" "^7.22.15" "@babel/types" "^7.22.15" -"@babel/types@^7.21.4", "@babel/types@^7.22.15", "@babel/types@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.4.tgz#7206a1810fc512a7f7f7d4dace4cb4c1c9dbfb8e" - integrity sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ== +"@babel/types@^7.21.4", "@babel/types@^7.22.15", "@babel/types@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.5.tgz#48d730a00c95109fa4393352705954d74fb5b602" + integrity sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w== dependencies: "@babel/helper-string-parser" "^7.23.4" "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@cdktf/cli-core@0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@cdktf/cli-core/-/cli-core-0.19.1.tgz#dd4e57349efe76fc311d92e717d0f21c001225b8" - integrity sha512-wWSz1qLviUs5ErpNg1kxc3Qx5o96wofnGTL4HQn9+SAZj7ta3dwNEojp1uSs4WnpY1tDq6H7vyXKh+FA8prW7g== +"@cdktf/cli-core@0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@cdktf/cli-core/-/cli-core-0.19.2.tgz#09664244498eb44b31e3f2a374a9e8d13e170feb" + integrity sha512-kjgEUhrHx3kUPfL7KsTo6GrurVUPT77FmOUf7wWXt7ajNE5zCPvx/HKGmQruzt0n6eLZp1aKT+r/D6YRfXcIGA== dependencies: - "@cdktf/commons" "0.19.1" - "@cdktf/hcl2cdk" "0.19.1" - "@cdktf/hcl2json" "0.19.1" + "@cdktf/commons" "0.19.2" + "@cdktf/hcl2cdk" "0.19.2" + "@cdktf/hcl2json" "0.19.2" "@cdktf/node-pty-prebuilt-multiarch" "0.10.1-pre.11" - "@cdktf/provider-schema" "0.19.1" + "@cdktf/provider-schema" "0.19.2" "@sentry/node" "^7.64.0" archiver "^5.3.1" - cdktf "0.19.1" + cdktf "0.19.2" chalk "^4.1.2" chokidar "^3.5.3" cli-spinners "2.7.0" @@ -132,13 +132,13 @@ yoga-layout-prebuilt "^1.10.0" zod "^3.22.4" -"@cdktf/commons@0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@cdktf/commons/-/commons-0.19.1.tgz#fbf322b2845914245bf785730b0eb366b763ba3f" - integrity sha512-9X0rL5iOt3Q+CdtKeQeff09kEmZETAVbmFIZTFgdipFFR1eMQ0rGiTNFBr8ro23ZrVUbd74g/oBpc4eGirQe4A== +"@cdktf/commons@0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@cdktf/commons/-/commons-0.19.2.tgz#3971e5a797f506d8b0468b9d36ed4074a6f936d8" + integrity sha512-5rOeb0cSREHQa5XVsGFEV6Ce8Zwo2WxE8GIhmGd/JzeSAByhK8scHFlD3+eENl83W/8lwIkm/nSl9oDHEkENIg== dependencies: "@sentry/node" "^7.77.0" - cdktf "0.19.1" + cdktf "0.19.2" ci-info "^3.9.0" codemaker "^1.91.0" constructs "^10.0.25" @@ -149,18 +149,18 @@ log4js "^6.9.1" uuid "^9.0.1" -"@cdktf/hcl2cdk@0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2cdk/-/hcl2cdk-0.19.1.tgz#a1974d72f8dba890b5df8187f7dd0d2fc5e638e9" - integrity sha512-oFMUadPnDrOaMSTX1dQPuk/GFtSrk9/6B4G4CAYp9iXumqK204U0wEZYDFFEz5ieYhR86n/8YxA1GOOr0DmRZA== +"@cdktf/hcl2cdk@0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2cdk/-/hcl2cdk-0.19.2.tgz#1b3555e920f37994444479eda4c0635e8d1cdbd8" + integrity sha512-v0UNRvvzuCi3SnmSAgBFAnWavT0ybR1AzkK8ndgfbB5JLDoNm0iJV0MOTURZF+I0O3V9u4RZsw4DVNPdil2EEA== dependencies: "@babel/generator" "^7.21.4" "@babel/template" "^7.20.7" "@babel/types" "^7.21.4" - "@cdktf/commons" "0.19.1" - "@cdktf/hcl2json" "0.19.1" - "@cdktf/provider-generator" "0.19.1" - "@cdktf/provider-schema" "0.19.1" + "@cdktf/commons" "0.19.2" + "@cdktf/hcl2json" "0.19.2" + "@cdktf/provider-generator" "0.19.2" + "@cdktf/provider-schema" "0.19.2" camelcase "^6.3.0" deep-equal "^2.2.0" glob "^10.3.3" @@ -171,10 +171,10 @@ reserved-words "^0.1.2" zod "^3.22.4" -"@cdktf/hcl2json@0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.19.1.tgz#6f043ce9eab4d2753e8794d07bfec1d4655e1a5b" - integrity sha512-yQ5fTOK9aLuh3WsYV+ykqv0b1X+5KjqAgxaAU+f9pXNq3ght1Z6o7+jrBsPHpylcj318Bhl0Hc/PX3U/z6M2kg== +"@cdktf/hcl2json@0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.19.2.tgz#0065981462a8bc48bd3bbf4d64a6c1c4ecbc801b" + integrity sha512-gFj36AshWSyPKq/eNjQtMnWj0QM0tPtMulFpQ0FrB+eWj0GvxgWg9d65gGCZ8Y/o33VV/2Kv5l8VlDEYDW2S7Q== dependencies: fs-extra "^11.1.1" @@ -186,14 +186,14 @@ nan "^2.14.2" prebuild-install "^7.1.1" -"@cdktf/provider-generator@0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@cdktf/provider-generator/-/provider-generator-0.19.1.tgz#3577fcc1a4810018ee7832b47ac5e105a3758644" - integrity sha512-Gg1DbDxhZ+CVT1uzDtvn3Q8C7MVVH1qBCAw33dLT22Faajut0ZO+/Bdai3/e81/jt4W50fN5b49MeTYG1hHRkw== +"@cdktf/provider-generator@0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@cdktf/provider-generator/-/provider-generator-0.19.2.tgz#142c191458b2793617a57d53785acb7823357558" + integrity sha512-e8fY/FtvlwMupp8zGGzAeAyW5yq4jhY+azL5kfXAXck2kO7hpimKflhycGGBm2aVTuOAmsmrumgEkCa6+7vmSg== dependencies: - "@cdktf/commons" "0.19.1" - "@cdktf/hcl2json" "0.19.1" - "@cdktf/provider-schema" "0.19.1" + "@cdktf/commons" "0.19.2" + "@cdktf/hcl2json" "0.19.2" + "@cdktf/provider-schema" "0.19.2" "@types/node" "18.18.8" codemaker "^1.91.0" deepmerge "^4.3.1" @@ -201,19 +201,19 @@ jsii-srcmak "^0.1.954" "@cdktf/provider-project@^0.4.0": - version "0.4.1" - resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.4.1.tgz#66c974d7e29a10c42e375f388ed7bc8729dbe00e" - integrity sha512-EuBNeFWwKpnu3WmuFi+LbSVCkZ6K7LnRiLxoFPm/vHvHb8+XWjxHuVswnUag0101bbBii2ig5kFrpEZWnd6Xng== + version "0.4.2" + resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.4.2.tgz#f7ac1827ae20f844529cf7593dd4e334b37d27dc" + integrity sha512-gBsFvLJ1QKde/QwTl9EEDVimH0VNk4TXIekAmaxQzcKUPry0oU2sNpLy8Y4wGlojtF7hdK176nOgztbxU49vSg== dependencies: change-case "^4.1.2" fs-extra "^10.1.0" -"@cdktf/provider-schema@0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@cdktf/provider-schema/-/provider-schema-0.19.1.tgz#b63217c157196a9d2e9336cd26566765908d529f" - integrity sha512-31vX00P/fw+kgTVZ0hxKIfd6rTRsj6jc1BJaOOQd5yRM3NzbZdypNVkWsEyIAWp6kmPAHzHujpv5/F7IEPZCRA== +"@cdktf/provider-schema@0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@cdktf/provider-schema/-/provider-schema-0.19.2.tgz#a97c07027b3293615994ed7b614e9214f45dede7" + integrity sha512-d6YghOMsDPqQS8DRS+h5BMwg6I0QVwNi8iE9bX+pGXHa/hYggXE97sAMUGFcW3za+gSCOImHYvvKDVc3u3KsOA== dependencies: - "@cdktf/commons" "0.19.1" + "@cdktf/commons" "0.19.2" fs-extra "^11.1.1" "@fastify/busboy@^2.0.0": @@ -514,45 +514,45 @@ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@sentry-internal/tracing@7.81.1": - version "7.81.1" - resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.81.1.tgz#1180365cd8a9e18cb0f92e1ea970161840ec0e2e" - integrity sha512-E5xm27xrLXL10knH2EWDQsQYh5nb4SxxZzJ3sJwDGG9XGKzBdlp20UUhKqx00wixooVX9uCj3e4Jg8SvNB1hKg== +"@sentry-internal/tracing@7.84.0": + version "7.84.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.84.0.tgz#430da253ee5b075be4ef57f20ea842c0208bc6b0" + integrity sha512-y9bGYA0OM6PEREfd+nk4UURZy29tpIw+7vQwpxWfEVs2fqq0/5TBFX/tKFb8AKUI9lVM8v0bcF0bNSCnuPQZHQ== dependencies: - "@sentry/core" "7.81.1" - "@sentry/types" "7.81.1" - "@sentry/utils" "7.81.1" + "@sentry/core" "7.84.0" + "@sentry/types" "7.84.0" + "@sentry/utils" "7.84.0" -"@sentry/core@7.81.1": - version "7.81.1" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.81.1.tgz#082fd9122bf9a488c8e05b1754724ddbc2d5cf30" - integrity sha512-tU37yAmckOGCw/moWKSwekSCWWJP15O6luIq+u7wal22hE88F3Vc5Avo8SeF3upnPR+4ejaOFH+BJTr6bgrs6Q== +"@sentry/core@7.84.0": + version "7.84.0" + resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.84.0.tgz#01d33fc452044ffd8ea57b20f60304b9cfa2b9e1" + integrity sha512-tbuwunbBx2kSex15IHCqHDnrMfIlqPc6w/76fwkGqokz3oh9GSEGlLICwmBWL8AypWimUg13IDtFpD0TJTriWA== dependencies: - "@sentry/types" "7.81.1" - "@sentry/utils" "7.81.1" + "@sentry/types" "7.84.0" + "@sentry/utils" "7.84.0" "@sentry/node@^7.64.0", "@sentry/node@^7.77.0": - version "7.81.1" - resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.81.1.tgz#3559ee1cef22f8220c907169cc60cc44744503b1" - integrity sha512-bKS3Mb95bar8AUEZSLKQ/RTSfFXo5sCSPNiBr5dDFuVljDFdkLq6NE3svG5bisrbENqfi0bqWsB4GZ7NHRTPbA== - dependencies: - "@sentry-internal/tracing" "7.81.1" - "@sentry/core" "7.81.1" - "@sentry/types" "7.81.1" - "@sentry/utils" "7.81.1" + version "7.84.0" + resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.84.0.tgz#c06167106796b2b83c0a9b52fa56f8ca820034ca" + integrity sha512-Xm3fIXT3TZOQi+6uQBavI8iOehD3PkY7v0y3hog0d4lQTH88vQK9BBsI+jZEq81Em+RG/u7vZNiFo6YMTnWF7Q== + dependencies: + "@sentry-internal/tracing" "7.84.0" + "@sentry/core" "7.84.0" + "@sentry/types" "7.84.0" + "@sentry/utils" "7.84.0" https-proxy-agent "^5.0.0" -"@sentry/types@7.81.1": - version "7.81.1" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.81.1.tgz#2b2551fc291e1089651fd574a68f7c4175878bd5" - integrity sha512-dvJvGyctiaPMIQqa46k56Re5IODWMDxiHJ1UjBs/WYDLrmWFPGrEbyJ8w8CYLhYA+7qqrCyIZmHbWSTRIxstHw== +"@sentry/types@7.84.0": + version "7.84.0" + resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.84.0.tgz#e8db86c36c61659c3b2558f0aa8b6a073a756117" + integrity sha512-VqGLIF3JOUrk7yIXjLXJvAORkZL1e3dDX0Q1okRehwyt/5CRE+mdUTeJZkBo9P9mBwgMyvtwklzOGGrzjb4eMA== -"@sentry/utils@7.81.1": - version "7.81.1" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.81.1.tgz#42f3e77baf90205cec1f8599eb8445a6918030bd" - integrity sha512-gq+MDXIirHKxNZ+c9/lVvCXd6y2zaZANujwlFggRH2u9SRiPaIXVilLpvMm4uJqmqBMEcY81ArujExtHvkbCqg== +"@sentry/utils@7.84.0": + version "7.84.0" + resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.84.0.tgz#32861d922fa31e86dd2863a1d9dfc5a369e98952" + integrity sha512-qdUVuxnRBvaf05AU+28R+xYtZmi/Ymf8os3Njq9g4XuA+QEkZLbzmIpRK5W9Ja7vUtjOeg29Xgg43A8znde9LQ== dependencies: - "@sentry/types" "7.81.1" + "@sentry/types" "7.84.0" "@types/glob@^8.0.0": version "8.1.0" @@ -587,9 +587,9 @@ "@types/node" "*" "@types/node@*", "@types/node@^20.4.2", "@types/node@^20.9.0": - version "20.10.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.0.tgz#16ddf9c0a72b832ec4fcce35b8249cf149214617" - integrity sha512-D0WfRmU9TQ8I9PFx9Yc+EBHw+vSpIub4IDvQivcp26PtPrdMGAq5SDcpXEo/epqa/DXotVpekHiLNTg3iaKXBQ== + version "20.10.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.3.tgz#4900adcc7fc189d5af5bb41da8f543cea6962030" + integrity sha512-XJavIpZqiXID5Yxnxv3RUDKTN5b81ddNC3ecsA0SoFXz/QU8OGBwZGMomiq0zw+uuqbL/krztv/DINAQ/EV4gg== dependencies: undici-types "~5.26.4" @@ -601,9 +601,9 @@ undici-types "~5.26.4" "@types/node@^18": - version "18.18.13" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.18.13.tgz#ae0f76c0bfe79d8fad0f910b78ae3e59b333c6e8" - integrity sha512-vXYZGRrSCreZmq1rEjMRLXJhiy8MrIeVasx+PCVlP414N7CJLHnMf+juVvjdprHyH+XRy3zKZLHeNueOpJCn0g== + version "18.19.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.2.tgz#865107157bda220eef9fa8c2173152d6559a41ae" + integrity sha512-6wzfBdbWpe8QykUkXBjtmO3zITA0A3FIjoy+in0Y2K4KrCiRhNYJIdwAPDffZ3G6GnaKaSLSEa9ZuORLfEoiwg== dependencies: undici-types "~5.26.4" @@ -945,17 +945,17 @@ case@^1.6.3: integrity sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== cdktf-cli@^0.19.0: - version "0.19.1" - resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.19.1.tgz#35cb7be8e6431896d8f1cd8f6161ee6a380bd1af" - integrity sha512-itqPbZKIYpdCCIUGzX/yVSrcD0U16XqpNbnE8hX7E3Kg2Lus5/fjeXX2ijyZw3vp63ScS+5PStEyMNooCh84IA== - dependencies: - "@cdktf/cli-core" "0.19.1" - "@cdktf/commons" "0.19.1" - "@cdktf/hcl2cdk" "0.19.1" - "@cdktf/hcl2json" "0.19.1" + version "0.19.2" + resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.19.2.tgz#09fcab9dcc3eeca7b45c36687467b56b9d4f231a" + integrity sha512-rwd0yOJmHecOnQsnZxsKFgBO2r1AuPw34IfKSx+FSK6H7aO13Pak+tef6tlhn7f0K79Abk2ZGD3OLs8TeG+78w== + dependencies: + "@cdktf/cli-core" "0.19.2" + "@cdktf/commons" "0.19.2" + "@cdktf/hcl2cdk" "0.19.2" + "@cdktf/hcl2json" "0.19.2" "@inquirer/prompts" "^2.3.0" "@sentry/node" "^7.64.0" - cdktf "0.19.1" + cdktf "0.19.2" ci-info "^3.8.0" codemaker "^1.87.0" constructs "^10.0.25" @@ -975,10 +975,10 @@ cdktf-cli@^0.19.0: yoga-layout-prebuilt "^1.10.0" zod "^3.22.4" -cdktf@0.19.1, cdktf@^0.19.0: - version "0.19.1" - resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.19.1.tgz#1996a0069b97500e2a01df4f473963153541b784" - integrity sha512-scZhp2+FEgNUd+l5vaDCHABdwFApB1Lcknn2+dUw8aYwNsMoYT0tWs4AzPg22Z4jQFOIQLIXmBxifhr+RahdRg== +cdktf@0.19.2, cdktf@^0.19.0: + version "0.19.2" + resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.19.2.tgz#c93b794a9c8ac6b4e50bc24e80d06d84089a8766" + integrity sha512-FHOERDO7i2g/+pUaaZCVDKsbXEBtWYOgELL1UKjNp37DyEmtFlltdsgutVfouoil0C7W5za2IydD6sSeoH5aUw== dependencies: archiver "5.3.2" json-stable-stringify "^1.0.2" @@ -1521,7 +1521,7 @@ define-data-property@^1.0.1, define-data-property@^1.1.1: gopd "^1.0.1" has-property-descriptors "^1.0.0" -define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== @@ -1833,9 +1833,9 @@ fs-extra@^10.1.0: universalify "^2.0.0" fs-extra@^11.1.1: - version "11.1.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" - integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" @@ -2563,9 +2563,9 @@ jsii-rosetta@^1.92.0: yargs "^16.2.0" jsii-rosetta@^5.1.9: - version "5.2.3" - resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.2.3.tgz#583aec38bbb729a1b9ce7f7d6c19f4d544fb0711" - integrity sha512-W4uUf1IMW9ZVDXWc/DsfJqn07SuhC19+g7IvmPd7W/Qs1kIRu7nvqGS8DrHO0SVa4A5uCb3w+fSGUGb/7KjcfQ== + version "5.2.4" + resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.2.4.tgz#febd84695ea6ca9875ab5a441e387f7e3e8c3151" + integrity sha512-X8R0mNbakYYKHqpoTEH1Ncy5PLT7Rz5/8nr1xH5DjIt9gacfW+dV9eaZj/gkxly3H+ECYK4v3/tWV7KFYMIBPQ== dependencies: "@jsii/check-node" "1.92.0" "@jsii/spec" "^1.92.0" @@ -2601,12 +2601,12 @@ jsii-rosetta@~5.1.2: yargs "^17.7.2" jsii-srcmak@^0.1.951, jsii-srcmak@^0.1.954: - version "0.1.978" - resolved "https://registry.yarnpkg.com/jsii-srcmak/-/jsii-srcmak-0.1.978.tgz#340e05d62eebfbbc7d1104a7d3ed9da0c82e40ff" - integrity sha512-OXfck4d1dDJHnZ8S49Yajrr1u4y6+gmLg66uvjaxtbe0jebQ7chECL3RWedUZKvIkucslMyfk3YjxUSIJWiVOQ== + version "0.1.985" + resolved "https://registry.yarnpkg.com/jsii-srcmak/-/jsii-srcmak-0.1.985.tgz#49cfcf9abef2f55713f1fcdac6739fed75dc1092" + integrity sha512-ALYbOoeKTYHtMBBO+fxnp+11UNC2BiqCCz72mTOq1xbONDN4nbg2fEzBKmdYBjrq/3drenbRtbUgHV9pbbaNTQ== dependencies: fs-extra "^9.1.0" - jsii "~5.2.32" + jsii "~5.2.35" jsii-pacmak "^1.92.0" ncp "^2.0.0" yargs "^15.4.1" @@ -2630,10 +2630,10 @@ jsii@1.92.0: typescript "~3.9.10" yargs "^16.2.0" -jsii@^5.1.10, jsii@~5.2.32, jsii@~5.2.5: - version "5.2.33" - resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.33.tgz#89d84fd3ebc274af365dec2ad42c733d0d4a3d57" - integrity sha512-r4cv/eXs+qbm/tqkV/prgjUFM80T8Cl0CTffJV8UMC0VX2ohXMCTSh+IA6ql9ev3lPVjKf6RxBQ+fn/d6D4Tew== +jsii@^5.1.10, jsii@~5.2.35, jsii@~5.2.5: + version "5.2.36" + resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.36.tgz#13ae0af4e90f0a2177af7940d9b0520c345bc720" + integrity sha512-JhQJ3LcRVxNalVSH3k8+SwpQ5X91PyolsahFjf0vAz3uivPxwfSa/o6GIX+FbsX5rdOBTWZYhUHuiz8cdZDEoQ== dependencies: "@jsii/check-node" "1.92.0" "@jsii/spec" "^1.92.0" @@ -2643,7 +2643,7 @@ jsii@^5.1.10, jsii@~5.2.32, jsii@~5.2.5: fast-deep-equal "^3.1.3" log4js "^6.9.1" semver "^7.5.4" - semver-intersect "^1.4.0" + semver-intersect "^1.5.0" sort-json "^2.0.1" spdx-license-list "^6.8.0" typescript "~5.2" @@ -3105,12 +3105,12 @@ object-keys@^1.1.1: integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" + call-bind "^1.0.5" + define-properties "^1.2.1" has-symbols "^1.0.3" object-keys "^1.1.1" @@ -3369,10 +3369,10 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -projen@^0.77.3: - version "0.77.3" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.77.3.tgz#355356b288c8ef7ddb4984b8fad27c48a26b6ca6" - integrity sha512-v+4PQj3HS2TfQFgwGU/dh2oVsKW/7fFc3y6H6sjiKFHngNZCKRcBqBp7s8k/YdK6PVUaLnQ+adQ3+c99IItpig== +projen@^0.77.4: + version "0.77.4" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.77.4.tgz#d05393f49c326b00f42fc3814120fcd6f5fc0881" + integrity sha512-mErPkhiIweZ1GBfr8syClijfqNmPtAu1skOwsrm49lmyEIA8esqQCguzKV1/ytyv1N+4apfOUmkUW/+5dBTbPA== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3" @@ -3632,19 +3632,19 @@ scheduler@^0.20.2: loose-envify "^1.1.0" object-assign "^4.1.1" -semver-intersect@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/semver-intersect/-/semver-intersect-1.4.0.tgz#bdd9c06bedcdd2fedb8cd352c3c43ee8c61321f3" - integrity sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ== +semver-intersect@^1.4.0, semver-intersect@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/semver-intersect/-/semver-intersect-1.5.0.tgz#bb3aa0ea504935410d34cf15f49818d56906bd48" + integrity sha512-BDjWX7yCC0haX4W/zrnV2JaMpVirwaEkGOBmgRQtH++F1N3xl9v7k9H44xfTqwl+yLNNSbMKosoVSTIiJVQ2Pw== dependencies: - semver "^5.0.0" + semver "^6.3.0" -"semver@2 || 3 || 4 || 5", semver@^5.0.0: +"semver@2 || 3 || 4 || 5": version "5.7.2" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^6.0.0: +semver@^6.0.0, semver@^6.3.0: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -4122,9 +4122,9 @@ typedarray@^0.0.6: integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== typescript@next: - version "5.4.0-dev.20231126" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.0-dev.20231126.tgz#23d49e837ae43c9db3be3739832aa393633939a3" - integrity sha512-H10NDH9sKzdLCICwIO+hhk+La5Kfs4/+Qit1tWjd7Xw7h/42y0Ulqhc6Wm+n8XO5PEkgZeOEY8EUBd/evOhLig== + version "5.4.0-dev.20231203" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.0-dev.20231203.tgz#929073ecd235bddb3b351ed6f18cf25d2ebb3069" + integrity sha512-6Y/R8j4ZKcCbddjtRncKgCKz5RbqfQe04TIfYnUbPq2CKhJVGP6Bvmkm2GVI9lpTZR64c3wvY28k+exT/jBVdQ== typescript@~3.9.10: version "3.9.10" @@ -4152,9 +4152,9 @@ undici-types@~5.26.4: integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== undici@^5.25.4: - version "5.28.0" - resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.0.tgz#09f6aa4a6f34de8996eec585fe4ceebaa9ef3f36" - integrity sha512-gM12DkXhlAc5+/TPe60iy9P6ETgVfqTuRJ6aQ4w8RYu0MqKuXhaq3/b86GfzDQnNA3NUO6aUNdvevrKH59D0Nw== + version "5.28.2" + resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.2.tgz#fea200eac65fc7ecaff80a023d1a0543423b4c91" + integrity sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w== dependencies: "@fastify/busboy" "^2.0.0"