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 ad633fd75..5e75b7fd2 100644 --- a/.github/workflows/provider-upgrade.yml +++ b/.github/workflows/provider-upgrade.yml @@ -37,6 +37,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' }} @@ -45,11 +58,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/apiKey.csharp.md b/docs/apiKey.csharp.md index 5f94efe1b..0e8b0abed 100644 --- a/docs/apiKey.csharp.md +++ b/docs/apiKey.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apiKey.go.md b/docs/apiKey.go.md index a8e8f9877..df010876d 100644 --- a/docs/apiKey.go.md +++ b/docs/apiKey.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apiKey.java.md b/docs/apiKey.java.md index 8003b42ff..b9eaaf70f 100644 --- a/docs/apiKey.java.md +++ b/docs/apiKey.java.md @@ -132,9 +132,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -326,6 +329,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -357,6 +366,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 @@ -382,6 +409,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apiKey.python.md b/docs/apiKey.python.md index 27d57dc6a..5c1d8c63c 100644 --- a/docs/apiKey.python.md +++ b/docs/apiKey.python.md @@ -130,9 +130,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -349,6 +352,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -384,6 +393,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 @@ -411,6 +440,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apiKey.typescript.md b/docs/apiKey.typescript.md index 91a46190b..9287e03e5 100644 --- a/docs/apiKey.typescript.md +++ b/docs/apiKey.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apmRetentionFilter.csharp.md b/docs/apmRetentionFilter.csharp.md index 0b4ffb479..ceabaa88a 100644 --- a/docs/apmRetentionFilter.csharp.md +++ b/docs/apmRetentionFilter.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". | | PutFilter | *No description.* | | ResetFilter | *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". + +--- + ##### `PutFilter` ```csharp diff --git a/docs/apmRetentionFilter.go.md b/docs/apmRetentionFilter.go.md index 550a88f52..b226f8801 100644 --- a/docs/apmRetentionFilter.go.md +++ b/docs/apmRetentionFilter.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". | | PutFilter | *No description.* | | ResetFilter | *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". + +--- + ##### `PutFilter` ```go diff --git a/docs/apmRetentionFilter.java.md b/docs/apmRetentionFilter.java.md index 51741ca9b..72781a763 100644 --- a/docs/apmRetentionFilter.java.md +++ b/docs/apmRetentionFilter.java.md @@ -181,9 +181,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putFilter | *No description.* | | resetFilter | *No description.* | @@ -377,6 +380,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -408,6 +417,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 @@ -433,6 +460,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". + +--- + ##### `putFilter` ```java diff --git a/docs/apmRetentionFilter.python.md b/docs/apmRetentionFilter.python.md index b26d6abf6..47a6143f2 100644 --- a/docs/apmRetentionFilter.python.md +++ b/docs/apmRetentionFilter.python.md @@ -178,9 +178,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_filter | *No description.* | | reset_filter | *No description.* | @@ -399,6 +402,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -434,6 +443,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 @@ -461,6 +490,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_filter` ```python diff --git a/docs/apmRetentionFilter.typescript.md b/docs/apmRetentionFilter.typescript.md index 5fd6eb370..2e0364d8e 100644 --- a/docs/apmRetentionFilter.typescript.md +++ b/docs/apmRetentionFilter.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". | | putFilter | *No description.* | | resetFilter | *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". + +--- + ##### `putFilter` ```typescript diff --git a/docs/apmRetentionFilterOrder.csharp.md b/docs/apmRetentionFilterOrder.csharp.md index fcb630d3f..6a13976a8 100644 --- a/docs/apmRetentionFilterOrder.csharp.md +++ b/docs/apmRetentionFilterOrder.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apmRetentionFilterOrder.go.md b/docs/apmRetentionFilterOrder.go.md index 79da83826..23d3db431 100644 --- a/docs/apmRetentionFilterOrder.go.md +++ b/docs/apmRetentionFilterOrder.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apmRetentionFilterOrder.java.md b/docs/apmRetentionFilterOrder.java.md index ce99ffd5f..f86db829b 100644 --- a/docs/apmRetentionFilterOrder.java.md +++ b/docs/apmRetentionFilterOrder.java.md @@ -132,9 +132,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -326,6 +329,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -357,6 +366,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 @@ -382,6 +409,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apmRetentionFilterOrder.python.md b/docs/apmRetentionFilterOrder.python.md index 9f8fa41ab..2d9f26508 100644 --- a/docs/apmRetentionFilterOrder.python.md +++ b/docs/apmRetentionFilterOrder.python.md @@ -130,9 +130,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -349,6 +352,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -384,6 +393,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 @@ -411,6 +440,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/apmRetentionFilterOrder.typescript.md b/docs/apmRetentionFilterOrder.typescript.md index 62831caaa..61cb006eb 100644 --- a/docs/apmRetentionFilterOrder.typescript.md +++ b/docs/apmRetentionFilterOrder.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/applicationKey.csharp.md b/docs/applicationKey.csharp.md index ec615f51d..e28ee3128 100644 --- a/docs/applicationKey.csharp.md +++ b/docs/applicationKey.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/applicationKey.go.md b/docs/applicationKey.go.md index d8898b473..a552f7a3d 100644 --- a/docs/applicationKey.go.md +++ b/docs/applicationKey.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/applicationKey.java.md b/docs/applicationKey.java.md index 12e6a74a5..79d98074e 100644 --- a/docs/applicationKey.java.md +++ b/docs/applicationKey.java.md @@ -145,9 +145,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.* | --- @@ -340,6 +343,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -371,6 +380,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 @@ -396,6 +423,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/applicationKey.python.md b/docs/applicationKey.python.md index 5689c31a3..1496f8567 100644 --- a/docs/applicationKey.python.md +++ b/docs/applicationKey.python.md @@ -143,9 +143,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.* | --- @@ -363,6 +366,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -398,6 +407,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 @@ -425,6 +454,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/applicationKey.typescript.md b/docs/applicationKey.typescript.md index c915799ad..6c339fc07 100644 --- a/docs/applicationKey.typescript.md +++ b/docs/applicationKey.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/authnMapping.csharp.md b/docs/authnMapping.csharp.md index e236ae16d..4d7d78d0b 100644 --- a/docs/authnMapping.csharp.md +++ b/docs/authnMapping.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/authnMapping.go.md b/docs/authnMapping.go.md index 5c167de77..b1fdb40c6 100644 --- a/docs/authnMapping.go.md +++ b/docs/authnMapping.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/authnMapping.java.md b/docs/authnMapping.java.md index 91388bea7..eb824d1f3 100644 --- a/docs/authnMapping.java.md +++ b/docs/authnMapping.java.md @@ -169,9 +169,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.* | --- @@ -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". + +--- + ##### `resetId` ```java diff --git a/docs/authnMapping.python.md b/docs/authnMapping.python.md index 6fa8c8949..4329c751d 100644 --- a/docs/authnMapping.python.md +++ b/docs/authnMapping.python.md @@ -167,9 +167,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.* | --- @@ -387,6 +390,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -422,6 +431,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 @@ -449,6 +478,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/authnMapping.typescript.md b/docs/authnMapping.typescript.md index 475b57de4..c16b45b55 100644 --- a/docs/authnMapping.typescript.md +++ b/docs/authnMapping.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/childOrganization.csharp.md b/docs/childOrganization.csharp.md index ab9d1dabb..f7fab7cfd 100644 --- a/docs/childOrganization.csharp.md +++ b/docs/childOrganization.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/childOrganization.go.md b/docs/childOrganization.go.md index 0844ff38a..c88f1d9c3 100644 --- a/docs/childOrganization.go.md +++ b/docs/childOrganization.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/childOrganization.java.md b/docs/childOrganization.java.md index 0b0a30f04..dc2cc63e0 100644 --- a/docs/childOrganization.java.md +++ b/docs/childOrganization.java.md @@ -145,9 +145,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.* | --- @@ -340,6 +343,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -371,6 +380,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 @@ -396,6 +423,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/childOrganization.python.md b/docs/childOrganization.python.md index ac35d1d40..4be80ea44 100644 --- a/docs/childOrganization.python.md +++ b/docs/childOrganization.python.md @@ -143,9 +143,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.* | --- @@ -363,6 +366,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -398,6 +407,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 @@ -425,6 +454,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/childOrganization.typescript.md b/docs/childOrganization.typescript.md index 8ce5172fb..b2f057514 100644 --- a/docs/childOrganization.typescript.md +++ b/docs/childOrganization.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/cloudConfigurationRule.csharp.md b/docs/cloudConfigurationRule.csharp.md index 08b66ba8d..b70253031 100644 --- a/docs/cloudConfigurationRule.csharp.md +++ b/docs/cloudConfigurationRule.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". | | PutFilter | *No description.* | | ResetFilter | *No description.* | | ResetGroupBy | *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". + +--- + ##### `PutFilter` ```csharp diff --git a/docs/cloudConfigurationRule.go.md b/docs/cloudConfigurationRule.go.md index e83e8bf0a..7bf14b30d 100644 --- a/docs/cloudConfigurationRule.go.md +++ b/docs/cloudConfigurationRule.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". | | PutFilter | *No description.* | | ResetFilter | *No description.* | | ResetGroupBy | *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". + +--- + ##### `PutFilter` ```go diff --git a/docs/cloudConfigurationRule.java.md b/docs/cloudConfigurationRule.java.md index 4271f3210..5733995a1 100644 --- a/docs/cloudConfigurationRule.java.md +++ b/docs/cloudConfigurationRule.java.md @@ -265,9 +265,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putFilter | *No description.* | | resetFilter | *No description.* | | resetGroupBy | *No description.* | @@ -466,6 +469,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -497,6 +506,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 @@ -522,6 +549,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". + +--- + ##### `putFilter` ```java diff --git a/docs/cloudConfigurationRule.python.md b/docs/cloudConfigurationRule.python.md index 2430976ee..8a63cf502 100644 --- a/docs/cloudConfigurationRule.python.md +++ b/docs/cloudConfigurationRule.python.md @@ -261,9 +261,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_filter | *No description.* | | reset_filter | *No description.* | | reset_group_by | *No description.* | @@ -487,6 +490,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -522,6 +531,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 @@ -549,6 +578,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_filter` ```python diff --git a/docs/cloudConfigurationRule.typescript.md b/docs/cloudConfigurationRule.typescript.md index 8519e96fb..69d3d2106 100644 --- a/docs/cloudConfigurationRule.typescript.md +++ b/docs/cloudConfigurationRule.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". | | putFilter | *No description.* | | resetFilter | *No description.* | | resetGroupBy | *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". + +--- + ##### `putFilter` ```typescript diff --git a/docs/cloudWorkloadSecurityAgentRule.csharp.md b/docs/cloudWorkloadSecurityAgentRule.csharp.md index 9b96c783e..240e45b1b 100644 --- a/docs/cloudWorkloadSecurityAgentRule.csharp.md +++ b/docs/cloudWorkloadSecurityAgentRule.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.* | | ResetEnabled | *No description.* | | ResetId | *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". + +--- + ##### `ResetDescription` ```csharp diff --git a/docs/cloudWorkloadSecurityAgentRule.go.md b/docs/cloudWorkloadSecurityAgentRule.go.md index fa8ae7218..289451505 100644 --- a/docs/cloudWorkloadSecurityAgentRule.go.md +++ b/docs/cloudWorkloadSecurityAgentRule.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.* | | ResetEnabled | *No description.* | | ResetId | *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". + +--- + ##### `ResetDescription` ```go diff --git a/docs/cloudWorkloadSecurityAgentRule.java.md b/docs/cloudWorkloadSecurityAgentRule.java.md index 7298d6045..39046af58 100644 --- a/docs/cloudWorkloadSecurityAgentRule.java.md +++ b/docs/cloudWorkloadSecurityAgentRule.java.md @@ -182,9 +182,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". | | resetDescription | *No description.* | | resetEnabled | *No description.* | | resetId | *No description.* | @@ -379,6 +382,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -410,6 +419,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 @@ -435,6 +462,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/cloudWorkloadSecurityAgentRule.python.md b/docs/cloudWorkloadSecurityAgentRule.python.md index 82a608387..da6e6ac09 100644 --- a/docs/cloudWorkloadSecurityAgentRule.python.md +++ b/docs/cloudWorkloadSecurityAgentRule.python.md @@ -179,9 +179,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_description | *No description.* | | reset_enabled | *No description.* | | reset_id | *No description.* | @@ -401,6 +404,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -436,6 +445,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 @@ -463,6 +492,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/cloudWorkloadSecurityAgentRule.typescript.md b/docs/cloudWorkloadSecurityAgentRule.typescript.md index 2a30dc829..7226c71b1 100644 --- a/docs/cloudWorkloadSecurityAgentRule.typescript.md +++ b/docs/cloudWorkloadSecurityAgentRule.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.* | | resetEnabled | *No description.* | | resetId | *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". + +--- + ##### `resetDescription` ```typescript diff --git a/docs/dashboard.csharp.md b/docs/dashboard.csharp.md index c20356181..2b5918c66 100644 --- a/docs/dashboard.csharp.md +++ b/docs/dashboard.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". | | PutTemplateVariable | *No description.* | | PutTemplateVariablePreset | *No description.* | | PutWidget | *No description.* | @@ -275,6 +278,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -305,6 +314,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 @@ -329,6 +356,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". + +--- + ##### `PutTemplateVariable` ```csharp @@ -149954,46 +149997,3 @@ The name of the query for use in formulas. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#name Dashboard#name} --- - -##### `Query`Required - -```csharp -public string Query { get; set; } -``` - -- *Type:* string - -The metrics query definition. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#query Dashboard#query} - ---- - -##### `Aggregator`Optional - -```csharp -public string Aggregator { get; set; } -``` - -- *Type:* string - -The aggregation methods available for metrics queries. Valid values are `avg`, `min`, `max`, `sum`, `last`, `area`, `l2norm`, `percentile`. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#aggregator Dashboard#aggregator} - ---- - -##### `DataSource`Optional - -```csharp -public string DataSource { get; set; } -``` - -- *Type:* string - -The data source for metrics queries. Defaults to `"metrics"`. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#data_source Dashboard#data_source} - ---- - diff --git a/docs/dashboard.go.md b/docs/dashboard.go.md index 067a0bf4e..f7d11caf6 100644 --- a/docs/dashboard.go.md +++ b/docs/dashboard.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". | | PutTemplateVariable | *No description.* | | PutTemplateVariablePreset | *No description.* | | PutWidget | *No description.* | @@ -275,6 +278,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -305,6 +314,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 @@ -329,6 +356,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". + +--- + ##### `PutTemplateVariable` ```go @@ -149954,46 +149997,3 @@ The name of the query for use in formulas. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#name Dashboard#name} --- - -##### `Query`Required - -```go -Query *string -``` - -- *Type:* *string - -The metrics query definition. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#query Dashboard#query} - ---- - -##### `Aggregator`Optional - -```go -Aggregator *string -``` - -- *Type:* *string - -The aggregation methods available for metrics queries. Valid values are `avg`, `min`, `max`, `sum`, `last`, `area`, `l2norm`, `percentile`. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#aggregator Dashboard#aggregator} - ---- - -##### `DataSource`Optional - -```go -DataSource *string -``` - -- *Type:* *string - -The data source for metrics queries. Defaults to `"metrics"`. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#data_source Dashboard#data_source} - ---- - diff --git a/docs/dashboard.java.md b/docs/dashboard.java.md index 6dbad5661..6983a846a 100644 --- a/docs/dashboard.java.md +++ b/docs/dashboard.java.md @@ -299,9 +299,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putTemplateVariable | *No description.* | | putTemplateVariablePreset | *No description.* | | putWidget | *No description.* | @@ -508,6 +511,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -539,6 +548,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 @@ -564,6 +591,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". + +--- + ##### `putTemplateVariable` ```java @@ -149954,46 +149997,3 @@ The maximum number of items in the group. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#limit Dashboard#limit} --- - -##### `sortQuery`Optional - -```java -public DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestLogQueryGroupBySortQuery getSortQuery(); -``` - -- *Type:* DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestLogQueryGroupBySortQuery - -sort_query block. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#sort_query Dashboard#sort_query} - ---- - -### DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestLogQueryGroupBySortQuery - -#### Initializer - -```java -import com.hashicorp.cdktf.providers.datadog.dashboard.DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestLogQueryGroupBySortQuery; - -DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestLogQueryGroupBySortQuery.builder() - .aggregation(java.lang.String) - .order(java.lang.String) -// .facet(java.lang.String) - .build(); -``` - -#### Properties - -| **Name** | **Type** | **Description** | -| --- | --- | --- | -| aggregation | java.lang.String | The aggregation method. | -| order | java.lang.String | Widget sorting methods. Valid values are `asc`, `desc`. | -| facet | java.lang.String | The facet name. | - ---- - -##### `aggregation`Required - -```java -public java.lang.String getAggregation(); diff --git a/docs/dashboard.python.md b/docs/dashboard.python.md index cb0b16613..52af923c2 100644 --- a/docs/dashboard.python.md +++ b/docs/dashboard.python.md @@ -293,9 +293,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_template_variable | *No description.* | | put_template_variable_preset | *No description.* | | put_widget | *No description.* | @@ -527,6 +530,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -562,6 +571,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 @@ -589,6 +618,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_template_variable` ```python @@ -149950,50 +149997,3 @@ storage: str - *Type:* str -Storage location (private beta). - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#storage Dashboard#storage} - ---- - -### DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestQueryEventQueryCompute - -#### Initializer - -```python -from cdktf_cdktf_provider_datadog import dashboard - -dashboard.DashboardWidgetSplitGraphDefinitionSourceWidgetDefinitionToplistDefinitionRequestQueryEventQueryCompute( - aggregation: str, - interval: typing.Union[int, float] = None, - metric: str = None -) -``` - -#### Properties - -| **Name** | **Type** | **Description** | -| --- | --- | --- | -| aggregation | str | The aggregation methods for event platform queries. | -| interval | typing.Union[int, float] | A time interval in milliseconds. | -| metric | str | The measurable attribute to compute. | - ---- - -##### `aggregation`Required - -```python -aggregation: str -``` - -- *Type:* str - -The aggregation methods for event platform queries. - -Valid values are `count`, `cardinality`, `median`, `pc75`, `pc90`, `pc95`, `pc98`, `pc99`, `sum`, `min`, `max`, `avg`. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#aggregation Dashboard#aggregation} - ---- - -##### `interval`Optional diff --git a/docs/dashboard.typescript.md b/docs/dashboard.typescript.md index cc574aecc..e131fdcdd 100644 --- a/docs/dashboard.typescript.md +++ b/docs/dashboard.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". | | putTemplateVariable | *No description.* | | putTemplateVariablePreset | *No description.* | | putWidget | *No description.* | @@ -275,6 +278,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -305,6 +314,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 @@ -329,6 +356,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". + +--- + ##### `putTemplateVariable` ```typescript @@ -149954,46 +149997,3 @@ public readonly interval: number; ``` - *Type:* number - -Define the time interval in seconds. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#interval Dashboard#interval} - ---- - -### DashboardWidgetTimeseriesDefinitionRequestMetadata - -#### Initializer - -```typescript -import { dashboard } from '@cdktf/provider-datadog' - -const dashboardWidgetTimeseriesDefinitionRequestMetadata: dashboard.DashboardWidgetTimeseriesDefinitionRequestMetadata = { ... } -``` - -#### Properties - -| **Name** | **Type** | **Description** | -| --- | --- | --- | -| expression | string | The expression name. | -| aliasName | string | The expression alias. | - ---- - -##### `expression`Required - -```typescript -public readonly expression: string; -``` - -- *Type:* string - -The expression name. - -Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datadog/datadog/3.33.0/docs/resources/dashboard#expression Dashboard#expression} - ---- - -##### `aliasName`Optional - -```typescript diff --git a/docs/dashboardJson.csharp.md b/docs/dashboardJson.csharp.md index e6a631cdb..1c716113d 100644 --- a/docs/dashboardJson.csharp.md +++ b/docs/dashboardJson.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". | | ResetDashboardLists | *No description.* | | ResetId | *No description.* | | ResetUrl | *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". + +--- + ##### `ResetDashboardLists` ```csharp diff --git a/docs/dashboardJson.go.md b/docs/dashboardJson.go.md index 26f767438..e35dcf9af 100644 --- a/docs/dashboardJson.go.md +++ b/docs/dashboardJson.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". | | ResetDashboardLists | *No description.* | | ResetId | *No description.* | | ResetUrl | *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". + +--- + ##### `ResetDashboardLists` ```go diff --git a/docs/dashboardJson.java.md b/docs/dashboardJson.java.md index a5d1e4354..c7649e7cc 100644 --- a/docs/dashboardJson.java.md +++ b/docs/dashboardJson.java.md @@ -171,9 +171,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetDashboardLists | *No description.* | | resetId | *No description.* | | resetUrl | *No description.* | @@ -368,6 +371,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -399,6 +408,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 @@ -424,6 +451,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". + +--- + ##### `resetDashboardLists` ```java diff --git a/docs/dashboardJson.python.md b/docs/dashboardJson.python.md index e461affb3..8022df585 100644 --- a/docs/dashboardJson.python.md +++ b/docs/dashboardJson.python.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_dashboard_lists | *No description.* | | reset_id | *No description.* | | reset_url | *No description.* | @@ -391,6 +394,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -426,6 +435,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 @@ -453,6 +482,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_dashboard_lists` ```python diff --git a/docs/dashboardJson.typescript.md b/docs/dashboardJson.typescript.md index 3df962f68..6130ca802 100644 --- a/docs/dashboardJson.typescript.md +++ b/docs/dashboardJson.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". | | resetDashboardLists | *No description.* | | resetId | *No description.* | | resetUrl | *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". + +--- + ##### `resetDashboardLists` ```typescript diff --git a/docs/dashboardList.csharp.md b/docs/dashboardList.csharp.md index 19e970a48..34f05d8c8 100644 --- a/docs/dashboardList.csharp.md +++ b/docs/dashboardList.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". | | PutDashItem | *No description.* | | ResetDashItem | *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". + +--- + ##### `PutDashItem` ```csharp diff --git a/docs/dashboardList.go.md b/docs/dashboardList.go.md index e562bc23b..cd81a29ac 100644 --- a/docs/dashboardList.go.md +++ b/docs/dashboardList.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". | | PutDashItem | *No description.* | | ResetDashItem | *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". + +--- + ##### `PutDashItem` ```go diff --git a/docs/dashboardList.java.md b/docs/dashboardList.java.md index d2ec09440..aa06558b1 100644 --- a/docs/dashboardList.java.md +++ b/docs/dashboardList.java.md @@ -145,9 +145,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putDashItem | *No description.* | | resetDashItem | *No description.* | @@ -341,6 +344,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -372,6 +381,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 @@ -397,6 +424,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". + +--- + ##### `putDashItem` ```java diff --git a/docs/dashboardList.python.md b/docs/dashboardList.python.md index 34a8944c1..394fd8013 100644 --- a/docs/dashboardList.python.md +++ b/docs/dashboardList.python.md @@ -142,9 +142,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_dash_item | *No description.* | | reset_dash_item | *No description.* | @@ -363,6 +366,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -398,6 +407,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 @@ -425,6 +454,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_dash_item` ```python diff --git a/docs/dashboardList.typescript.md b/docs/dashboardList.typescript.md index ed8f02bdb..22c343d75 100644 --- a/docs/dashboardList.typescript.md +++ b/docs/dashboardList.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". | | putDashItem | *No description.* | | resetDashItem | *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". + +--- + ##### `putDashItem` ```typescript diff --git a/docs/downtime.csharp.md b/docs/downtime.csharp.md index 3c497bf11..7cb3b9fe9 100644 --- a/docs/downtime.csharp.md +++ b/docs/downtime.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". | | PutRecurrence | *No description.* | | ResetEnd | *No description.* | | ResetEndDate | *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". + +--- + ##### `PutRecurrence` ```csharp diff --git a/docs/downtime.go.md b/docs/downtime.go.md index 867441329..9b8a8684a 100644 --- a/docs/downtime.go.md +++ b/docs/downtime.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". | | PutRecurrence | *No description.* | | ResetEnd | *No description.* | | ResetEndDate | *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". + +--- + ##### `PutRecurrence` ```go diff --git a/docs/downtime.java.md b/docs/downtime.java.md index c9e685401..d7eabe965 100644 --- a/docs/downtime.java.md +++ b/docs/downtime.java.md @@ -268,9 +268,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putRecurrence | *No description.* | | resetEnd | *No description.* | | resetEndDate | *No description.* | @@ -474,6 +477,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -505,6 +514,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 @@ -530,6 +557,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". + +--- + ##### `putRecurrence` ```java diff --git a/docs/downtime.python.md b/docs/downtime.python.md index e994a7204..aa724f2b3 100644 --- a/docs/downtime.python.md +++ b/docs/downtime.python.md @@ -265,9 +265,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_recurrence | *No description.* | | reset_end | *No description.* | | reset_end_date | *No description.* | @@ -496,6 +499,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -531,6 +540,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 @@ -558,6 +587,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_recurrence` ```python diff --git a/docs/downtime.typescript.md b/docs/downtime.typescript.md index 251b89bfe..26657ec2b 100644 --- a/docs/downtime.typescript.md +++ b/docs/downtime.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". | | putRecurrence | *No description.* | | resetEnd | *No description.* | | resetEndDate | *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". + +--- + ##### `putRecurrence` ```typescript diff --git a/docs/downtimeSchedule.csharp.md b/docs/downtimeSchedule.csharp.md index a4e9d3551..164df0ad1 100644 --- a/docs/downtimeSchedule.csharp.md +++ b/docs/downtimeSchedule.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". | | PutMonitorIdentifier | *No description.* | | PutOneTimeSchedule | *No description.* | | PutRecurringSchedule | *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". + +--- + ##### `PutMonitorIdentifier` ```csharp diff --git a/docs/downtimeSchedule.go.md b/docs/downtimeSchedule.go.md index ba6a26093..aa2f2f49a 100644 --- a/docs/downtimeSchedule.go.md +++ b/docs/downtimeSchedule.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". | | PutMonitorIdentifier | *No description.* | | PutOneTimeSchedule | *No description.* | | PutRecurringSchedule | *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". + +--- + ##### `PutMonitorIdentifier` ```go diff --git a/docs/downtimeSchedule.java.md b/docs/downtimeSchedule.java.md index 321f82d0e..0dab76e46 100644 --- a/docs/downtimeSchedule.java.md +++ b/docs/downtimeSchedule.java.md @@ -233,9 +233,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putMonitorIdentifier | *No description.* | | putOneTimeSchedule | *No description.* | | putRecurringSchedule | *No description.* | @@ -438,6 +441,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -469,6 +478,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 @@ -494,6 +521,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". + +--- + ##### `putMonitorIdentifier` ```java diff --git a/docs/downtimeSchedule.python.md b/docs/downtimeSchedule.python.md index 3b12b744f..059d66fca 100644 --- a/docs/downtimeSchedule.python.md +++ b/docs/downtimeSchedule.python.md @@ -230,9 +230,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_monitor_identifier | *No description.* | | put_one_time_schedule | *No description.* | | put_recurring_schedule | *No description.* | @@ -460,6 +463,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -495,6 +504,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 @@ -522,6 +551,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_monitor_identifier` ```python diff --git a/docs/downtimeSchedule.typescript.md b/docs/downtimeSchedule.typescript.md index 102069a37..30b2e660a 100644 --- a/docs/downtimeSchedule.typescript.md +++ b/docs/downtimeSchedule.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". | | putMonitorIdentifier | *No description.* | | putOneTimeSchedule | *No description.* | | putRecurringSchedule | *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". + +--- + ##### `putMonitorIdentifier` ```typescript diff --git a/docs/integrationAws.csharp.md b/docs/integrationAws.csharp.md index 6ca99d6d9..18ba75535 100644 --- a/docs/integrationAws.csharp.md +++ b/docs/integrationAws.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". | | ResetAccessKeyId | *No description.* | | ResetAccountId | *No description.* | | ResetAccountSpecificNamespaceRules | *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". + +--- + ##### `ResetAccessKeyId` ```csharp diff --git a/docs/integrationAws.go.md b/docs/integrationAws.go.md index 840dc996e..5d4c798bc 100644 --- a/docs/integrationAws.go.md +++ b/docs/integrationAws.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". | | ResetAccessKeyId | *No description.* | | ResetAccountId | *No description.* | | ResetAccountSpecificNamespaceRules | *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". + +--- + ##### `ResetAccessKeyId` ```go diff --git a/docs/integrationAws.java.md b/docs/integrationAws.java.md index f8cab6629..5aafe4217 100644 --- a/docs/integrationAws.java.md +++ b/docs/integrationAws.java.md @@ -272,9 +272,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetAccessKeyId | *No description.* | | resetAccountId | *No description.* | | resetAccountSpecificNamespaceRules | *No description.* | @@ -478,6 +481,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -509,6 +518,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 @@ -534,6 +561,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". + +--- + ##### `resetAccessKeyId` ```java diff --git a/docs/integrationAws.python.md b/docs/integrationAws.python.md index 8646a10c5..3d06b5323 100644 --- a/docs/integrationAws.python.md +++ b/docs/integrationAws.python.md @@ -269,9 +269,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_access_key_id | *No description.* | | reset_account_id | *No description.* | | reset_account_specific_namespace_rules | *No description.* | @@ -500,6 +503,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -535,6 +544,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 @@ -562,6 +591,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_access_key_id` ```python diff --git a/docs/integrationAws.typescript.md b/docs/integrationAws.typescript.md index 97c1e4b32..72acb2830 100644 --- a/docs/integrationAws.typescript.md +++ b/docs/integrationAws.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". | | resetAccessKeyId | *No description.* | | resetAccountId | *No description.* | | resetAccountSpecificNamespaceRules | *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". + +--- + ##### `resetAccessKeyId` ```typescript diff --git a/docs/integrationAwsLambdaArn.csharp.md b/docs/integrationAwsLambdaArn.csharp.md index c4c198b71..e83a17e6d 100644 --- a/docs/integrationAwsLambdaArn.csharp.md +++ b/docs/integrationAwsLambdaArn.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/integrationAwsLambdaArn.go.md b/docs/integrationAwsLambdaArn.go.md index 1fb8a3051..35e773cd5 100644 --- a/docs/integrationAwsLambdaArn.go.md +++ b/docs/integrationAwsLambdaArn.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/integrationAwsLambdaArn.java.md b/docs/integrationAwsLambdaArn.java.md index 7221305ba..b5e28ec69 100644 --- a/docs/integrationAwsLambdaArn.java.md +++ b/docs/integrationAwsLambdaArn.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/integrationAwsLambdaArn.python.md b/docs/integrationAwsLambdaArn.python.md index 8d4e6750c..6992ec72c 100644 --- a/docs/integrationAwsLambdaArn.python.md +++ b/docs/integrationAwsLambdaArn.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/integrationAwsLambdaArn.typescript.md b/docs/integrationAwsLambdaArn.typescript.md index d0fee9510..faf95a468 100644 --- a/docs/integrationAwsLambdaArn.typescript.md +++ b/docs/integrationAwsLambdaArn.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/integrationAwsLogCollection.csharp.md b/docs/integrationAwsLogCollection.csharp.md index 3d94ef61c..41effb911 100644 --- a/docs/integrationAwsLogCollection.csharp.md +++ b/docs/integrationAwsLogCollection.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/integrationAwsLogCollection.go.md b/docs/integrationAwsLogCollection.go.md index ad5c7650c..f6e72578d 100644 --- a/docs/integrationAwsLogCollection.go.md +++ b/docs/integrationAwsLogCollection.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/integrationAwsLogCollection.java.md b/docs/integrationAwsLogCollection.java.md index 08c9c74e6..56e521c78 100644 --- a/docs/integrationAwsLogCollection.java.md +++ b/docs/integrationAwsLogCollection.java.md @@ -159,9 +159,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.* | --- @@ -354,6 +357,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -385,6 +394,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 @@ -410,6 +437,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/integrationAwsLogCollection.python.md b/docs/integrationAwsLogCollection.python.md index 9d953051e..e842709cb 100644 --- a/docs/integrationAwsLogCollection.python.md +++ b/docs/integrationAwsLogCollection.python.md @@ -157,9 +157,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.* | --- @@ -377,6 +380,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -412,6 +421,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 @@ -439,6 +468,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/integrationAwsLogCollection.typescript.md b/docs/integrationAwsLogCollection.typescript.md index ea51f6629..912dd2702 100644 --- a/docs/integrationAwsLogCollection.typescript.md +++ b/docs/integrationAwsLogCollection.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/integrationAwsTagFilter.csharp.md b/docs/integrationAwsTagFilter.csharp.md index 9635a6884..23de0ef62 100644 --- a/docs/integrationAwsTagFilter.csharp.md +++ b/docs/integrationAwsTagFilter.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/integrationAwsTagFilter.go.md b/docs/integrationAwsTagFilter.go.md index 9e00a188a..0385d6df9 100644 --- a/docs/integrationAwsTagFilter.go.md +++ b/docs/integrationAwsTagFilter.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/integrationAwsTagFilter.java.md b/docs/integrationAwsTagFilter.java.md index 3b78ea2b7..ec0c6de7e 100644 --- a/docs/integrationAwsTagFilter.java.md +++ b/docs/integrationAwsTagFilter.java.md @@ -169,9 +169,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.* | --- @@ -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". + +--- + ##### `resetId` ```java diff --git a/docs/integrationAwsTagFilter.python.md b/docs/integrationAwsTagFilter.python.md index ca5ca570b..fa676e454 100644 --- a/docs/integrationAwsTagFilter.python.md +++ b/docs/integrationAwsTagFilter.python.md @@ -167,9 +167,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.* | --- @@ -387,6 +390,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -422,6 +431,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 @@ -449,6 +478,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/integrationAwsTagFilter.typescript.md b/docs/integrationAwsTagFilter.typescript.md index edfc23832..b2eef7a8d 100644 --- a/docs/integrationAwsTagFilter.typescript.md +++ b/docs/integrationAwsTagFilter.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/integrationAzure.csharp.md b/docs/integrationAzure.csharp.md index b66c547cd..b19652ba1 100644 --- a/docs/integrationAzure.csharp.md +++ b/docs/integrationAzure.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". | | ResetAppServicePlanFilters | *No description.* | | ResetAutomute | *No description.* | | ResetContainerAppFilters | *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". + +--- + ##### `ResetAppServicePlanFilters` ```csharp diff --git a/docs/integrationAzure.go.md b/docs/integrationAzure.go.md index a01885712..20a32b0df 100644 --- a/docs/integrationAzure.go.md +++ b/docs/integrationAzure.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". | | ResetAppServicePlanFilters | *No description.* | | ResetAutomute | *No description.* | | ResetContainerAppFilters | *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". + +--- + ##### `ResetAppServicePlanFilters` ```go diff --git a/docs/integrationAzure.java.md b/docs/integrationAzure.java.md index 6b6997a5e..cb3497bf6 100644 --- a/docs/integrationAzure.java.md +++ b/docs/integrationAzure.java.md @@ -250,9 +250,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". | | resetAppServicePlanFilters | *No description.* | | resetAutomute | *No description.* | | resetContainerAppFilters | *No description.* | @@ -451,6 +454,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -482,6 +491,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 @@ -507,6 +534,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". + +--- + ##### `resetAppServicePlanFilters` ```java diff --git a/docs/integrationAzure.python.md b/docs/integrationAzure.python.md index a4477b098..cebb3fe63 100644 --- a/docs/integrationAzure.python.md +++ b/docs/integrationAzure.python.md @@ -245,9 +245,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_app_service_plan_filters | *No description.* | | reset_automute | *No description.* | | reset_container_app_filters | *No description.* | @@ -471,6 +474,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -506,6 +515,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 @@ -533,6 +562,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_app_service_plan_filters` ```python diff --git a/docs/integrationAzure.typescript.md b/docs/integrationAzure.typescript.md index 275b7783c..6c070d3e5 100644 --- a/docs/integrationAzure.typescript.md +++ b/docs/integrationAzure.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". | | resetAppServicePlanFilters | *No description.* | | resetAutomute | *No description.* | | resetContainerAppFilters | *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". + +--- + ##### `resetAppServicePlanFilters` ```typescript diff --git a/docs/integrationCloudflareAccount.csharp.md b/docs/integrationCloudflareAccount.csharp.md index 20548f403..5336f9ad3 100644 --- a/docs/integrationCloudflareAccount.csharp.md +++ b/docs/integrationCloudflareAccount.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". | | ResetEmail | *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". + +--- + ##### `ResetEmail` ```csharp diff --git a/docs/integrationCloudflareAccount.go.md b/docs/integrationCloudflareAccount.go.md index 149746a5f..30f2708df 100644 --- a/docs/integrationCloudflareAccount.go.md +++ b/docs/integrationCloudflareAccount.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". | | ResetEmail | *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". + +--- + ##### `ResetEmail` ```go diff --git a/docs/integrationCloudflareAccount.java.md b/docs/integrationCloudflareAccount.java.md index 25063a182..28be95ac8 100644 --- a/docs/integrationCloudflareAccount.java.md +++ b/docs/integrationCloudflareAccount.java.md @@ -158,9 +158,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetEmail | *No description.* | --- @@ -353,6 +356,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -384,6 +393,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 @@ -409,6 +436,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". + +--- + ##### `resetEmail` ```java diff --git a/docs/integrationCloudflareAccount.python.md b/docs/integrationCloudflareAccount.python.md index 17ce04f53..ca1ecd0ef 100644 --- a/docs/integrationCloudflareAccount.python.md +++ b/docs/integrationCloudflareAccount.python.md @@ -156,9 +156,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_email | *No description.* | --- @@ -376,6 +379,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -411,6 +420,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 @@ -438,6 +467,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_email` ```python diff --git a/docs/integrationCloudflareAccount.typescript.md b/docs/integrationCloudflareAccount.typescript.md index b710eb612..61aaf272e 100644 --- a/docs/integrationCloudflareAccount.typescript.md +++ b/docs/integrationCloudflareAccount.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". | | resetEmail | *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". + +--- + ##### `resetEmail` ```typescript diff --git a/docs/integrationConfluentAccount.csharp.md b/docs/integrationConfluentAccount.csharp.md index 0d4709556..a85d9edc3 100644 --- a/docs/integrationConfluentAccount.csharp.md +++ b/docs/integrationConfluentAccount.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". | | ResetTags | *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". + +--- + ##### `ResetTags` ```csharp diff --git a/docs/integrationConfluentAccount.go.md b/docs/integrationConfluentAccount.go.md index dac77e001..4f698850a 100644 --- a/docs/integrationConfluentAccount.go.md +++ b/docs/integrationConfluentAccount.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". | | ResetTags | *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". + +--- + ##### `ResetTags` ```go diff --git a/docs/integrationConfluentAccount.java.md b/docs/integrationConfluentAccount.java.md index 80c0accb1..2c005457c 100644 --- a/docs/integrationConfluentAccount.java.md +++ b/docs/integrationConfluentAccount.java.md @@ -156,9 +156,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetTags | *No description.* | --- @@ -351,6 +354,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -382,6 +391,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 @@ -407,6 +434,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". + +--- + ##### `resetTags` ```java diff --git a/docs/integrationConfluentAccount.python.md b/docs/integrationConfluentAccount.python.md index 28f990e20..c6acfac4d 100644 --- a/docs/integrationConfluentAccount.python.md +++ b/docs/integrationConfluentAccount.python.md @@ -154,9 +154,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_tags | *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". + +--- + ##### `reset_tags` ```python diff --git a/docs/integrationConfluentAccount.typescript.md b/docs/integrationConfluentAccount.typescript.md index 906b5ff37..153314622 100644 --- a/docs/integrationConfluentAccount.typescript.md +++ b/docs/integrationConfluentAccount.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". | | resetTags | *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". + +--- + ##### `resetTags` ```typescript diff --git a/docs/integrationConfluentResource.csharp.md b/docs/integrationConfluentResource.csharp.md index 1ecb9c676..048412887 100644 --- a/docs/integrationConfluentResource.csharp.md +++ b/docs/integrationConfluentResource.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". | | ResetEnableCustomMetrics | *No description.* | | ResetResourceType | *No description.* | | ResetTags | *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". + +--- + ##### `ResetEnableCustomMetrics` ```csharp diff --git a/docs/integrationConfluentResource.go.md b/docs/integrationConfluentResource.go.md index f18bf3dbc..36ad4bc7b 100644 --- a/docs/integrationConfluentResource.go.md +++ b/docs/integrationConfluentResource.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". | | ResetEnableCustomMetrics | *No description.* | | ResetResourceType | *No description.* | | ResetTags | *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". + +--- + ##### `ResetEnableCustomMetrics` ```go diff --git a/docs/integrationConfluentResource.java.md b/docs/integrationConfluentResource.java.md index ea90300f3..78bf06a35 100644 --- a/docs/integrationConfluentResource.java.md +++ b/docs/integrationConfluentResource.java.md @@ -181,9 +181,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetEnableCustomMetrics | *No description.* | | resetResourceType | *No description.* | | resetTags | *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". + +--- + ##### `resetEnableCustomMetrics` ```java diff --git a/docs/integrationConfluentResource.python.md b/docs/integrationConfluentResource.python.md index 656b9f87d..c4e2288ba 100644 --- a/docs/integrationConfluentResource.python.md +++ b/docs/integrationConfluentResource.python.md @@ -178,9 +178,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_enable_custom_metrics | *No description.* | | reset_resource_type | *No description.* | | reset_tags | *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_enable_custom_metrics` ```python diff --git a/docs/integrationConfluentResource.typescript.md b/docs/integrationConfluentResource.typescript.md index 4005ab98d..58fd35fca 100644 --- a/docs/integrationConfluentResource.typescript.md +++ b/docs/integrationConfluentResource.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". | | resetEnableCustomMetrics | *No description.* | | resetResourceType | *No description.* | | resetTags | *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". + +--- + ##### `resetEnableCustomMetrics` ```typescript diff --git a/docs/integrationFastlyAccount.csharp.md b/docs/integrationFastlyAccount.csharp.md index 069caa2a4..4b5a64e35 100644 --- a/docs/integrationFastlyAccount.csharp.md +++ b/docs/integrationFastlyAccount.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/integrationFastlyAccount.go.md b/docs/integrationFastlyAccount.go.md index 84872d132..30368f100 100644 --- a/docs/integrationFastlyAccount.go.md +++ b/docs/integrationFastlyAccount.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/integrationFastlyAccount.java.md b/docs/integrationFastlyAccount.java.md index dd3f98e79..1144b81ab 100644 --- a/docs/integrationFastlyAccount.java.md +++ b/docs/integrationFastlyAccount.java.md @@ -144,9 +144,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/integrationFastlyAccount.python.md b/docs/integrationFastlyAccount.python.md index 465bbcd51..004cb53ef 100644 --- a/docs/integrationFastlyAccount.python.md +++ b/docs/integrationFastlyAccount.python.md @@ -142,9 +142,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/integrationFastlyAccount.typescript.md b/docs/integrationFastlyAccount.typescript.md index 2be78f36b..be77406e6 100644 --- a/docs/integrationFastlyAccount.typescript.md +++ b/docs/integrationFastlyAccount.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/integrationFastlyService.csharp.md b/docs/integrationFastlyService.csharp.md index 3cbfd45b8..0db3778ee 100644 --- a/docs/integrationFastlyService.csharp.md +++ b/docs/integrationFastlyService.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". | | ResetAccountId | *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". + +--- + ##### `ResetAccountId` ```csharp diff --git a/docs/integrationFastlyService.go.md b/docs/integrationFastlyService.go.md index 208caccc9..064f0d682 100644 --- a/docs/integrationFastlyService.go.md +++ b/docs/integrationFastlyService.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". | | ResetAccountId | *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". + +--- + ##### `ResetAccountId` ```go diff --git a/docs/integrationFastlyService.java.md b/docs/integrationFastlyService.java.md index cf9bd30db..01da20baf 100644 --- a/docs/integrationFastlyService.java.md +++ b/docs/integrationFastlyService.java.md @@ -156,9 +156,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetAccountId | *No description.* | | resetTags | *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". + +--- + ##### `resetAccountId` ```java diff --git a/docs/integrationFastlyService.python.md b/docs/integrationFastlyService.python.md index ff4647c04..780b7c9b8 100644 --- a/docs/integrationFastlyService.python.md +++ b/docs/integrationFastlyService.python.md @@ -154,9 +154,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_account_id | *No description.* | | reset_tags | *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_account_id` ```python diff --git a/docs/integrationFastlyService.typescript.md b/docs/integrationFastlyService.typescript.md index a856c3d98..3fd519833 100644 --- a/docs/integrationFastlyService.typescript.md +++ b/docs/integrationFastlyService.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". | | resetAccountId | *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". + +--- + ##### `resetAccountId` ```typescript diff --git a/docs/integrationGcp.csharp.md b/docs/integrationGcp.csharp.md index 53d9a9e7e..e4cac54f0 100644 --- a/docs/integrationGcp.csharp.md +++ b/docs/integrationGcp.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". | | ResetAutomute | *No description.* | | ResetCspmResourceCollectionEnabled | *No description.* | | ResetHostFilters | *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". + +--- + ##### `ResetAutomute` ```csharp diff --git a/docs/integrationGcp.go.md b/docs/integrationGcp.go.md index ce8ab1cdc..95fa3ce86 100644 --- a/docs/integrationGcp.go.md +++ b/docs/integrationGcp.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". | | ResetAutomute | *No description.* | | ResetCspmResourceCollectionEnabled | *No description.* | | ResetHostFilters | *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". + +--- + ##### `ResetAutomute` ```go diff --git a/docs/integrationGcp.java.md b/docs/integrationGcp.java.md index 4bbcb9e2c..b1a14709f 100644 --- a/docs/integrationGcp.java.md +++ b/docs/integrationGcp.java.md @@ -233,9 +233,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". | | resetAutomute | *No description.* | | resetCspmResourceCollectionEnabled | *No description.* | | resetHostFilters | *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". + +--- + ##### `resetAutomute` ```java diff --git a/docs/integrationGcp.python.md b/docs/integrationGcp.python.md index 7879c9f75..226cff9f8 100644 --- a/docs/integrationGcp.python.md +++ b/docs/integrationGcp.python.md @@ -229,9 +229,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_automute | *No description.* | | reset_cspm_resource_collection_enabled | *No description.* | | reset_host_filters | *No description.* | @@ -452,6 +455,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -487,6 +496,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 @@ -514,6 +543,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_automute` ```python diff --git a/docs/integrationGcp.typescript.md b/docs/integrationGcp.typescript.md index 0fcef7b60..f6729fe56 100644 --- a/docs/integrationGcp.typescript.md +++ b/docs/integrationGcp.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". | | resetAutomute | *No description.* | | resetCspmResourceCollectionEnabled | *No description.* | | resetHostFilters | *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". + +--- + ##### `resetAutomute` ```typescript diff --git a/docs/integrationGcpSts.csharp.md b/docs/integrationGcpSts.csharp.md index 3da9d3c11..4316706d5 100644 --- a/docs/integrationGcpSts.csharp.md +++ b/docs/integrationGcpSts.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". | | ResetAutomute | *No description.* | | ResetHostFilters | *No description.* | | ResetIsCspmEnabled | *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". + +--- + ##### `ResetAutomute` ```csharp diff --git a/docs/integrationGcpSts.go.md b/docs/integrationGcpSts.go.md index fca9f1dd9..bb0a0f766 100644 --- a/docs/integrationGcpSts.go.md +++ b/docs/integrationGcpSts.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". | | ResetAutomute | *No description.* | | ResetHostFilters | *No description.* | | ResetIsCspmEnabled | *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". + +--- + ##### `ResetAutomute` ```go diff --git a/docs/integrationGcpSts.java.md b/docs/integrationGcpSts.java.md index b57e889a7..76a392cfe 100644 --- a/docs/integrationGcpSts.java.md +++ b/docs/integrationGcpSts.java.md @@ -170,9 +170,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetAutomute | *No description.* | | resetHostFilters | *No description.* | | resetIsCspmEnabled | *No description.* | @@ -367,6 +370,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -398,6 +407,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 @@ -423,6 +450,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". + +--- + ##### `resetAutomute` ```java diff --git a/docs/integrationGcpSts.python.md b/docs/integrationGcpSts.python.md index 366f2948b..e117a28da 100644 --- a/docs/integrationGcpSts.python.md +++ b/docs/integrationGcpSts.python.md @@ -166,9 +166,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_automute | *No description.* | | reset_host_filters | *No description.* | | reset_is_cspm_enabled | *No description.* | @@ -388,6 +391,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -423,6 +432,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 @@ -450,6 +479,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_automute` ```python diff --git a/docs/integrationGcpSts.typescript.md b/docs/integrationGcpSts.typescript.md index b57976416..ebd615cf4 100644 --- a/docs/integrationGcpSts.typescript.md +++ b/docs/integrationGcpSts.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". | | resetAutomute | *No description.* | | resetHostFilters | *No description.* | | resetIsCspmEnabled | *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". + +--- + ##### `resetAutomute` ```typescript diff --git a/docs/integrationOpsgenieServiceObject.csharp.md b/docs/integrationOpsgenieServiceObject.csharp.md index 21ed9ca88..7fcdaa9f9 100644 --- a/docs/integrationOpsgenieServiceObject.csharp.md +++ b/docs/integrationOpsgenieServiceObject.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". | | ResetCustomUrl | *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". + +--- + ##### `ResetCustomUrl` ```csharp diff --git a/docs/integrationOpsgenieServiceObject.go.md b/docs/integrationOpsgenieServiceObject.go.md index 404ef7994..eadb4b54d 100644 --- a/docs/integrationOpsgenieServiceObject.go.md +++ b/docs/integrationOpsgenieServiceObject.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". | | ResetCustomUrl | *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". + +--- + ##### `ResetCustomUrl` ```go diff --git a/docs/integrationOpsgenieServiceObject.java.md b/docs/integrationOpsgenieServiceObject.java.md index bacbe9bb9..6b967c7df 100644 --- a/docs/integrationOpsgenieServiceObject.java.md +++ b/docs/integrationOpsgenieServiceObject.java.md @@ -183,9 +183,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". | | resetCustomUrl | *No description.* | | resetId | *No description.* | @@ -379,6 +382,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -410,6 +419,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 @@ -435,6 +462,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". + +--- + ##### `resetCustomUrl` ```java diff --git a/docs/integrationOpsgenieServiceObject.python.md b/docs/integrationOpsgenieServiceObject.python.md index a20042203..213b4f954 100644 --- a/docs/integrationOpsgenieServiceObject.python.md +++ b/docs/integrationOpsgenieServiceObject.python.md @@ -181,9 +181,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_custom_url | *No description.* | | reset_id | *No description.* | @@ -402,6 +405,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -437,6 +446,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 @@ -464,6 +493,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_custom_url` ```python diff --git a/docs/integrationOpsgenieServiceObject.typescript.md b/docs/integrationOpsgenieServiceObject.typescript.md index 4888bda18..0ee922f9e 100644 --- a/docs/integrationOpsgenieServiceObject.typescript.md +++ b/docs/integrationOpsgenieServiceObject.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". | | resetCustomUrl | *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". + +--- + ##### `resetCustomUrl` ```typescript diff --git a/docs/integrationPagerduty.csharp.md b/docs/integrationPagerduty.csharp.md index 1f5e95d58..b8bd256a5 100644 --- a/docs/integrationPagerduty.csharp.md +++ b/docs/integrationPagerduty.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". | | ResetApiToken | *No description.* | | ResetId | *No description.* | | ResetSchedules | *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". + +--- + ##### `ResetApiToken` ```csharp diff --git a/docs/integrationPagerduty.go.md b/docs/integrationPagerduty.go.md index 8cff295a1..ba6f568f0 100644 --- a/docs/integrationPagerduty.go.md +++ b/docs/integrationPagerduty.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". | | ResetApiToken | *No description.* | | ResetId | *No description.* | | ResetSchedules | *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". + +--- + ##### `ResetApiToken` ```go diff --git a/docs/integrationPagerduty.java.md b/docs/integrationPagerduty.java.md index c5fa25bd6..5cc2fe737 100644 --- a/docs/integrationPagerduty.java.md +++ b/docs/integrationPagerduty.java.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetApiToken | *No description.* | | resetId | *No description.* | | resetSchedules | *No description.* | @@ -366,6 +369,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -397,6 +406,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 @@ -422,6 +449,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". + +--- + ##### `resetApiToken` ```java diff --git a/docs/integrationPagerduty.python.md b/docs/integrationPagerduty.python.md index 8c4f2d0dc..b4879d2d3 100644 --- a/docs/integrationPagerduty.python.md +++ b/docs/integrationPagerduty.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_api_token | *No description.* | | reset_id | *No description.* | | reset_schedules | *No description.* | @@ -389,6 +392,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -424,6 +433,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 @@ -451,6 +480,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_api_token` ```python diff --git a/docs/integrationPagerduty.typescript.md b/docs/integrationPagerduty.typescript.md index 50efe7e7c..a62cab819 100644 --- a/docs/integrationPagerduty.typescript.md +++ b/docs/integrationPagerduty.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". | | resetApiToken | *No description.* | | resetId | *No description.* | | resetSchedules | *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". + +--- + ##### `resetApiToken` ```typescript diff --git a/docs/integrationPagerdutyServiceObject.csharp.md b/docs/integrationPagerdutyServiceObject.csharp.md index 5cdd5ac1b..38aa74951 100644 --- a/docs/integrationPagerdutyServiceObject.csharp.md +++ b/docs/integrationPagerdutyServiceObject.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/integrationPagerdutyServiceObject.go.md b/docs/integrationPagerdutyServiceObject.go.md index 3acd2a4ab..a36d7ff8f 100644 --- a/docs/integrationPagerdutyServiceObject.go.md +++ b/docs/integrationPagerdutyServiceObject.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/integrationPagerdutyServiceObject.java.md b/docs/integrationPagerdutyServiceObject.java.md index 89603c541..cec0a632a 100644 --- a/docs/integrationPagerdutyServiceObject.java.md +++ b/docs/integrationPagerdutyServiceObject.java.md @@ -159,9 +159,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.* | --- @@ -354,6 +357,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -385,6 +394,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 @@ -410,6 +437,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/integrationPagerdutyServiceObject.python.md b/docs/integrationPagerdutyServiceObject.python.md index cc06e7531..aaea35b27 100644 --- a/docs/integrationPagerdutyServiceObject.python.md +++ b/docs/integrationPagerdutyServiceObject.python.md @@ -157,9 +157,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.* | --- @@ -377,6 +380,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -412,6 +421,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 @@ -439,6 +468,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/integrationPagerdutyServiceObject.typescript.md b/docs/integrationPagerdutyServiceObject.typescript.md index e3130e667..640283194 100644 --- a/docs/integrationPagerdutyServiceObject.typescript.md +++ b/docs/integrationPagerdutyServiceObject.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/integrationSlackChannel.csharp.md b/docs/integrationSlackChannel.csharp.md index 910203ac0..0602a633e 100644 --- a/docs/integrationSlackChannel.csharp.md +++ b/docs/integrationSlackChannel.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". | | PutDisplay | *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". + +--- + ##### `PutDisplay` ```csharp diff --git a/docs/integrationSlackChannel.go.md b/docs/integrationSlackChannel.go.md index b66fbe80a..2bb62f85c 100644 --- a/docs/integrationSlackChannel.go.md +++ b/docs/integrationSlackChannel.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". | | PutDisplay | *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". + +--- + ##### `PutDisplay` ```go diff --git a/docs/integrationSlackChannel.java.md b/docs/integrationSlackChannel.java.md index 1f5ff76c0..3d34b429e 100644 --- a/docs/integrationSlackChannel.java.md +++ b/docs/integrationSlackChannel.java.md @@ -169,9 +169,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". | | putDisplay | *No description.* | | resetId | *No description.* | @@ -365,6 +368,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -396,6 +405,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 @@ -421,6 +448,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". + +--- + ##### `putDisplay` ```java diff --git a/docs/integrationSlackChannel.python.md b/docs/integrationSlackChannel.python.md index e461465ea..6e0a1ef84 100644 --- a/docs/integrationSlackChannel.python.md +++ b/docs/integrationSlackChannel.python.md @@ -167,9 +167,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_display | *No description.* | | reset_id | *No description.* | @@ -388,6 +391,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -423,6 +432,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 @@ -450,6 +479,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_display` ```python diff --git a/docs/integrationSlackChannel.typescript.md b/docs/integrationSlackChannel.typescript.md index 9972ae368..bcc913256 100644 --- a/docs/integrationSlackChannel.typescript.md +++ b/docs/integrationSlackChannel.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". | | putDisplay | *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". + +--- + ##### `putDisplay` ```typescript diff --git a/docs/ipAllowlist.csharp.md b/docs/ipAllowlist.csharp.md index ca80b5f9c..9247fb80c 100644 --- a/docs/ipAllowlist.csharp.md +++ b/docs/ipAllowlist.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". | | PutEntry | *No description.* | | ResetEntry | *No description.* | | ResetId | *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". + +--- + ##### `PutEntry` ```csharp diff --git a/docs/ipAllowlist.go.md b/docs/ipAllowlist.go.md index 5fb91a08f..c4aa2f507 100644 --- a/docs/ipAllowlist.go.md +++ b/docs/ipAllowlist.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". | | PutEntry | *No description.* | | ResetEntry | *No description.* | | ResetId | *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". + +--- + ##### `PutEntry` ```go diff --git a/docs/ipAllowlist.java.md b/docs/ipAllowlist.java.md index 2e3e95ec3..efad4c4d5 100644 --- a/docs/ipAllowlist.java.md +++ b/docs/ipAllowlist.java.md @@ -159,9 +159,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". | | putEntry | *No description.* | | resetEntry | *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". + +--- + ##### `putEntry` ```java diff --git a/docs/ipAllowlist.python.md b/docs/ipAllowlist.python.md index da9308ce7..2e1452c2c 100644 --- a/docs/ipAllowlist.python.md +++ b/docs/ipAllowlist.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". | | put_entry | *No description.* | | reset_entry | *No description.* | | reset_id | *No description.* | @@ -377,6 +380,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -412,6 +421,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 @@ -439,6 +468,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_entry` ```python diff --git a/docs/ipAllowlist.typescript.md b/docs/ipAllowlist.typescript.md index a06f20d6b..27f999262 100644 --- a/docs/ipAllowlist.typescript.md +++ b/docs/ipAllowlist.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". | | putEntry | *No description.* | | resetEntry | *No description.* | | resetId | *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". + +--- + ##### `putEntry` ```typescript diff --git a/docs/logsArchive.csharp.md b/docs/logsArchive.csharp.md index 992dd0575..885a80a71 100644 --- a/docs/logsArchive.csharp.md +++ b/docs/logsArchive.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". | | PutAzureArchive | *No description.* | | PutGcsArchive | *No description.* | | PutS3Archive | *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". + +--- + ##### `PutAzureArchive` ```csharp diff --git a/docs/logsArchive.go.md b/docs/logsArchive.go.md index 3b5476c5f..a97653ff0 100644 --- a/docs/logsArchive.go.md +++ b/docs/logsArchive.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". | | PutAzureArchive | *No description.* | | PutGcsArchive | *No description.* | | PutS3Archive | *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". + +--- + ##### `PutAzureArchive` ```go diff --git a/docs/logsArchive.java.md b/docs/logsArchive.java.md index bc8acf3d4..32a22dcc3 100644 --- a/docs/logsArchive.java.md +++ b/docs/logsArchive.java.md @@ -232,9 +232,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putAzureArchive | *No description.* | | putGcsArchive | *No description.* | | putS3Archive | *No description.* | @@ -436,6 +439,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -467,6 +476,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 @@ -492,6 +519,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". + +--- + ##### `putAzureArchive` ```java diff --git a/docs/logsArchive.python.md b/docs/logsArchive.python.md index 191618be3..9c534bd92 100644 --- a/docs/logsArchive.python.md +++ b/docs/logsArchive.python.md @@ -229,9 +229,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_azure_archive | *No description.* | | put_gcs_archive | *No description.* | | put_s3_archive | *No description.* | @@ -458,6 +461,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -493,6 +502,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 @@ -520,6 +549,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_azure_archive` ```python diff --git a/docs/logsArchive.typescript.md b/docs/logsArchive.typescript.md index 2f5a678ed..58239e6f1 100644 --- a/docs/logsArchive.typescript.md +++ b/docs/logsArchive.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". | | putAzureArchive | *No description.* | | putGcsArchive | *No description.* | | putS3Archive | *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". + +--- + ##### `putAzureArchive` ```typescript diff --git a/docs/logsArchiveOrder.csharp.md b/docs/logsArchiveOrder.csharp.md index 9b1e62762..1faa7e836 100644 --- a/docs/logsArchiveOrder.csharp.md +++ b/docs/logsArchiveOrder.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". | | ResetArchiveIds | *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". + +--- + ##### `ResetArchiveIds` ```csharp diff --git a/docs/logsArchiveOrder.go.md b/docs/logsArchiveOrder.go.md index 8f2d7a084..6ee886b12 100644 --- a/docs/logsArchiveOrder.go.md +++ b/docs/logsArchiveOrder.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". | | ResetArchiveIds | *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". + +--- + ##### `ResetArchiveIds` ```go diff --git a/docs/logsArchiveOrder.java.md b/docs/logsArchiveOrder.java.md index ede358c40..e1e8e6909 100644 --- a/docs/logsArchiveOrder.java.md +++ b/docs/logsArchiveOrder.java.md @@ -147,9 +147,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". | | resetArchiveIds | *No description.* | | resetId | *No description.* | @@ -343,6 +346,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -374,6 +383,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 @@ -399,6 +426,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". + +--- + ##### `resetArchiveIds` ```java diff --git a/docs/logsArchiveOrder.python.md b/docs/logsArchiveOrder.python.md index 6813089d7..11edf9f42 100644 --- a/docs/logsArchiveOrder.python.md +++ b/docs/logsArchiveOrder.python.md @@ -145,9 +145,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_archive_ids | *No description.* | | reset_id | *No description.* | @@ -366,6 +369,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -401,6 +410,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 @@ -428,6 +457,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_archive_ids` ```python diff --git a/docs/logsArchiveOrder.typescript.md b/docs/logsArchiveOrder.typescript.md index 30c13a890..d59bc4bb3 100644 --- a/docs/logsArchiveOrder.typescript.md +++ b/docs/logsArchiveOrder.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". | | resetArchiveIds | *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". + +--- + ##### `resetArchiveIds` ```typescript diff --git a/docs/logsCustomPipeline.csharp.md b/docs/logsCustomPipeline.csharp.md index bb0569dfe..c3d72f9e3 100644 --- a/docs/logsCustomPipeline.csharp.md +++ b/docs/logsCustomPipeline.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". | | PutFilter | *No description.* | | PutProcessor | *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". + +--- + ##### `PutFilter` ```csharp diff --git a/docs/logsCustomPipeline.go.md b/docs/logsCustomPipeline.go.md index e821123a7..ab2b1ef53 100644 --- a/docs/logsCustomPipeline.go.md +++ b/docs/logsCustomPipeline.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". | | PutFilter | *No description.* | | PutProcessor | *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". + +--- + ##### `PutFilter` ```go diff --git a/docs/logsCustomPipeline.java.md b/docs/logsCustomPipeline.java.md index f9c555788..eccecf1fa 100644 --- a/docs/logsCustomPipeline.java.md +++ b/docs/logsCustomPipeline.java.md @@ -180,9 +180,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putFilter | *No description.* | | putProcessor | *No description.* | | resetId | *No description.* | @@ -379,6 +382,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -410,6 +419,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 @@ -435,6 +462,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". + +--- + ##### `putFilter` ```java diff --git a/docs/logsCustomPipeline.python.md b/docs/logsCustomPipeline.python.md index 9b35df302..da3682f97 100644 --- a/docs/logsCustomPipeline.python.md +++ b/docs/logsCustomPipeline.python.md @@ -175,9 +175,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_filter | *No description.* | | put_processor | *No description.* | | reset_id | *No description.* | @@ -399,6 +402,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -434,6 +443,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 @@ -461,6 +490,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_filter` ```python diff --git a/docs/logsCustomPipeline.typescript.md b/docs/logsCustomPipeline.typescript.md index a6bbecfc5..5bea5f545 100644 --- a/docs/logsCustomPipeline.typescript.md +++ b/docs/logsCustomPipeline.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". | | putFilter | *No description.* | | putProcessor | *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". + +--- + ##### `putFilter` ```typescript diff --git a/docs/logsIndex.csharp.md b/docs/logsIndex.csharp.md index 7cf0c5f98..f24742a21 100644 --- a/docs/logsIndex.csharp.md +++ b/docs/logsIndex.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". | | PutExclusionFilter | *No description.* | | PutFilter | *No description.* | | ResetDailyLimit | *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". + +--- + ##### `PutExclusionFilter` ```csharp diff --git a/docs/logsIndex.go.md b/docs/logsIndex.go.md index cff1e343e..fdd90f1a6 100644 --- a/docs/logsIndex.go.md +++ b/docs/logsIndex.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". | | PutExclusionFilter | *No description.* | | PutFilter | *No description.* | | ResetDailyLimit | *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". + +--- + ##### `PutExclusionFilter` ```go diff --git a/docs/logsIndex.java.md b/docs/logsIndex.java.md index 7e63e0aef..c48bc1a3c 100644 --- a/docs/logsIndex.java.md +++ b/docs/logsIndex.java.md @@ -209,9 +209,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putExclusionFilter | *No description.* | | putFilter | *No description.* | | resetDailyLimit | *No description.* | @@ -410,6 +413,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -441,6 +450,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 @@ -466,6 +493,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". + +--- + ##### `putExclusionFilter` ```java diff --git a/docs/logsIndex.python.md b/docs/logsIndex.python.md index 8988835be..6d454b99d 100644 --- a/docs/logsIndex.python.md +++ b/docs/logsIndex.python.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_exclusion_filter | *No description.* | | put_filter | *No description.* | | reset_daily_limit | *No description.* | @@ -431,6 +434,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -466,6 +475,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 @@ -493,6 +522,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_exclusion_filter` ```python diff --git a/docs/logsIndex.typescript.md b/docs/logsIndex.typescript.md index 86bf30328..253dbb0b4 100644 --- a/docs/logsIndex.typescript.md +++ b/docs/logsIndex.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". | | putExclusionFilter | *No description.* | | putFilter | *No description.* | | resetDailyLimit | *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". + +--- + ##### `putExclusionFilter` ```typescript diff --git a/docs/logsIndexOrder.csharp.md b/docs/logsIndexOrder.csharp.md index 0fbd232b5..abeb8348e 100644 --- a/docs/logsIndexOrder.csharp.md +++ b/docs/logsIndexOrder.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.* | | ResetName | *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/logsIndexOrder.go.md b/docs/logsIndexOrder.go.md index 39c0fccfa..5dae78386 100644 --- a/docs/logsIndexOrder.go.md +++ b/docs/logsIndexOrder.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.* | | ResetName | *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/logsIndexOrder.java.md b/docs/logsIndexOrder.java.md index ff9ffca1f..ce49ad6c2 100644 --- a/docs/logsIndexOrder.java.md +++ b/docs/logsIndexOrder.java.md @@ -159,9 +159,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetName | *No description.* | @@ -355,6 +358,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -386,6 +395,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 @@ -411,6 +438,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/logsIndexOrder.python.md b/docs/logsIndexOrder.python.md index 39470720d..34676311a 100644 --- a/docs/logsIndexOrder.python.md +++ b/docs/logsIndexOrder.python.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_name | *No description.* | @@ -378,6 +381,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -413,6 +422,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 @@ -440,6 +469,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/logsIndexOrder.typescript.md b/docs/logsIndexOrder.typescript.md index 79cbf335a..d517a993d 100644 --- a/docs/logsIndexOrder.typescript.md +++ b/docs/logsIndexOrder.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.* | | resetName | *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/logsIntegrationPipeline.csharp.md b/docs/logsIntegrationPipeline.csharp.md index f2b3eb83c..1ded949c3 100644 --- a/docs/logsIntegrationPipeline.csharp.md +++ b/docs/logsIntegrationPipeline.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.* | | ResetIsEnabled | *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/logsIntegrationPipeline.go.md b/docs/logsIntegrationPipeline.go.md index 16a141996..89007192a 100644 --- a/docs/logsIntegrationPipeline.go.md +++ b/docs/logsIntegrationPipeline.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.* | | ResetIsEnabled | *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/logsIntegrationPipeline.java.md b/docs/logsIntegrationPipeline.java.md index f72192ef9..392a8f257 100644 --- a/docs/logsIntegrationPipeline.java.md +++ b/docs/logsIntegrationPipeline.java.md @@ -146,9 +146,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetIsEnabled | *No description.* | @@ -342,6 +345,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -373,6 +382,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 @@ -398,6 +425,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/logsIntegrationPipeline.python.md b/docs/logsIntegrationPipeline.python.md index b82854209..272282923 100644 --- a/docs/logsIntegrationPipeline.python.md +++ b/docs/logsIntegrationPipeline.python.md @@ -143,9 +143,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_is_enabled | *No description.* | @@ -364,6 +367,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -399,6 +408,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 @@ -426,6 +455,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/logsIntegrationPipeline.typescript.md b/docs/logsIntegrationPipeline.typescript.md index 03e659a89..dda0d22a7 100644 --- a/docs/logsIntegrationPipeline.typescript.md +++ b/docs/logsIntegrationPipeline.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.* | | resetIsEnabled | *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/logsMetric.csharp.md b/docs/logsMetric.csharp.md index 91268250c..a42325157 100644 --- a/docs/logsMetric.csharp.md +++ b/docs/logsMetric.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". | | PutCompute | *No description.* | | PutFilter | *No description.* | | PutGroupBy | *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". + +--- + ##### `PutCompute` ```csharp diff --git a/docs/logsMetric.go.md b/docs/logsMetric.go.md index 1f6bcdaeb..3c90f5a05 100644 --- a/docs/logsMetric.go.md +++ b/docs/logsMetric.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". | | PutCompute | *No description.* | | PutFilter | *No description.* | | PutGroupBy | *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". + +--- + ##### `PutCompute` ```go diff --git a/docs/logsMetric.java.md b/docs/logsMetric.java.md index 7c62025c9..beb4344ea 100644 --- a/docs/logsMetric.java.md +++ b/docs/logsMetric.java.md @@ -182,9 +182,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". | | putCompute | *No description.* | | putFilter | *No description.* | | putGroupBy | *No description.* | @@ -381,6 +384,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -412,6 +421,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 @@ -437,6 +464,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". + +--- + ##### `putCompute` ```java diff --git a/docs/logsMetric.python.md b/docs/logsMetric.python.md index 05af3218d..28864173f 100644 --- a/docs/logsMetric.python.md +++ b/docs/logsMetric.python.md @@ -179,9 +179,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_compute | *No description.* | | put_filter | *No description.* | | put_group_by | *No description.* | @@ -403,6 +406,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -438,6 +447,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 @@ -465,6 +494,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_compute` ```python diff --git a/docs/logsMetric.typescript.md b/docs/logsMetric.typescript.md index 2c1520689..148821eb5 100644 --- a/docs/logsMetric.typescript.md +++ b/docs/logsMetric.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". | | putCompute | *No description.* | | putFilter | *No description.* | | putGroupBy | *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". + +--- + ##### `putCompute` ```typescript diff --git a/docs/logsPipelineOrder.csharp.md b/docs/logsPipelineOrder.csharp.md index 70fcefe1d..dead5e8f8 100644 --- a/docs/logsPipelineOrder.csharp.md +++ b/docs/logsPipelineOrder.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/logsPipelineOrder.go.md b/docs/logsPipelineOrder.go.md index 2bce78228..70ae045c8 100644 --- a/docs/logsPipelineOrder.go.md +++ b/docs/logsPipelineOrder.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/logsPipelineOrder.java.md b/docs/logsPipelineOrder.java.md index c897b48a9..595eb5d9b 100644 --- a/docs/logsPipelineOrder.java.md +++ b/docs/logsPipelineOrder.java.md @@ -159,9 +159,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.* | --- @@ -354,6 +357,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -385,6 +394,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 @@ -410,6 +437,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/logsPipelineOrder.python.md b/docs/logsPipelineOrder.python.md index 2bdca44bc..a1d457b50 100644 --- a/docs/logsPipelineOrder.python.md +++ b/docs/logsPipelineOrder.python.md @@ -157,9 +157,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.* | --- @@ -377,6 +380,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -412,6 +421,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 @@ -439,6 +468,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/logsPipelineOrder.typescript.md b/docs/logsPipelineOrder.typescript.md index a217d3e6e..e1ca42637 100644 --- a/docs/logsPipelineOrder.typescript.md +++ b/docs/logsPipelineOrder.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/metricMetadata.csharp.md b/docs/metricMetadata.csharp.md index d3e812cfa..9a1f8584c 100644 --- a/docs/metricMetadata.csharp.md +++ b/docs/metricMetadata.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.* | | ResetId | *No description.* | | ResetPerUnit | *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/metricMetadata.go.md b/docs/metricMetadata.go.md index 2a2563a37..a0909bcac 100644 --- a/docs/metricMetadata.go.md +++ b/docs/metricMetadata.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.* | | ResetId | *No description.* | | ResetPerUnit | *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/metricMetadata.java.md b/docs/metricMetadata.java.md index b81453263..055477c18 100644 --- a/docs/metricMetadata.java.md +++ b/docs/metricMetadata.java.md @@ -217,9 +217,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetId | *No description.* | | resetPerUnit | *No description.* | @@ -418,6 +421,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -449,6 +458,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 @@ -474,6 +501,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/metricMetadata.python.md b/docs/metricMetadata.python.md index 91e32c523..0e162dbdb 100644 --- a/docs/metricMetadata.python.md +++ b/docs/metricMetadata.python.md @@ -215,9 +215,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_id | *No description.* | | reset_per_unit | *No description.* | @@ -441,6 +444,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -476,6 +485,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 @@ -503,6 +532,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/metricMetadata.typescript.md b/docs/metricMetadata.typescript.md index 12c4c54f2..718b3f683 100644 --- a/docs/metricMetadata.typescript.md +++ b/docs/metricMetadata.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.* | | resetId | *No description.* | | resetPerUnit | *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/metricTagConfiguration.csharp.md b/docs/metricTagConfiguration.csharp.md index e6dddc704..8962867bd 100644 --- a/docs/metricTagConfiguration.csharp.md +++ b/docs/metricTagConfiguration.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". | | PutAggregations | *No description.* | | ResetAggregations | *No description.* | | ResetExcludeTagsMode | *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". + +--- + ##### `PutAggregations` ```csharp diff --git a/docs/metricTagConfiguration.go.md b/docs/metricTagConfiguration.go.md index 743177309..bf6820afa 100644 --- a/docs/metricTagConfiguration.go.md +++ b/docs/metricTagConfiguration.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". | | PutAggregations | *No description.* | | ResetAggregations | *No description.* | | ResetExcludeTagsMode | *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". + +--- + ##### `PutAggregations` ```go diff --git a/docs/metricTagConfiguration.java.md b/docs/metricTagConfiguration.java.md index 36c7b1cba..0dd1c3dfb 100644 --- a/docs/metricTagConfiguration.java.md +++ b/docs/metricTagConfiguration.java.md @@ -212,9 +212,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putAggregations | *No description.* | | resetAggregations | *No description.* | | resetExcludeTagsMode | *No description.* | @@ -411,6 +414,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -442,6 +451,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 @@ -467,6 +494,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". + +--- + ##### `putAggregations` ```java diff --git a/docs/metricTagConfiguration.python.md b/docs/metricTagConfiguration.python.md index 2f770f4f4..dea7a4897 100644 --- a/docs/metricTagConfiguration.python.md +++ b/docs/metricTagConfiguration.python.md @@ -207,9 +207,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_aggregations | *No description.* | | reset_aggregations | *No description.* | | reset_exclude_tags_mode | *No description.* | @@ -431,6 +434,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -466,6 +475,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 @@ -493,6 +522,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_aggregations` ```python diff --git a/docs/metricTagConfiguration.typescript.md b/docs/metricTagConfiguration.typescript.md index 8003e0f3a..d9f1a4b9b 100644 --- a/docs/metricTagConfiguration.typescript.md +++ b/docs/metricTagConfiguration.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". | | putAggregations | *No description.* | | resetAggregations | *No description.* | | resetExcludeTagsMode | *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". + +--- + ##### `putAggregations` ```typescript diff --git a/docs/monitor.csharp.md b/docs/monitor.csharp.md index d692098bb..687a1bbcf 100644 --- a/docs/monitor.csharp.md +++ b/docs/monitor.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". | | PutMonitorThresholds | *No description.* | | PutMonitorThresholdWindows | *No description.* | | PutSchedulingOptions | *No description.* | @@ -294,6 +297,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -324,6 +333,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 @@ -348,6 +375,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". + +--- + ##### `PutMonitorThresholds` ```csharp diff --git a/docs/monitor.go.md b/docs/monitor.go.md index 64c04c796..adc0ccbf6 100644 --- a/docs/monitor.go.md +++ b/docs/monitor.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". | | PutMonitorThresholds | *No description.* | | PutMonitorThresholdWindows | *No description.* | | PutSchedulingOptions | *No description.* | @@ -294,6 +297,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -324,6 +333,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 @@ -348,6 +375,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". + +--- + ##### `PutMonitorThresholds` ```go diff --git a/docs/monitor.java.md b/docs/monitor.java.md index 63266e318..bd0a9f1e8 100644 --- a/docs/monitor.java.md +++ b/docs/monitor.java.md @@ -577,9 +577,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putMonitorThresholds | *No description.* | | putMonitorThresholdWindows | *No description.* | | putSchedulingOptions | *No description.* | @@ -805,6 +808,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -836,6 +845,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 @@ -861,6 +888,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". + +--- + ##### `putMonitorThresholds` ```java diff --git a/docs/monitor.python.md b/docs/monitor.python.md index 5f2cbe1d6..6a65c4cfc 100644 --- a/docs/monitor.python.md +++ b/docs/monitor.python.md @@ -565,9 +565,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_monitor_thresholds | *No description.* | | put_monitor_threshold_windows | *No description.* | | put_scheduling_options | *No description.* | @@ -818,6 +821,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -853,6 +862,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 @@ -880,6 +909,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_monitor_thresholds` ```python diff --git a/docs/monitor.typescript.md b/docs/monitor.typescript.md index 97c789fea..65cee202c 100644 --- a/docs/monitor.typescript.md +++ b/docs/monitor.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". | | putMonitorThresholds | *No description.* | | putMonitorThresholdWindows | *No description.* | | putSchedulingOptions | *No description.* | @@ -294,6 +297,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -324,6 +333,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 @@ -348,6 +375,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". + +--- + ##### `putMonitorThresholds` ```typescript diff --git a/docs/monitorConfigPolicy.csharp.md b/docs/monitorConfigPolicy.csharp.md index 48dcd795e..14b822e1a 100644 --- a/docs/monitorConfigPolicy.csharp.md +++ b/docs/monitorConfigPolicy.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". | | PutTagPolicy | *No description.* | | ResetId | *No description.* | | ResetTagPolicy | *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". + +--- + ##### `PutTagPolicy` ```csharp diff --git a/docs/monitorConfigPolicy.go.md b/docs/monitorConfigPolicy.go.md index 669a14313..5cb48084b 100644 --- a/docs/monitorConfigPolicy.go.md +++ b/docs/monitorConfigPolicy.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". | | PutTagPolicy | *No description.* | | ResetId | *No description.* | | ResetTagPolicy | *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". + +--- + ##### `PutTagPolicy` ```go diff --git a/docs/monitorConfigPolicy.java.md b/docs/monitorConfigPolicy.java.md index a1121db9e..7138c6c2d 100644 --- a/docs/monitorConfigPolicy.java.md +++ b/docs/monitorConfigPolicy.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putTagPolicy | *No description.* | | resetId | *No description.* | | resetTagPolicy | *No description.* | @@ -354,6 +357,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -385,6 +394,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 @@ -410,6 +437,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". + +--- + ##### `putTagPolicy` ```java diff --git a/docs/monitorConfigPolicy.python.md b/docs/monitorConfigPolicy.python.md index 22f5db7bb..faf881040 100644 --- a/docs/monitorConfigPolicy.python.md +++ b/docs/monitorConfigPolicy.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_tag_policy | *No description.* | | reset_id | *No description.* | | reset_tag_policy | *No description.* | @@ -377,6 +380,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -412,6 +421,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 @@ -439,6 +468,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_tag_policy` ```python diff --git a/docs/monitorConfigPolicy.typescript.md b/docs/monitorConfigPolicy.typescript.md index e77182750..57bed5afb 100644 --- a/docs/monitorConfigPolicy.typescript.md +++ b/docs/monitorConfigPolicy.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". | | putTagPolicy | *No description.* | | resetId | *No description.* | | resetTagPolicy | *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". + +--- + ##### `putTagPolicy` ```typescript diff --git a/docs/monitorJson.csharp.md b/docs/monitorJson.csharp.md index b954779db..07bd2112c 100644 --- a/docs/monitorJson.csharp.md +++ b/docs/monitorJson.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.* | | ResetUrl | *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/monitorJson.go.md b/docs/monitorJson.go.md index b76c61a39..3e9699631 100644 --- a/docs/monitorJson.go.md +++ b/docs/monitorJson.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.* | | ResetUrl | *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/monitorJson.java.md b/docs/monitorJson.java.md index e0f51a068..eea243422 100644 --- a/docs/monitorJson.java.md +++ b/docs/monitorJson.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetUrl | *No description.* | @@ -353,6 +356,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -384,6 +393,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 @@ -409,6 +436,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/monitorJson.python.md b/docs/monitorJson.python.md index 63ee55ead..a89a6bc6b 100644 --- a/docs/monitorJson.python.md +++ b/docs/monitorJson.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_url | *No description.* | @@ -376,6 +379,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -411,6 +420,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 @@ -438,6 +467,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/monitorJson.typescript.md b/docs/monitorJson.typescript.md index f792a1434..2d3b6b9f5 100644 --- a/docs/monitorJson.typescript.md +++ b/docs/monitorJson.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.* | | resetUrl | *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/organizationSettings.csharp.md b/docs/organizationSettings.csharp.md index cef4f18f3..38b5b37db 100644 --- a/docs/organizationSettings.csharp.md +++ b/docs/organizationSettings.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.* | | ResetName | *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/organizationSettings.go.md b/docs/organizationSettings.go.md index a66ad3ab4..d1dcf7572 100644 --- a/docs/organizationSettings.go.md +++ b/docs/organizationSettings.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.* | | ResetName | *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/organizationSettings.java.md b/docs/organizationSettings.java.md index 0dbc97f79..a2ca4a96f 100644 --- a/docs/organizationSettings.java.md +++ b/docs/organizationSettings.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetName | *No description.* | @@ -355,6 +358,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -386,6 +395,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 @@ -411,6 +438,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/organizationSettings.python.md b/docs/organizationSettings.python.md index 89a8e7bfc..305ef3b00 100644 --- a/docs/organizationSettings.python.md +++ b/docs/organizationSettings.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_name | *No description.* | @@ -378,6 +381,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -413,6 +422,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 @@ -440,6 +469,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/organizationSettings.typescript.md b/docs/organizationSettings.typescript.md index 57b7d37e3..cdbe243a5 100644 --- a/docs/organizationSettings.typescript.md +++ b/docs/organizationSettings.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.* | | resetName | *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/restrictionPolicy.csharp.md b/docs/restrictionPolicy.csharp.md index f14d0cafc..29b81d596 100644 --- a/docs/restrictionPolicy.csharp.md +++ b/docs/restrictionPolicy.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". | | PutBindings | *No description.* | | ResetBindings | *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". + +--- + ##### `PutBindings` ```csharp diff --git a/docs/restrictionPolicy.go.md b/docs/restrictionPolicy.go.md index 1b2be9409..c00ec2b23 100644 --- a/docs/restrictionPolicy.go.md +++ b/docs/restrictionPolicy.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". | | PutBindings | *No description.* | | ResetBindings | *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". + +--- + ##### `PutBindings` ```go diff --git a/docs/restrictionPolicy.java.md b/docs/restrictionPolicy.java.md index d203242c2..ce7febb41 100644 --- a/docs/restrictionPolicy.java.md +++ b/docs/restrictionPolicy.java.md @@ -147,9 +147,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putBindings | *No description.* | | resetBindings | *No description.* | @@ -343,6 +346,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -374,6 +383,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 @@ -399,6 +426,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". + +--- + ##### `putBindings` ```java diff --git a/docs/restrictionPolicy.python.md b/docs/restrictionPolicy.python.md index a64dbc3e7..85906e8a5 100644 --- a/docs/restrictionPolicy.python.md +++ b/docs/restrictionPolicy.python.md @@ -144,9 +144,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_bindings | *No description.* | | reset_bindings | *No description.* | @@ -365,6 +368,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -400,6 +409,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 @@ -427,6 +456,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_bindings` ```python diff --git a/docs/restrictionPolicy.typescript.md b/docs/restrictionPolicy.typescript.md index 30d13baf0..fb5d339cf 100644 --- a/docs/restrictionPolicy.typescript.md +++ b/docs/restrictionPolicy.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". | | putBindings | *No description.* | | resetBindings | *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". + +--- + ##### `putBindings` ```typescript diff --git a/docs/role.csharp.md b/docs/role.csharp.md index a90b5867a..6c4096873 100644 --- a/docs/role.csharp.md +++ b/docs/role.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". | | PutPermission | *No description.* | | ResetId | *No description.* | | ResetPermission | *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". + +--- + ##### `PutPermission` ```csharp diff --git a/docs/role.go.md b/docs/role.go.md index 83f2073bb..6fb0f6c73 100644 --- a/docs/role.go.md +++ b/docs/role.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". | | PutPermission | *No description.* | | ResetId | *No description.* | | ResetPermission | *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". + +--- + ##### `PutPermission` ```go diff --git a/docs/role.java.md b/docs/role.java.md index 2ebdc36d1..c6a6d17fa 100644 --- a/docs/role.java.md +++ b/docs/role.java.md @@ -171,9 +171,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putPermission | *No description.* | | resetId | *No description.* | | resetPermission | *No description.* | @@ -369,6 +372,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -400,6 +409,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 @@ -425,6 +452,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". + +--- + ##### `putPermission` ```java diff --git a/docs/role.python.md b/docs/role.python.md index 74ea15542..5b8a51234 100644 --- a/docs/role.python.md +++ b/docs/role.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_permission | *No description.* | | reset_id | *No description.* | | reset_permission | *No description.* | @@ -390,6 +393,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -425,6 +434,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 @@ -452,6 +481,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_permission` ```python diff --git a/docs/role.typescript.md b/docs/role.typescript.md index 563e925a1..454ba7200 100644 --- a/docs/role.typescript.md +++ b/docs/role.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". | | putPermission | *No description.* | | resetId | *No description.* | | resetPermission | *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". + +--- + ##### `putPermission` ```typescript diff --git a/docs/rumApplication.csharp.md b/docs/rumApplication.csharp.md index 9df433f1d..040206072 100644 --- a/docs/rumApplication.csharp.md +++ b/docs/rumApplication.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.* | | ResetType | *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/rumApplication.go.md b/docs/rumApplication.go.md index 51946c853..518be6267 100644 --- a/docs/rumApplication.go.md +++ b/docs/rumApplication.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.* | | ResetType | *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/rumApplication.java.md b/docs/rumApplication.java.md index 7b090f028..5d1742353 100644 --- a/docs/rumApplication.java.md +++ b/docs/rumApplication.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetType | *No description.* | @@ -353,6 +356,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -384,6 +393,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 @@ -409,6 +436,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/rumApplication.python.md b/docs/rumApplication.python.md index 9c3553250..d0ae47f4b 100644 --- a/docs/rumApplication.python.md +++ b/docs/rumApplication.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_type | *No description.* | @@ -376,6 +379,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -411,6 +420,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 @@ -438,6 +467,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/rumApplication.typescript.md b/docs/rumApplication.typescript.md index dd32472d9..362e486e0 100644 --- a/docs/rumApplication.typescript.md +++ b/docs/rumApplication.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.* | | resetType | *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/securityMonitoringDefaultRule.csharp.md b/docs/securityMonitoringDefaultRule.csharp.md index 975e20009..a746aa20f 100644 --- a/docs/securityMonitoringDefaultRule.csharp.md +++ b/docs/securityMonitoringDefaultRule.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". | | PutCase | *No description.* | | PutFilter | *No description.* | | PutOptions | *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". + +--- + ##### `PutCase` ```csharp diff --git a/docs/securityMonitoringDefaultRule.go.md b/docs/securityMonitoringDefaultRule.go.md index 88834ee93..4836dc546 100644 --- a/docs/securityMonitoringDefaultRule.go.md +++ b/docs/securityMonitoringDefaultRule.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". | | PutCase | *No description.* | | PutFilter | *No description.* | | PutOptions | *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". + +--- + ##### `PutCase` ```go diff --git a/docs/securityMonitoringDefaultRule.java.md b/docs/securityMonitoringDefaultRule.java.md index dbd6d966a..5d8031aff 100644 --- a/docs/securityMonitoringDefaultRule.java.md +++ b/docs/securityMonitoringDefaultRule.java.md @@ -184,9 +184,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putCase | *No description.* | | putFilter | *No description.* | | putOptions | *No description.* | @@ -386,6 +389,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -417,6 +426,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 @@ -442,6 +469,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". + +--- + ##### `putCase` ```java diff --git a/docs/securityMonitoringDefaultRule.python.md b/docs/securityMonitoringDefaultRule.python.md index b89faea4b..3f9bca761 100644 --- a/docs/securityMonitoringDefaultRule.python.md +++ b/docs/securityMonitoringDefaultRule.python.md @@ -179,9 +179,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_case | *No description.* | | put_filter | *No description.* | | put_options | *No description.* | @@ -406,6 +409,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -441,6 +450,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 @@ -468,6 +497,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_case` ```python diff --git a/docs/securityMonitoringDefaultRule.typescript.md b/docs/securityMonitoringDefaultRule.typescript.md index 9d8e3403f..908c5c776 100644 --- a/docs/securityMonitoringDefaultRule.typescript.md +++ b/docs/securityMonitoringDefaultRule.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". | | putCase | *No description.* | | putFilter | *No description.* | | putOptions | *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". + +--- + ##### `putCase` ```typescript diff --git a/docs/securityMonitoringFilter.csharp.md b/docs/securityMonitoringFilter.csharp.md index 3b748d29e..f296fb05c 100644 --- a/docs/securityMonitoringFilter.csharp.md +++ b/docs/securityMonitoringFilter.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". | | PutExclusionFilter | *No description.* | | ResetExclusionFilter | *No description.* | | ResetFilteredDataType | *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". + +--- + ##### `PutExclusionFilter` ```csharp diff --git a/docs/securityMonitoringFilter.go.md b/docs/securityMonitoringFilter.go.md index 039405b58..6361b3d1e 100644 --- a/docs/securityMonitoringFilter.go.md +++ b/docs/securityMonitoringFilter.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". | | PutExclusionFilter | *No description.* | | ResetExclusionFilter | *No description.* | | ResetFilteredDataType | *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". + +--- + ##### `PutExclusionFilter` ```go diff --git a/docs/securityMonitoringFilter.java.md b/docs/securityMonitoringFilter.java.md index e5ebe77e6..14322202c 100644 --- a/docs/securityMonitoringFilter.java.md +++ b/docs/securityMonitoringFilter.java.md @@ -195,9 +195,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". | | putExclusionFilter | *No description.* | | resetExclusionFilter | *No description.* | | resetFilteredDataType | *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". + +--- + ##### `putExclusionFilter` ```java diff --git a/docs/securityMonitoringFilter.python.md b/docs/securityMonitoringFilter.python.md index e0027001d..6990b506b 100644 --- a/docs/securityMonitoringFilter.python.md +++ b/docs/securityMonitoringFilter.python.md @@ -191,9 +191,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_exclusion_filter | *No description.* | | reset_exclusion_filter | *No description.* | | reset_filtered_data_type | *No description.* | @@ -414,6 +417,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -449,6 +458,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 @@ -476,6 +505,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_exclusion_filter` ```python diff --git a/docs/securityMonitoringFilter.typescript.md b/docs/securityMonitoringFilter.typescript.md index 4af5c8847..5c5005b8c 100644 --- a/docs/securityMonitoringFilter.typescript.md +++ b/docs/securityMonitoringFilter.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". | | putExclusionFilter | *No description.* | | resetExclusionFilter | *No description.* | | resetFilteredDataType | *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". + +--- + ##### `putExclusionFilter` ```typescript diff --git a/docs/securityMonitoringRule.csharp.md b/docs/securityMonitoringRule.csharp.md index 2b8589018..7fdf53950 100644 --- a/docs/securityMonitoringRule.csharp.md +++ b/docs/securityMonitoringRule.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". | | PutCase | *No description.* | | PutFilter | *No description.* | | PutOptions | *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". + +--- + ##### `PutCase` ```csharp diff --git a/docs/securityMonitoringRule.go.md b/docs/securityMonitoringRule.go.md index 0b1b80fe6..1adf6d977 100644 --- a/docs/securityMonitoringRule.go.md +++ b/docs/securityMonitoringRule.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". | | PutCase | *No description.* | | PutFilter | *No description.* | | PutOptions | *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". + +--- + ##### `PutCase` ```go diff --git a/docs/securityMonitoringRule.java.md b/docs/securityMonitoringRule.java.md index c7a0f80d0..7933ff731 100644 --- a/docs/securityMonitoringRule.java.md +++ b/docs/securityMonitoringRule.java.md @@ -271,9 +271,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putCase | *No description.* | | putFilter | *No description.* | | putOptions | *No description.* | @@ -479,6 +482,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -510,6 +519,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 @@ -535,6 +562,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". + +--- + ##### `putCase` ```java diff --git a/docs/securityMonitoringRule.python.md b/docs/securityMonitoringRule.python.md index b03a71c7a..5d2161943 100644 --- a/docs/securityMonitoringRule.python.md +++ b/docs/securityMonitoringRule.python.md @@ -263,9 +263,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_case | *No description.* | | put_filter | *No description.* | | put_options | *No description.* | @@ -496,6 +499,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -531,6 +540,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 @@ -558,6 +587,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_case` ```python diff --git a/docs/securityMonitoringRule.typescript.md b/docs/securityMonitoringRule.typescript.md index f9359c4c0..596c76658 100644 --- a/docs/securityMonitoringRule.typescript.md +++ b/docs/securityMonitoringRule.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". | | putCase | *No description.* | | putFilter | *No description.* | | putOptions | *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". + +--- + ##### `putCase` ```typescript diff --git a/docs/sensitiveDataScannerGroup.csharp.md b/docs/sensitiveDataScannerGroup.csharp.md index 1ec9a5e23..357d98565 100644 --- a/docs/sensitiveDataScannerGroup.csharp.md +++ b/docs/sensitiveDataScannerGroup.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". | | PutFilter | *No description.* | | ResetDescription | *No description.* | | ResetId | *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". + +--- + ##### `PutFilter` ```csharp diff --git a/docs/sensitiveDataScannerGroup.go.md b/docs/sensitiveDataScannerGroup.go.md index a87ffd965..cfb80dcd5 100644 --- a/docs/sensitiveDataScannerGroup.go.md +++ b/docs/sensitiveDataScannerGroup.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". | | PutFilter | *No description.* | | ResetDescription | *No description.* | | ResetId | *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". + +--- + ##### `PutFilter` ```go diff --git a/docs/sensitiveDataScannerGroup.java.md b/docs/sensitiveDataScannerGroup.java.md index e2c8b25d8..35dd34dc7 100644 --- a/docs/sensitiveDataScannerGroup.java.md +++ b/docs/sensitiveDataScannerGroup.java.md @@ -196,9 +196,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". | | putFilter | *No description.* | | resetDescription | *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". + +--- + ##### `putFilter` ```java diff --git a/docs/sensitiveDataScannerGroup.python.md b/docs/sensitiveDataScannerGroup.python.md index 8292ee97d..bfe5dd092 100644 --- a/docs/sensitiveDataScannerGroup.python.md +++ b/docs/sensitiveDataScannerGroup.python.md @@ -193,9 +193,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_filter | *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_filter` ```python diff --git a/docs/sensitiveDataScannerGroup.typescript.md b/docs/sensitiveDataScannerGroup.typescript.md index 1954c53dc..bda561528 100644 --- a/docs/sensitiveDataScannerGroup.typescript.md +++ b/docs/sensitiveDataScannerGroup.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". | | putFilter | *No description.* | | resetDescription | *No description.* | | resetId | *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". + +--- + ##### `putFilter` ```typescript diff --git a/docs/sensitiveDataScannerGroupOrder.csharp.md b/docs/sensitiveDataScannerGroupOrder.csharp.md index 54ed747a6..b4136d80e 100644 --- a/docs/sensitiveDataScannerGroupOrder.csharp.md +++ b/docs/sensitiveDataScannerGroupOrder.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/sensitiveDataScannerGroupOrder.go.md b/docs/sensitiveDataScannerGroupOrder.go.md index 2af4b0a47..4f96530fb 100644 --- a/docs/sensitiveDataScannerGroupOrder.go.md +++ b/docs/sensitiveDataScannerGroupOrder.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/sensitiveDataScannerGroupOrder.java.md b/docs/sensitiveDataScannerGroupOrder.java.md index d01af05ad..04dd0802d 100644 --- a/docs/sensitiveDataScannerGroupOrder.java.md +++ b/docs/sensitiveDataScannerGroupOrder.java.md @@ -134,9 +134,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -328,6 +331,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -359,6 +368,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 @@ -384,6 +411,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/sensitiveDataScannerGroupOrder.python.md b/docs/sensitiveDataScannerGroupOrder.python.md index fa9bd287e..bb34091bc 100644 --- a/docs/sensitiveDataScannerGroupOrder.python.md +++ b/docs/sensitiveDataScannerGroupOrder.python.md @@ -132,9 +132,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -351,6 +354,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -386,6 +395,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 @@ -413,6 +442,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/sensitiveDataScannerGroupOrder.typescript.md b/docs/sensitiveDataScannerGroupOrder.typescript.md index 4ee4b3de1..b40d56a55 100644 --- a/docs/sensitiveDataScannerGroupOrder.typescript.md +++ b/docs/sensitiveDataScannerGroupOrder.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/sensitiveDataScannerRule.csharp.md b/docs/sensitiveDataScannerRule.csharp.md index c82ef4b76..1aa2f86d8 100644 --- a/docs/sensitiveDataScannerRule.csharp.md +++ b/docs/sensitiveDataScannerRule.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". | | PutTextReplacement | *No description.* | | ResetDescription | *No description.* | | ResetExcludedNamespaces | *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". + +--- + ##### `PutTextReplacement` ```csharp diff --git a/docs/sensitiveDataScannerRule.go.md b/docs/sensitiveDataScannerRule.go.md index 5d37ff86b..d5f86c84d 100644 --- a/docs/sensitiveDataScannerRule.go.md +++ b/docs/sensitiveDataScannerRule.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". | | PutTextReplacement | *No description.* | | ResetDescription | *No description.* | | ResetExcludedNamespaces | *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". + +--- + ##### `PutTextReplacement` ```go diff --git a/docs/sensitiveDataScannerRule.java.md b/docs/sensitiveDataScannerRule.java.md index 2b8868ae3..4973195eb 100644 --- a/docs/sensitiveDataScannerRule.java.md +++ b/docs/sensitiveDataScannerRule.java.md @@ -256,9 +256,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putTextReplacement | *No description.* | | resetDescription | *No description.* | | resetExcludedNamespaces | *No description.* | @@ -461,6 +464,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -492,6 +501,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 @@ -517,6 +544,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". + +--- + ##### `putTextReplacement` ```java diff --git a/docs/sensitiveDataScannerRule.python.md b/docs/sensitiveDataScannerRule.python.md index 5f4b9637d..e715a5750 100644 --- a/docs/sensitiveDataScannerRule.python.md +++ b/docs/sensitiveDataScannerRule.python.md @@ -253,9 +253,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_text_replacement | *No description.* | | reset_description | *No description.* | | reset_excluded_namespaces | *No description.* | @@ -483,6 +486,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -518,6 +527,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 @@ -545,6 +574,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_text_replacement` ```python diff --git a/docs/sensitiveDataScannerRule.typescript.md b/docs/sensitiveDataScannerRule.typescript.md index f208276f5..de39b15c0 100644 --- a/docs/sensitiveDataScannerRule.typescript.md +++ b/docs/sensitiveDataScannerRule.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". | | putTextReplacement | *No description.* | | resetDescription | *No description.* | | resetExcludedNamespaces | *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". + +--- + ##### `putTextReplacement` ```typescript diff --git a/docs/serviceAccount.csharp.md b/docs/serviceAccount.csharp.md index eb717ca34..d58552218 100644 --- a/docs/serviceAccount.csharp.md +++ b/docs/serviceAccount.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". | | ResetDisabled | *No description.* | | ResetId | *No description.* | | ResetName | *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". + +--- + ##### `ResetDisabled` ```csharp diff --git a/docs/serviceAccount.go.md b/docs/serviceAccount.go.md index 42a8475d1..a088f674d 100644 --- a/docs/serviceAccount.go.md +++ b/docs/serviceAccount.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". | | ResetDisabled | *No description.* | | ResetId | *No description.* | | ResetName | *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". + +--- + ##### `ResetDisabled` ```go diff --git a/docs/serviceAccount.java.md b/docs/serviceAccount.java.md index 75e8b2ff3..20042fd72 100644 --- a/docs/serviceAccount.java.md +++ b/docs/serviceAccount.java.md @@ -182,9 +182,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetDisabled | *No description.* | | resetId | *No description.* | | resetName | *No description.* | @@ -380,6 +383,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -411,6 +420,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 @@ -436,6 +463,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". + +--- + ##### `resetDisabled` ```java diff --git a/docs/serviceAccount.python.md b/docs/serviceAccount.python.md index 802fe1f53..bb93ff153 100644 --- a/docs/serviceAccount.python.md +++ b/docs/serviceAccount.python.md @@ -179,9 +179,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_disabled | *No description.* | | reset_id | *No description.* | | reset_name | *No description.* | @@ -402,6 +405,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -437,6 +446,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 @@ -464,6 +493,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_disabled` ```python diff --git a/docs/serviceAccount.typescript.md b/docs/serviceAccount.typescript.md index 11d9f8415..3c4c7e83a 100644 --- a/docs/serviceAccount.typescript.md +++ b/docs/serviceAccount.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". | | resetDisabled | *No description.* | | resetId | *No description.* | | resetName | *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". + +--- + ##### `resetDisabled` ```typescript diff --git a/docs/serviceAccountApplicationKey.csharp.md b/docs/serviceAccountApplicationKey.csharp.md index f3928e175..37862d0d7 100644 --- a/docs/serviceAccountApplicationKey.csharp.md +++ b/docs/serviceAccountApplicationKey.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/serviceAccountApplicationKey.go.md b/docs/serviceAccountApplicationKey.go.md index 64efc1585..4acb0af1b 100644 --- a/docs/serviceAccountApplicationKey.go.md +++ b/docs/serviceAccountApplicationKey.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/serviceAccountApplicationKey.java.md b/docs/serviceAccountApplicationKey.java.md index 01773c569..322328c19 100644 --- a/docs/serviceAccountApplicationKey.java.md +++ b/docs/serviceAccountApplicationKey.java.md @@ -144,9 +144,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/serviceAccountApplicationKey.python.md b/docs/serviceAccountApplicationKey.python.md index b7a1ca6b0..2ec066d4d 100644 --- a/docs/serviceAccountApplicationKey.python.md +++ b/docs/serviceAccountApplicationKey.python.md @@ -142,9 +142,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/serviceAccountApplicationKey.typescript.md b/docs/serviceAccountApplicationKey.typescript.md index 12e13e3ef..4f625b1bf 100644 --- a/docs/serviceAccountApplicationKey.typescript.md +++ b/docs/serviceAccountApplicationKey.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/serviceDefinitionYaml.csharp.md b/docs/serviceDefinitionYaml.csharp.md index 45d02a14f..e9bbe10e4 100644 --- a/docs/serviceDefinitionYaml.csharp.md +++ b/docs/serviceDefinitionYaml.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/serviceDefinitionYaml.go.md b/docs/serviceDefinitionYaml.go.md index bf99893b0..d313ecd2d 100644 --- a/docs/serviceDefinitionYaml.go.md +++ b/docs/serviceDefinitionYaml.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/serviceDefinitionYaml.java.md b/docs/serviceDefinitionYaml.java.md index 15ebe937d..7ac1479c1 100644 --- a/docs/serviceDefinitionYaml.java.md +++ b/docs/serviceDefinitionYaml.java.md @@ -145,9 +145,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.* | --- @@ -340,6 +343,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -371,6 +380,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 @@ -396,6 +423,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/serviceDefinitionYaml.python.md b/docs/serviceDefinitionYaml.python.md index 346b4ba00..a5d714932 100644 --- a/docs/serviceDefinitionYaml.python.md +++ b/docs/serviceDefinitionYaml.python.md @@ -143,9 +143,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.* | --- @@ -363,6 +366,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -398,6 +407,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 @@ -425,6 +454,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/serviceDefinitionYaml.typescript.md b/docs/serviceDefinitionYaml.typescript.md index 362fe2b8d..ab74eac55 100644 --- a/docs/serviceDefinitionYaml.typescript.md +++ b/docs/serviceDefinitionYaml.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/serviceLevelObjective.csharp.md b/docs/serviceLevelObjective.csharp.md index 5268196f8..4e61d6146 100644 --- a/docs/serviceLevelObjective.csharp.md +++ b/docs/serviceLevelObjective.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". | | PutQuery | *No description.* | | PutThresholds | *No description.* | | ResetDescription | *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". + +--- + ##### `PutQuery` ```csharp diff --git a/docs/serviceLevelObjective.go.md b/docs/serviceLevelObjective.go.md index c88657181..7d25bb6b2 100644 --- a/docs/serviceLevelObjective.go.md +++ b/docs/serviceLevelObjective.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". | | PutQuery | *No description.* | | PutThresholds | *No description.* | | ResetDescription | *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". + +--- + ##### `PutQuery` ```go diff --git a/docs/serviceLevelObjective.java.md b/docs/serviceLevelObjective.java.md index 82de9ae9a..7c135b059 100644 --- a/docs/serviceLevelObjective.java.md +++ b/docs/serviceLevelObjective.java.md @@ -300,9 +300,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putQuery | *No description.* | | putThresholds | *No description.* | | resetDescription | *No description.* | @@ -507,6 +510,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -538,6 +547,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 @@ -563,6 +590,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". + +--- + ##### `putQuery` ```java diff --git a/docs/serviceLevelObjective.python.md b/docs/serviceLevelObjective.python.md index bdeab9326..e7acc87f3 100644 --- a/docs/serviceLevelObjective.python.md +++ b/docs/serviceLevelObjective.python.md @@ -295,9 +295,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_query | *No description.* | | put_thresholds | *No description.* | | reset_description | *No description.* | @@ -527,6 +530,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -562,6 +571,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 @@ -589,6 +618,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_query` ```python diff --git a/docs/serviceLevelObjective.typescript.md b/docs/serviceLevelObjective.typescript.md index c33065714..e799ca9f1 100644 --- a/docs/serviceLevelObjective.typescript.md +++ b/docs/serviceLevelObjective.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". | | putQuery | *No description.* | | putThresholds | *No description.* | | resetDescription | *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". + +--- + ##### `putQuery` ```typescript diff --git a/docs/sloCorrection.csharp.md b/docs/sloCorrection.csharp.md index fd7fb9c6f..e9f41f822 100644 --- a/docs/sloCorrection.csharp.md +++ b/docs/sloCorrection.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.* | | ResetDuration | *No description.* | | ResetEnd | *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". + +--- + ##### `ResetDescription` ```csharp diff --git a/docs/sloCorrection.go.md b/docs/sloCorrection.go.md index a176b71b8..2b880547d 100644 --- a/docs/sloCorrection.go.md +++ b/docs/sloCorrection.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.* | | ResetDuration | *No description.* | | ResetEnd | *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". + +--- + ##### `ResetDescription` ```go diff --git a/docs/sloCorrection.java.md b/docs/sloCorrection.java.md index 698fa376d..d385d5bef 100644 --- a/docs/sloCorrection.java.md +++ b/docs/sloCorrection.java.md @@ -231,9 +231,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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.* | | resetDuration | *No description.* | | resetEnd | *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". + +--- + ##### `resetDescription` ```java diff --git a/docs/sloCorrection.python.md b/docs/sloCorrection.python.md index 251678804..e89ece2e9 100644 --- a/docs/sloCorrection.python.md +++ b/docs/sloCorrection.python.md @@ -229,9 +229,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_duration | *No description.* | | reset_end | *No description.* | @@ -454,6 +457,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -489,6 +498,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 @@ -516,6 +545,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/sloCorrection.typescript.md b/docs/sloCorrection.typescript.md index 45879f3de..3fb1647d1 100644 --- a/docs/sloCorrection.typescript.md +++ b/docs/sloCorrection.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.* | | resetDuration | *No description.* | | resetEnd | *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". + +--- + ##### `resetDescription` ```typescript diff --git a/docs/spansMetric.csharp.md b/docs/spansMetric.csharp.md index 76be7d82b..0ad48fb1a 100644 --- a/docs/spansMetric.csharp.md +++ b/docs/spansMetric.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". | | PutFilter | *No description.* | | PutGroupBy | *No description.* | | ResetFilter | *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". + +--- + ##### `PutFilter` ```csharp diff --git a/docs/spansMetric.go.md b/docs/spansMetric.go.md index 83ef6de4f..b4b4864c9 100644 --- a/docs/spansMetric.go.md +++ b/docs/spansMetric.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". | | PutFilter | *No description.* | | PutGroupBy | *No description.* | | ResetFilter | *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". + +--- + ##### `PutFilter` ```go diff --git a/docs/spansMetric.java.md b/docs/spansMetric.java.md index 0388c6401..048f66ab7 100644 --- a/docs/spansMetric.java.md +++ b/docs/spansMetric.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putFilter | *No description.* | | putGroupBy | *No description.* | | resetFilter | *No description.* | @@ -355,6 +358,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -386,6 +395,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 @@ -411,6 +438,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". + +--- + ##### `putFilter` ```java diff --git a/docs/spansMetric.python.md b/docs/spansMetric.python.md index 61c997e4f..9a8a7f209 100644 --- a/docs/spansMetric.python.md +++ b/docs/spansMetric.python.md @@ -154,9 +154,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_filter | *No description.* | | put_group_by | *No description.* | | reset_filter | *No description.* | @@ -377,6 +380,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -412,6 +421,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 @@ -439,6 +468,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_filter` ```python diff --git a/docs/spansMetric.typescript.md b/docs/spansMetric.typescript.md index fe68a0a71..e4ddcf8ff 100644 --- a/docs/spansMetric.typescript.md +++ b/docs/spansMetric.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". | | putFilter | *No description.* | | putGroupBy | *No description.* | | resetFilter | *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". + +--- + ##### `putFilter` ```typescript diff --git a/docs/syntheticsConcurrencyCap.csharp.md b/docs/syntheticsConcurrencyCap.csharp.md index 78bcdb0c7..a1d775bd6 100644 --- a/docs/syntheticsConcurrencyCap.csharp.md +++ b/docs/syntheticsConcurrencyCap.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/syntheticsConcurrencyCap.go.md b/docs/syntheticsConcurrencyCap.go.md index 283743a3c..3b2efb20f 100644 --- a/docs/syntheticsConcurrencyCap.go.md +++ b/docs/syntheticsConcurrencyCap.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/syntheticsConcurrencyCap.java.md b/docs/syntheticsConcurrencyCap.java.md index 2c6292b20..06dcd085e 100644 --- a/docs/syntheticsConcurrencyCap.java.md +++ b/docs/syntheticsConcurrencyCap.java.md @@ -132,9 +132,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -326,6 +329,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -357,6 +366,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 @@ -382,6 +409,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/syntheticsConcurrencyCap.python.md b/docs/syntheticsConcurrencyCap.python.md index c0e7da449..88e257493 100644 --- a/docs/syntheticsConcurrencyCap.python.md +++ b/docs/syntheticsConcurrencyCap.python.md @@ -130,9 +130,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -349,6 +352,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -384,6 +393,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 @@ -411,6 +440,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/syntheticsConcurrencyCap.typescript.md b/docs/syntheticsConcurrencyCap.typescript.md index 6327668b7..6b89eca5a 100644 --- a/docs/syntheticsConcurrencyCap.typescript.md +++ b/docs/syntheticsConcurrencyCap.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/syntheticsGlobalVariable.csharp.md b/docs/syntheticsGlobalVariable.csharp.md index 2761fe859..bcca4c85e 100644 --- a/docs/syntheticsGlobalVariable.csharp.md +++ b/docs/syntheticsGlobalVariable.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". | | PutOptions | *No description.* | | PutParseTestOptions | *No description.* | | ResetDescription | *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". + +--- + ##### `PutOptions` ```csharp diff --git a/docs/syntheticsGlobalVariable.go.md b/docs/syntheticsGlobalVariable.go.md index f8e3f6dd8..6ceb4835d 100644 --- a/docs/syntheticsGlobalVariable.go.md +++ b/docs/syntheticsGlobalVariable.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". | | PutOptions | *No description.* | | PutParseTestOptions | *No description.* | | ResetDescription | *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". + +--- + ##### `PutOptions` ```go diff --git a/docs/syntheticsGlobalVariable.java.md b/docs/syntheticsGlobalVariable.java.md index 9613ca449..55db05c5b 100644 --- a/docs/syntheticsGlobalVariable.java.md +++ b/docs/syntheticsGlobalVariable.java.md @@ -242,9 +242,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putOptions | *No description.* | | putParseTestOptions | *No description.* | | resetDescription | *No description.* | @@ -446,6 +449,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -477,6 +486,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 @@ -502,6 +529,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". + +--- + ##### `putOptions` ```java diff --git a/docs/syntheticsGlobalVariable.python.md b/docs/syntheticsGlobalVariable.python.md index 48a81e499..35d5585af 100644 --- a/docs/syntheticsGlobalVariable.python.md +++ b/docs/syntheticsGlobalVariable.python.md @@ -239,9 +239,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_options | *No description.* | | put_parse_test_options | *No description.* | | reset_description | *No description.* | @@ -468,6 +471,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -503,6 +512,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 @@ -530,6 +559,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_options` ```python diff --git a/docs/syntheticsGlobalVariable.typescript.md b/docs/syntheticsGlobalVariable.typescript.md index a0165e4ab..edd6bbb51 100644 --- a/docs/syntheticsGlobalVariable.typescript.md +++ b/docs/syntheticsGlobalVariable.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". | | putOptions | *No description.* | | putParseTestOptions | *No description.* | | resetDescription | *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". + +--- + ##### `putOptions` ```typescript diff --git a/docs/syntheticsPrivateLocation.csharp.md b/docs/syntheticsPrivateLocation.csharp.md index b41455840..94a74ac2c 100644 --- a/docs/syntheticsPrivateLocation.csharp.md +++ b/docs/syntheticsPrivateLocation.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". | | PutMetadata | *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". + +--- + ##### `PutMetadata` ```csharp diff --git a/docs/syntheticsPrivateLocation.go.md b/docs/syntheticsPrivateLocation.go.md index 5470a087b..dac4a8c3d 100644 --- a/docs/syntheticsPrivateLocation.go.md +++ b/docs/syntheticsPrivateLocation.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". | | PutMetadata | *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". + +--- + ##### `PutMetadata` ```go diff --git a/docs/syntheticsPrivateLocation.java.md b/docs/syntheticsPrivateLocation.java.md index 85696dff1..1bd530729 100644 --- a/docs/syntheticsPrivateLocation.java.md +++ b/docs/syntheticsPrivateLocation.java.md @@ -181,9 +181,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putMetadata | *No description.* | | resetDescription | *No description.* | | resetId | *No description.* | @@ -380,6 +383,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -411,6 +420,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 @@ -436,6 +463,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". + +--- + ##### `putMetadata` ```java diff --git a/docs/syntheticsPrivateLocation.python.md b/docs/syntheticsPrivateLocation.python.md index e595ab3c3..c5cefcca8 100644 --- a/docs/syntheticsPrivateLocation.python.md +++ b/docs/syntheticsPrivateLocation.python.md @@ -179,9 +179,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_metadata | *No description.* | | reset_description | *No description.* | | reset_id | *No description.* | @@ -403,6 +406,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -438,6 +447,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 @@ -465,6 +494,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_metadata` ```python diff --git a/docs/syntheticsPrivateLocation.typescript.md b/docs/syntheticsPrivateLocation.typescript.md index d425a5ec2..bcab938b3 100644 --- a/docs/syntheticsPrivateLocation.typescript.md +++ b/docs/syntheticsPrivateLocation.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". | | putMetadata | *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". + +--- + ##### `putMetadata` ```typescript diff --git a/docs/syntheticsTest.csharp.md b/docs/syntheticsTest.csharp.md index f7c2ae23a..0e61e3ee6 100644 --- a/docs/syntheticsTest.csharp.md +++ b/docs/syntheticsTest.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". | | PutApiStep | *No description.* | | PutAssertion | *No description.* | | PutBrowserStep | *No description.* | @@ -289,6 +292,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -319,6 +328,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 @@ -343,6 +370,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". + +--- + ##### `PutApiStep` ```csharp diff --git a/docs/syntheticsTest.go.md b/docs/syntheticsTest.go.md index 45c63c438..6162e3c4f 100644 --- a/docs/syntheticsTest.go.md +++ b/docs/syntheticsTest.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". | | PutApiStep | *No description.* | | PutAssertion | *No description.* | | PutBrowserStep | *No description.* | @@ -289,6 +292,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -319,6 +328,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 @@ -343,6 +370,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". + +--- + ##### `PutApiStep` ```go diff --git a/docs/syntheticsTest.java.md b/docs/syntheticsTest.java.md index 989373e2d..f4f9fb488 100644 --- a/docs/syntheticsTest.java.md +++ b/docs/syntheticsTest.java.md @@ -412,9 +412,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | putApiStep | *No description.* | | putAssertion | *No description.* | | putBrowserStep | *No description.* | @@ -635,6 +638,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -666,6 +675,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 @@ -691,6 +718,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". + +--- + ##### `putApiStep` ```java diff --git a/docs/syntheticsTest.python.md b/docs/syntheticsTest.python.md index e659bddb4..f3bf959c1 100644 --- a/docs/syntheticsTest.python.md +++ b/docs/syntheticsTest.python.md @@ -405,9 +405,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_api_step | *No description.* | | put_assertion | *No description.* | | put_browser_step | *No description.* | @@ -653,6 +656,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -688,6 +697,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 @@ -715,6 +744,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_api_step` ```python diff --git a/docs/syntheticsTest.typescript.md b/docs/syntheticsTest.typescript.md index 8902c8972..378577d53 100644 --- a/docs/syntheticsTest.typescript.md +++ b/docs/syntheticsTest.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". | | putApiStep | *No description.* | | putAssertion | *No description.* | | putBrowserStep | *No description.* | @@ -289,6 +292,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -319,6 +328,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 @@ -343,6 +370,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". + +--- + ##### `putApiStep` ```typescript diff --git a/docs/team.csharp.md b/docs/team.csharp.md index 0a9217752..c7e7293d8 100644 --- a/docs/team.csharp.md +++ b/docs/team.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/team.go.md b/docs/team.go.md index d12b0ce0d..fffaca860 100644 --- a/docs/team.go.md +++ b/docs/team.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/team.java.md b/docs/team.java.md index 610e3c181..0169039cb 100644 --- a/docs/team.java.md +++ b/docs/team.java.md @@ -156,9 +156,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -350,6 +353,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -381,6 +390,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 @@ -406,6 +433,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/team.python.md b/docs/team.python.md index dd21c1e39..7a6b25349 100644 --- a/docs/team.python.md +++ b/docs/team.python.md @@ -154,9 +154,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -373,6 +376,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -408,6 +417,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 @@ -435,6 +464,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/team.typescript.md b/docs/team.typescript.md index 6b0428f66..0847abf2e 100644 --- a/docs/team.typescript.md +++ b/docs/team.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/teamLink.csharp.md b/docs/teamLink.csharp.md index dc4fd3064..5807f8101 100644 --- a/docs/teamLink.csharp.md +++ b/docs/teamLink.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". | | ResetPosition | *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". + +--- + ##### `ResetPosition` ```csharp diff --git a/docs/teamLink.go.md b/docs/teamLink.go.md index 22e9cbd8b..ffa5c55ae 100644 --- a/docs/teamLink.go.md +++ b/docs/teamLink.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". | | ResetPosition | *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". + +--- + ##### `ResetPosition` ```go diff --git a/docs/teamLink.java.md b/docs/teamLink.java.md index 5e697d5bb..bd0bd161b 100644 --- a/docs/teamLink.java.md +++ b/docs/teamLink.java.md @@ -168,9 +168,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetPosition | *No description.* | --- @@ -363,6 +366,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -394,6 +403,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 @@ -419,6 +446,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". + +--- + ##### `resetPosition` ```java diff --git a/docs/teamLink.python.md b/docs/teamLink.python.md index 833031130..47e9bca93 100644 --- a/docs/teamLink.python.md +++ b/docs/teamLink.python.md @@ -166,9 +166,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_position | *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". + +--- + ##### `reset_position` ```python diff --git a/docs/teamLink.typescript.md b/docs/teamLink.typescript.md index 8e66c2d98..58962c5b7 100644 --- a/docs/teamLink.typescript.md +++ b/docs/teamLink.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". | | resetPosition | *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". + +--- + ##### `resetPosition` ```typescript diff --git a/docs/teamMembership.csharp.md b/docs/teamMembership.csharp.md index 1ab28ab16..a16ffa325 100644 --- a/docs/teamMembership.csharp.md +++ b/docs/teamMembership.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". | | ResetRole | *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". + +--- + ##### `ResetRole` ```csharp diff --git a/docs/teamMembership.go.md b/docs/teamMembership.go.md index d88d6b14d..b2e525bac 100644 --- a/docs/teamMembership.go.md +++ b/docs/teamMembership.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". | | ResetRole | *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". + +--- + ##### `ResetRole` ```go diff --git a/docs/teamMembership.java.md b/docs/teamMembership.java.md index 04eb7c419..1f9061460 100644 --- a/docs/teamMembership.java.md +++ b/docs/teamMembership.java.md @@ -156,9 +156,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetRole | *No description.* | --- @@ -351,6 +354,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -382,6 +391,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 @@ -407,6 +434,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". + +--- + ##### `resetRole` ```java diff --git a/docs/teamMembership.python.md b/docs/teamMembership.python.md index 3bb53d78a..d0b837beb 100644 --- a/docs/teamMembership.python.md +++ b/docs/teamMembership.python.md @@ -154,9 +154,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_role | *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". + +--- + ##### `reset_role` ```python diff --git a/docs/teamMembership.typescript.md b/docs/teamMembership.typescript.md index 4d69da990..f04aa8c57 100644 --- a/docs/teamMembership.typescript.md +++ b/docs/teamMembership.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". | | resetRole | *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". + +--- + ##### `resetRole` ```typescript diff --git a/docs/teamPermissionSetting.csharp.md b/docs/teamPermissionSetting.csharp.md index 89eb9f2cf..4c80b7123 100644 --- a/docs/teamPermissionSetting.csharp.md +++ b/docs/teamPermissionSetting.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". | --- @@ -260,6 +263,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/teamPermissionSetting.go.md b/docs/teamPermissionSetting.go.md index 602bb1324..3371f8a48 100644 --- a/docs/teamPermissionSetting.go.md +++ b/docs/teamPermissionSetting.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". | --- @@ -260,6 +263,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/teamPermissionSetting.java.md b/docs/teamPermissionSetting.java.md index b0583d63b..e80fe6270 100644 --- a/docs/teamPermissionSetting.java.md +++ b/docs/teamPermissionSetting.java.md @@ -156,9 +156,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -350,6 +353,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -381,6 +390,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 @@ -406,6 +433,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/teamPermissionSetting.python.md b/docs/teamPermissionSetting.python.md index 3ecfaa5dd..0817ec46b 100644 --- a/docs/teamPermissionSetting.python.md +++ b/docs/teamPermissionSetting.python.md @@ -154,9 +154,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | --- @@ -373,6 +376,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -408,6 +417,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 @@ -435,6 +464,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/teamPermissionSetting.typescript.md b/docs/teamPermissionSetting.typescript.md index ef2feb0b8..f6037e36f 100644 --- a/docs/teamPermissionSetting.typescript.md +++ b/docs/teamPermissionSetting.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". | --- @@ -260,6 +263,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -290,6 +299,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 @@ -314,6 +341,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". + +--- + #### Static Functions | **Name** | **Description** | diff --git a/docs/user.csharp.md b/docs/user.csharp.md index 3dfb4f0ea..b88431959 100644 --- a/docs/user.csharp.md +++ b/docs/user.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". | | ResetDisabled | *No description.* | | ResetId | *No description.* | | ResetName | *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". + +--- + ##### `ResetDisabled` ```csharp diff --git a/docs/user.go.md b/docs/user.go.md index a36161e65..0f6ad2c1e 100644 --- a/docs/user.go.md +++ b/docs/user.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". | | ResetDisabled | *No description.* | | ResetId | *No description.* | | ResetName | *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". + +--- + ##### `ResetDisabled` ```go diff --git a/docs/user.java.md b/docs/user.java.md index 440840119..391a93d4f 100644 --- a/docs/user.java.md +++ b/docs/user.java.md @@ -195,9 +195,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetDisabled | *No description.* | | resetId | *No description.* | | resetName | *No description.* | @@ -394,6 +397,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -425,6 +434,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 @@ -450,6 +477,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". + +--- + ##### `resetDisabled` ```java diff --git a/docs/user.python.md b/docs/user.python.md index df3569bea..8cff61413 100644 --- a/docs/user.python.md +++ b/docs/user.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_disabled | *No description.* | | reset_id | *No description.* | | reset_name | *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_disabled` ```python diff --git a/docs/user.typescript.md b/docs/user.typescript.md index 140b530ed..a051be982 100644 --- a/docs/user.typescript.md +++ b/docs/user.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". | | resetDisabled | *No description.* | | resetId | *No description.* | | resetName | *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". + +--- + ##### `resetDisabled` ```typescript diff --git a/docs/webhook.csharp.md b/docs/webhook.csharp.md index 0458d5e9f..46e033fe6 100644 --- a/docs/webhook.csharp.md +++ b/docs/webhook.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". | | ResetCustomHeaders | *No description.* | | ResetEncodeAs | *No description.* | | ResetId | *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". + +--- + ##### `ResetCustomHeaders` ```csharp diff --git a/docs/webhook.go.md b/docs/webhook.go.md index f0568d92b..35069c9db 100644 --- a/docs/webhook.go.md +++ b/docs/webhook.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". | | ResetCustomHeaders | *No description.* | | ResetEncodeAs | *No description.* | | ResetId | *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". + +--- + ##### `ResetCustomHeaders` ```go diff --git a/docs/webhook.java.md b/docs/webhook.java.md index e80fe5c46..b60a1f50d 100644 --- a/docs/webhook.java.md +++ b/docs/webhook.java.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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". | | resetCustomHeaders | *No description.* | | resetEncodeAs | *No description.* | | resetId | *No description.* | @@ -391,6 +394,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -422,6 +431,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 @@ -447,6 +474,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". + +--- + ##### `resetCustomHeaders` ```java diff --git a/docs/webhook.python.md b/docs/webhook.python.md index 1eaaf1db3..694ff88f5 100644 --- a/docs/webhook.python.md +++ b/docs/webhook.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/datad | 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_custom_headers | *No description.* | | reset_encode_as | *No description.* | | reset_id | *No description.* | @@ -414,6 +417,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -449,6 +458,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 @@ -476,6 +505,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_custom_headers` ```python diff --git a/docs/webhook.typescript.md b/docs/webhook.typescript.md index ec8f0d9e8..441199990 100644 --- a/docs/webhook.typescript.md +++ b/docs/webhook.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". | | resetCustomHeaders | *No description.* | | resetEncodeAs | *No description.* | | resetId | *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". + +--- + ##### `resetCustomHeaders` ```typescript diff --git a/docs/webhookCustomVariable.csharp.md b/docs/webhookCustomVariable.csharp.md index ba30c9c8d..c99f06a42 100644 --- a/docs/webhookCustomVariable.csharp.md +++ b/docs/webhookCustomVariable.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/webhookCustomVariable.go.md b/docs/webhookCustomVariable.go.md index 11c70f818..e5bb57257 100644 --- a/docs/webhookCustomVariable.go.md +++ b/docs/webhookCustomVariable.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/webhookCustomVariable.java.md b/docs/webhookCustomVariable.java.md index 422da4939..4c90b880d 100644 --- a/docs/webhookCustomVariable.java.md +++ b/docs/webhookCustomVariable.java.md @@ -170,9 +170,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.* | --- @@ -365,6 +368,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -396,6 +405,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 @@ -421,6 +448,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/webhookCustomVariable.python.md b/docs/webhookCustomVariable.python.md index 0c204a5c5..017093d23 100644 --- a/docs/webhookCustomVariable.python.md +++ b/docs/webhookCustomVariable.python.md @@ -167,9 +167,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.* | --- @@ -387,6 +390,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -422,6 +431,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 @@ -449,6 +478,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/webhookCustomVariable.typescript.md b/docs/webhookCustomVariable.typescript.md index fea8279d4..922428e34 100644 --- a/docs/webhookCustomVariable.typescript.md +++ b/docs/webhookCustomVariable.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/package.json b/package.json index c0a37cb42..76daa6126 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 0800d6960..c44c7564e 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.32" - resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.32.tgz#4e07ce3ac92c7ca752e693d2df2f3b6c120ae117" - integrity sha512-91g2+havdNomPRVmkkhv7SDxb66t8UybdkWkDH7ESK1SenZZ5VrAievYDSNQG16tBO0YBn1mTCy4G1pbFhPvfQ== +jsii@^5.1.10, jsii@~5.2.0, jsii@~5.2.35, jsii@~5.2.5: + version "5.2.35" + resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.35.tgz#d56a9cb8f01f709250df28b61b365c5978652538" + integrity sha512-idWKsPquJDpJR8rCxOVtTwUKtvHM4BA6e8SvylTF6ZVDHBxnKbD4wB7cQLeB2JPKKsW31TIG63+fND6HUw2V3w== dependencies: "@jsii/check-node" "1.92.0" "@jsii/spec" "^1.92.0" @@ -2668,25 +2668,6 @@ jsii@~5.1.5: typescript "~5.1.6" yargs "^17.7.2" -jsii@~5.2.0: - version "5.2.35" - resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.35.tgz#d56a9cb8f01f709250df28b61b365c5978652538" - integrity sha512-idWKsPquJDpJR8rCxOVtTwUKtvHM4BA6e8SvylTF6ZVDHBxnKbD4wB7cQLeB2JPKKsW31TIG63+fND6HUw2V3w== - dependencies: - "@jsii/check-node" "1.92.0" - "@jsii/spec" "^1.92.0" - case "^1.6.3" - chalk "^4" - downlevel-dts "^0.11.0" - fast-deep-equal "^3.1.3" - log4js "^6.9.1" - semver "^7.5.4" - semver-intersect "^1.4.0" - sort-json "^2.0.1" - spdx-license-list "^6.8.0" - typescript "~5.2" - yargs "^17.7.2" - json-parse-better-errors@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" @@ -3105,12 +3086,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 +3350,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" @@ -3633,18 +3614,18 @@ scheduler@^0.20.2: 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== + 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 +4103,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 +4133,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"