diff --git a/.gitattributes b/.gitattributes index d36ee3781..9c84ee52f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,6 +6,7 @@ /.github/ISSUE_TEMPLATE/config.yml linguist-generated /.github/pull_request_template.md linguist-generated /.github/workflows/alert-open-prs.yml linguist-generated +/.github/workflows/auto-approve.yml linguist-generated /.github/workflows/auto-close-community-issues.yml linguist-generated /.github/workflows/auto-close-community-prs.yml linguist-generated /.github/workflows/build.yml linguist-generated diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml new file mode 100644 index 000000000..58f6460fd --- /dev/null +++ b/.github/workflows/auto-approve.yml @@ -0,0 +1,33 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +name: auto-approve +on: + pull_request_target: + types: + - opened + - labeled + - ready_for_review + - reopened +jobs: + approve: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + if: contains(github.event.pull_request.labels.*.name, 'auto-approve') && github.event.pull_request.draft == false + steps: + - name: Checkout PR + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + with: + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + - name: Auto-approve PRs by other users as team-tf-cdk + if: github.event.pull_request.user.login != 'team-tf-cdk' && (contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) || github.actor == 'dependabot[bot]') + env: + GH_TOKEN: ${{ secrets.PROJEN_GITHUB_TOKEN }} + run: gh pr review ${{ github.event.pull_request.number }} --approve + - name: Auto-approve PRs by team-tf-cdk as github-actions[bot] + if: github.event.pull_request.user.login == 'team-tf-cdk' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh pr review ${{ github.event.pull_request.number }} --approve diff --git a/.github/workflows/provider-upgrade.yml b/.github/workflows/provider-upgrade.yml index 7ef9c5619..83fbf2bd0 100644 --- a/.github/workflows/provider-upgrade.yml +++ b/.github/workflows/provider-upgrade.yml @@ -34,6 +34,19 @@ jobs: id: new_version if: ${{ steps.check_version.outputs.new_version == 'available' }} run: echo "value=$(jq -r '. | to_entries[] | .value' src/version.json)" >> $GITHUB_OUTPUT + - name: Determine if this is a minor or patch release + id: release + if: ${{ steps.check_version.outputs.new_version == 'available' }} + env: + CURRENT_VERSION: ${{ steps.current_version.outputs.value }} + NEW_VERSION: ${{ steps.new_version.outputs.value }} + run: |- + CURRENT_VERSION_MINOR=$(cut -d "." -f 1 <<< "$CURRENT_VERSION") + NEW_VERSION_MINOR=$(cut -d "." -f 1 <<< "$NEW_VERSION") + [[ "$CURRENT_VERSION_MINOR" != "$NEW_VERSION_MINOR" ]] && IS_MINOR_RELEASE=true || IS_MINOR_RELEASE=false + [[ "$IS_MINOR_RELEASE" == "true" ]] && SEMANTIC_TYPE=feat || SEMANTIC_TYPE=fix + echo "is_minor=$IS_MINOR_RELEASE" >> $GITHUB_OUTPUT + echo "type=$SEMANTIC_TYPE" >> $GITHUB_OUTPUT - if: ${{ steps.check_version.outputs.new_version == 'available' }} run: yarn compile - if: ${{ steps.check_version.outputs.new_version == 'available' }} @@ -42,11 +55,11 @@ jobs: if: ${{ steps.check_version.outputs.new_version == 'available' }} uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 with: - commit-message: "fix: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" branch: auto/provider-upgrade - title: "fix: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" + commit-message: "${{ steps.release.outputs.type }}: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" + title: "${{ steps.release.outputs.type }}: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" body: This PR upgrades the underlying Terraform provider to version ${{ steps.new_version.outputs.value }} - labels: automerge + labels: automerge,auto-approve token: ${{ secrets.GH_TOKEN }} delete-branch: true committer: team-tf-cdk diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index 2f126c5de..bf336ed78 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -81,7 +81,7 @@ jobs: *Automatically created by projen via the "upgrade-main" workflow* branch: github-actions/upgrade-main title: "chore(deps): upgrade dependencies" - labels: automerge,dependencies + labels: automerge,auto-approve,dependencies body: |- Upgrades project dependencies. See details in [workflow run]. diff --git a/.gitignore b/.gitignore index 463f1d918..ed07c7848 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ package-lock.json !/.github/workflows/provider-upgrade.yml !/LICENSE !/.github/ISSUE_TEMPLATE/config.yml +!/.github/workflows/auto-approve.yml !/.github/workflows/auto-close-community-issues.yml !/.github/workflows/auto-close-community-prs.yml !/.github/workflows/lock.yml diff --git a/.projen/files.json b/.projen/files.json index d44d81817..52f25ae3e 100644 --- a/.projen/files.json +++ b/.projen/files.json @@ -6,6 +6,7 @@ ".github/ISSUE_TEMPLATE/config.yml", ".github/pull_request_template.md", ".github/workflows/alert-open-prs.yml", + ".github/workflows/auto-approve.yml", ".github/workflows/auto-close-community-issues.yml", ".github/workflows/auto-close-community-prs.yml", ".github/workflows/build.yml", diff --git a/docs/adminRoleCustom.csharp.md b/docs/adminRoleCustom.csharp.md index b27b352fb..5e88d2311 100644 --- a/docs/adminRoleCustom.csharp.md +++ b/docs/adminRoleCustom.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.* | | ResetPermissions | *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/adminRoleCustom.go.md b/docs/adminRoleCustom.go.md index 6458ccb1d..5d41d4b30 100644 --- a/docs/adminRoleCustom.go.md +++ b/docs/adminRoleCustom.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.* | | ResetPermissions | *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/adminRoleCustom.java.md b/docs/adminRoleCustom.java.md index d2406ec25..262abb49f 100644 --- a/docs/adminRoleCustom.java.md +++ b/docs/adminRoleCustom.java.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetPermissions | *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/adminRoleCustom.python.md b/docs/adminRoleCustom.python.md index 681309571..6f644d6bf 100644 --- a/docs/adminRoleCustom.python.md +++ b/docs/adminRoleCustom.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_permissions | *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_id` ```python diff --git a/docs/adminRoleCustom.typescript.md b/docs/adminRoleCustom.typescript.md index 7f3207fa3..5c0780862 100644 --- a/docs/adminRoleCustom.typescript.md +++ b/docs/adminRoleCustom.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.* | | resetPermissions | *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/adminRoleCustomAssignments.csharp.md b/docs/adminRoleCustomAssignments.csharp.md index 5788d47b6..56e4bf2ec 100644 --- a/docs/adminRoleCustomAssignments.csharp.md +++ b/docs/adminRoleCustomAssignments.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.* | | ResetMembers | *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/adminRoleCustomAssignments.go.md b/docs/adminRoleCustomAssignments.go.md index ab654188a..af7d2f756 100644 --- a/docs/adminRoleCustomAssignments.go.md +++ b/docs/adminRoleCustomAssignments.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.* | | ResetMembers | *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/adminRoleCustomAssignments.java.md b/docs/adminRoleCustomAssignments.java.md index 027ff46bb..1377282c5 100644 --- a/docs/adminRoleCustomAssignments.java.md +++ b/docs/adminRoleCustomAssignments.java.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetMembers | *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/adminRoleCustomAssignments.python.md b/docs/adminRoleCustomAssignments.python.md index e0a827336..a1170c1af 100644 --- a/docs/adminRoleCustomAssignments.python.md +++ b/docs/adminRoleCustomAssignments.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_members | *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_id` ```python diff --git a/docs/adminRoleCustomAssignments.typescript.md b/docs/adminRoleCustomAssignments.typescript.md index dcb909f07..be64abc10 100644 --- a/docs/adminRoleCustomAssignments.typescript.md +++ b/docs/adminRoleCustomAssignments.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.* | | resetMembers | *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/adminRoleTargets.csharp.md b/docs/adminRoleTargets.csharp.md index a513bca55..c6d91044e 100644 --- a/docs/adminRoleTargets.csharp.md +++ b/docs/adminRoleTargets.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". | | ResetApps | *No description.* | | ResetGroups | *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". + +--- + ##### `ResetApps` ```csharp diff --git a/docs/adminRoleTargets.go.md b/docs/adminRoleTargets.go.md index 9919dd2e5..8e0f82044 100644 --- a/docs/adminRoleTargets.go.md +++ b/docs/adminRoleTargets.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". | | ResetApps | *No description.* | | ResetGroups | *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". + +--- + ##### `ResetApps` ```go diff --git a/docs/adminRoleTargets.java.md b/docs/adminRoleTargets.java.md index 877e14715..1756d969f 100644 --- a/docs/adminRoleTargets.java.md +++ b/docs/adminRoleTargets.java.md @@ -181,9 +181,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". | | resetApps | *No description.* | | resetGroups | *No description.* | | resetId | *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". + +--- + ##### `resetApps` ```java diff --git a/docs/adminRoleTargets.python.md b/docs/adminRoleTargets.python.md index 2790b11de..668b74979 100644 --- a/docs/adminRoleTargets.python.md +++ b/docs/adminRoleTargets.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_apps | *No description.* | | reset_groups | *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_apps` ```python diff --git a/docs/adminRoleTargets.typescript.md b/docs/adminRoleTargets.typescript.md index afc1c9d2a..752d91926 100644 --- a/docs/adminRoleTargets.typescript.md +++ b/docs/adminRoleTargets.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". | | resetApps | *No description.* | | resetGroups | *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". + +--- + ##### `resetApps` ```typescript diff --git a/docs/appAccessPolicyAssignment.csharp.md b/docs/appAccessPolicyAssignment.csharp.md index 166b97930..2d6e47303 100644 --- a/docs/appAccessPolicyAssignment.csharp.md +++ b/docs/appAccessPolicyAssignment.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/appAccessPolicyAssignment.go.md b/docs/appAccessPolicyAssignment.go.md index 7cf7302c6..a410d92c5 100644 --- a/docs/appAccessPolicyAssignment.go.md +++ b/docs/appAccessPolicyAssignment.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/appAccessPolicyAssignment.java.md b/docs/appAccessPolicyAssignment.java.md index ef6a74aae..ae1ee7f43 100644 --- a/docs/appAccessPolicyAssignment.java.md +++ b/docs/appAccessPolicyAssignment.java.md @@ -144,9 +144,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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/appAccessPolicyAssignment.python.md b/docs/appAccessPolicyAssignment.python.md index c2ffcac6a..24a7eab7b 100644 --- a/docs/appAccessPolicyAssignment.python.md +++ b/docs/appAccessPolicyAssignment.python.md @@ -142,9 +142,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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/appAccessPolicyAssignment.typescript.md b/docs/appAccessPolicyAssignment.typescript.md index bdb9c2125..6d169f826 100644 --- a/docs/appAccessPolicyAssignment.typescript.md +++ b/docs/appAccessPolicyAssignment.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/appAutoLogin.csharp.md b/docs/appAutoLogin.csharp.md index 68205c47d..6d3cedf32 100644 --- a/docs/appAutoLogin.csharp.md +++ b/docs/appAutoLogin.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -286,6 +289,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -316,6 +325,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 @@ -340,6 +367,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appAutoLogin.go.md b/docs/appAutoLogin.go.md index 2125f2072..2f67ffd85 100644 --- a/docs/appAutoLogin.go.md +++ b/docs/appAutoLogin.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -286,6 +289,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -316,6 +325,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 @@ -340,6 +367,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appAutoLogin.java.md b/docs/appAutoLogin.java.md index d68dbd06d..1d99ad63a 100644 --- a/docs/appAutoLogin.java.md +++ b/docs/appAutoLogin.java.md @@ -438,9 +438,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -658,6 +661,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -689,6 +698,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 @@ -714,6 +741,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appAutoLogin.python.md b/docs/appAutoLogin.python.md index b65b7c107..dfb990361 100644 --- a/docs/appAutoLogin.python.md +++ b/docs/appAutoLogin.python.md @@ -431,9 +431,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -676,6 +679,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -711,6 +720,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 @@ -738,6 +767,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appAutoLogin.typescript.md b/docs/appAutoLogin.typescript.md index 09e58636b..3a9d7c24c 100644 --- a/docs/appAutoLogin.typescript.md +++ b/docs/appAutoLogin.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -286,6 +289,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -316,6 +325,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 @@ -340,6 +367,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appBasicAuth.csharp.md b/docs/appBasicAuth.csharp.md index ee8b3da81..df2949d11 100644 --- a/docs/appBasicAuth.csharp.md +++ b/docs/appBasicAuth.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *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". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appBasicAuth.go.md b/docs/appBasicAuth.go.md index 291d2b315..88bcfd6c2 100644 --- a/docs/appBasicAuth.go.md +++ b/docs/appBasicAuth.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *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". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appBasicAuth.java.md b/docs/appBasicAuth.java.md index a3ef9f626..13b2d447b 100644 --- a/docs/appBasicAuth.java.md +++ b/docs/appBasicAuth.java.md @@ -317,9 +317,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -525,6 +528,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -556,6 +565,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 @@ -581,6 +608,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appBasicAuth.python.md b/docs/appBasicAuth.python.md index b3056eb6d..b9374e3d0 100644 --- a/docs/appBasicAuth.python.md +++ b/docs/appBasicAuth.python.md @@ -311,9 +311,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -544,6 +547,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -579,6 +588,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 @@ -606,6 +635,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appBasicAuth.typescript.md b/docs/appBasicAuth.typescript.md index 3ce4e3a4b..acee3101e 100644 --- a/docs/appBasicAuth.typescript.md +++ b/docs/appBasicAuth.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *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". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appBookmark.csharp.md b/docs/appBookmark.csharp.md index 9730e377a..3dce33b65 100644 --- a/docs/appBookmark.csharp.md +++ b/docs/appBookmark.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -276,6 +279,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -306,6 +315,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 @@ -330,6 +357,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appBookmark.go.md b/docs/appBookmark.go.md index c0712983e..10ef5dd7f 100644 --- a/docs/appBookmark.go.md +++ b/docs/appBookmark.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -276,6 +279,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -306,6 +315,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 @@ -330,6 +357,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appBookmark.java.md b/docs/appBookmark.java.md index 2e033abec..9159ce73e 100644 --- a/docs/appBookmark.java.md +++ b/docs/appBookmark.java.md @@ -328,9 +328,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -538,6 +541,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -569,6 +578,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 @@ -594,6 +621,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appBookmark.python.md b/docs/appBookmark.python.md index abdfea7af..7841d161b 100644 --- a/docs/appBookmark.python.md +++ b/docs/appBookmark.python.md @@ -321,9 +321,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -556,6 +559,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -591,6 +600,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 @@ -618,6 +647,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appBookmark.typescript.md b/docs/appBookmark.typescript.md index ef519cc4e..f96c431e6 100644 --- a/docs/appBookmark.typescript.md +++ b/docs/appBookmark.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -276,6 +279,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -306,6 +315,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 @@ -330,6 +357,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appGroupAssignment.csharp.md b/docs/appGroupAssignment.csharp.md index 00515e794..767e17ba0 100644 --- a/docs/appGroupAssignment.csharp.md +++ b/docs/appGroupAssignment.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetId | *No description.* | | ResetPriority | *No description.* | @@ -266,6 +269,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -296,6 +305,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appGroupAssignment.go.md b/docs/appGroupAssignment.go.md index 05cf51b0a..494b6a023 100644 --- a/docs/appGroupAssignment.go.md +++ b/docs/appGroupAssignment.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetId | *No description.* | | ResetPriority | *No description.* | @@ -266,6 +269,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -296,6 +305,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appGroupAssignment.java.md b/docs/appGroupAssignment.java.md index 8786f0b34..f962f672c 100644 --- a/docs/appGroupAssignment.java.md +++ b/docs/appGroupAssignment.java.md @@ -208,9 +208,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetId | *No description.* | | resetPriority | *No description.* | @@ -408,6 +411,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -439,6 +448,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 @@ -464,6 +491,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appGroupAssignment.python.md b/docs/appGroupAssignment.python.md index 6cdfdc93a..6ebbc58de 100644 --- a/docs/appGroupAssignment.python.md +++ b/docs/appGroupAssignment.python.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_id | *No description.* | | reset_priority | *No description.* | @@ -430,6 +433,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -465,6 +474,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 @@ -492,6 +521,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appGroupAssignment.typescript.md b/docs/appGroupAssignment.typescript.md index b8a87558d..27e5d5cff 100644 --- a/docs/appGroupAssignment.typescript.md +++ b/docs/appGroupAssignment.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetId | *No description.* | | resetPriority | *No description.* | @@ -266,6 +269,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -296,6 +305,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appGroupAssignments.csharp.md b/docs/appGroupAssignments.csharp.md index 27049ae3e..11f7260d3 100644 --- a/docs/appGroupAssignments.csharp.md +++ b/docs/appGroupAssignments.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". | | PutGroup | *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". + +--- + ##### `PutGroup` ```csharp diff --git a/docs/appGroupAssignments.go.md b/docs/appGroupAssignments.go.md index ab7520765..baa6f0965 100644 --- a/docs/appGroupAssignments.go.md +++ b/docs/appGroupAssignments.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". | | PutGroup | *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". + +--- + ##### `PutGroup` ```go diff --git a/docs/appGroupAssignments.java.md b/docs/appGroupAssignments.java.md index 638bb527c..e6e7e3117 100644 --- a/docs/appGroupAssignments.java.md +++ b/docs/appGroupAssignments.java.md @@ -158,9 +158,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". | | putGroup | *No description.* | | 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". + +--- + ##### `putGroup` ```java diff --git a/docs/appGroupAssignments.python.md b/docs/appGroupAssignments.python.md index d8f1e9689..ee4368237 100644 --- a/docs/appGroupAssignments.python.md +++ b/docs/appGroupAssignments.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_group | *No description.* | | reset_id | *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". + +--- + ##### `put_group` ```python diff --git a/docs/appGroupAssignments.typescript.md b/docs/appGroupAssignments.typescript.md index d5b2fd9f5..40c003a1c 100644 --- a/docs/appGroupAssignments.typescript.md +++ b/docs/appGroupAssignments.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". | | putGroup | *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". + +--- + ##### `putGroup` ```typescript diff --git a/docs/appOauth.csharp.md b/docs/appOauth.csharp.md index 3ada41ac2..a1d375a41 100644 --- a/docs/appOauth.csharp.md +++ b/docs/appOauth.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". | | PutGroupsClaim | *No description.* | | PutJwks | *No description.* | | PutTimeouts | *No description.* | @@ -309,6 +312,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -339,6 +348,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 @@ -363,6 +390,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". + +--- + ##### `PutGroupsClaim` ```csharp diff --git a/docs/appOauth.go.md b/docs/appOauth.go.md index 168949d1f..f94cef52c 100644 --- a/docs/appOauth.go.md +++ b/docs/appOauth.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". | | PutGroupsClaim | *No description.* | | PutJwks | *No description.* | | PutTimeouts | *No description.* | @@ -309,6 +312,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -339,6 +348,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 @@ -363,6 +390,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". + +--- + ##### `PutGroupsClaim` ```go diff --git a/docs/appOauth.java.md b/docs/appOauth.java.md index c91ab983a..5083c7a43 100644 --- a/docs/appOauth.java.md +++ b/docs/appOauth.java.md @@ -712,9 +712,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putGroupsClaim | *No description.* | | putJwks | *No description.* | | putTimeouts | *No description.* | @@ -955,6 +958,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -986,6 +995,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 @@ -1011,6 +1038,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". + +--- + ##### `putGroupsClaim` ```java diff --git a/docs/appOauth.python.md b/docs/appOauth.python.md index 496ed3873..9cccfa7bb 100644 --- a/docs/appOauth.python.md +++ b/docs/appOauth.python.md @@ -701,9 +701,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_groups_claim | *No description.* | | put_jwks | *No description.* | | put_timeouts | *No description.* | @@ -969,6 +972,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -1004,6 +1013,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 @@ -1031,6 +1060,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_groups_claim` ```python diff --git a/docs/appOauth.typescript.md b/docs/appOauth.typescript.md index 8fc056e87..70563747a 100644 --- a/docs/appOauth.typescript.md +++ b/docs/appOauth.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". | | putGroupsClaim | *No description.* | | putJwks | *No description.* | | putTimeouts | *No description.* | @@ -309,6 +312,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -339,6 +348,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 @@ -363,6 +390,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". + +--- + ##### `putGroupsClaim` ```typescript diff --git a/docs/appOauthApiScope.csharp.md b/docs/appOauthApiScope.csharp.md index 0847ac935..8b50ad7d5 100644 --- a/docs/appOauthApiScope.csharp.md +++ b/docs/appOauthApiScope.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/appOauthApiScope.go.md b/docs/appOauthApiScope.go.md index 5f19d06ab..d80416b04 100644 --- a/docs/appOauthApiScope.go.md +++ b/docs/appOauthApiScope.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/appOauthApiScope.java.md b/docs/appOauthApiScope.java.md index e87a2b943..3055a989d 100644 --- a/docs/appOauthApiScope.java.md +++ b/docs/appOauthApiScope.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/appOauthApiScope.python.md b/docs/appOauthApiScope.python.md index f51ef1d32..05f0fae93 100644 --- a/docs/appOauthApiScope.python.md +++ b/docs/appOauthApiScope.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/appOauthApiScope.typescript.md b/docs/appOauthApiScope.typescript.md index dc9de92fc..4bd5956e6 100644 --- a/docs/appOauthApiScope.typescript.md +++ b/docs/appOauthApiScope.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/appOauthPostLogoutRedirectUri.csharp.md b/docs/appOauthPostLogoutRedirectUri.csharp.md index 010f35c94..828e36877 100644 --- a/docs/appOauthPostLogoutRedirectUri.csharp.md +++ b/docs/appOauthPostLogoutRedirectUri.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/appOauthPostLogoutRedirectUri.go.md b/docs/appOauthPostLogoutRedirectUri.go.md index 69e003993..00dc54432 100644 --- a/docs/appOauthPostLogoutRedirectUri.go.md +++ b/docs/appOauthPostLogoutRedirectUri.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/appOauthPostLogoutRedirectUri.java.md b/docs/appOauthPostLogoutRedirectUri.java.md index 03e9cfdea..3840400ef 100644 --- a/docs/appOauthPostLogoutRedirectUri.java.md +++ b/docs/appOauthPostLogoutRedirectUri.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/appOauthPostLogoutRedirectUri.python.md b/docs/appOauthPostLogoutRedirectUri.python.md index 719347ba9..5cca07331 100644 --- a/docs/appOauthPostLogoutRedirectUri.python.md +++ b/docs/appOauthPostLogoutRedirectUri.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/appOauthPostLogoutRedirectUri.typescript.md b/docs/appOauthPostLogoutRedirectUri.typescript.md index 234f5049d..3df73e07f 100644 --- a/docs/appOauthPostLogoutRedirectUri.typescript.md +++ b/docs/appOauthPostLogoutRedirectUri.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/appOauthRedirectUri.csharp.md b/docs/appOauthRedirectUri.csharp.md index 775875cef..4fc4c49af 100644 --- a/docs/appOauthRedirectUri.csharp.md +++ b/docs/appOauthRedirectUri.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/appOauthRedirectUri.go.md b/docs/appOauthRedirectUri.go.md index 99af45231..aeeaad2f2 100644 --- a/docs/appOauthRedirectUri.go.md +++ b/docs/appOauthRedirectUri.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/appOauthRedirectUri.java.md b/docs/appOauthRedirectUri.java.md index 1f1353e6d..9503aba35 100644 --- a/docs/appOauthRedirectUri.java.md +++ b/docs/appOauthRedirectUri.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/appOauthRedirectUri.python.md b/docs/appOauthRedirectUri.python.md index e24c15a78..0da77eb11 100644 --- a/docs/appOauthRedirectUri.python.md +++ b/docs/appOauthRedirectUri.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/appOauthRedirectUri.typescript.md b/docs/appOauthRedirectUri.typescript.md index d0179d500..c0f2b4356 100644 --- a/docs/appOauthRedirectUri.typescript.md +++ b/docs/appOauthRedirectUri.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/appOauthRoleAssignment.csharp.md b/docs/appOauthRoleAssignment.csharp.md index b3d283887..5af52a7e9 100644 --- a/docs/appOauthRoleAssignment.csharp.md +++ b/docs/appOauthRoleAssignment.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". | | ResetResourceSet | *No description.* | | ResetRole | *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". + +--- + ##### `ResetResourceSet` ```csharp diff --git a/docs/appOauthRoleAssignment.go.md b/docs/appOauthRoleAssignment.go.md index 75a4d8e48..be9fa3d41 100644 --- a/docs/appOauthRoleAssignment.go.md +++ b/docs/appOauthRoleAssignment.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". | | ResetResourceSet | *No description.* | | ResetRole | *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". + +--- + ##### `ResetResourceSet` ```go diff --git a/docs/appOauthRoleAssignment.java.md b/docs/appOauthRoleAssignment.java.md index 3653c3a8b..7785c9bec 100644 --- a/docs/appOauthRoleAssignment.java.md +++ b/docs/appOauthRoleAssignment.java.md @@ -170,9 +170,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetResourceSet | *No description.* | | resetRole | *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". + +--- + ##### `resetResourceSet` ```java diff --git a/docs/appOauthRoleAssignment.python.md b/docs/appOauthRoleAssignment.python.md index 6f422b1ce..566c9c732 100644 --- a/docs/appOauthRoleAssignment.python.md +++ b/docs/appOauthRoleAssignment.python.md @@ -168,9 +168,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_resource_set | *No description.* | | reset_role | *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_resource_set` ```python diff --git a/docs/appOauthRoleAssignment.typescript.md b/docs/appOauthRoleAssignment.typescript.md index 4c8747d57..8ce8e5e97 100644 --- a/docs/appOauthRoleAssignment.typescript.md +++ b/docs/appOauthRoleAssignment.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". | | resetResourceSet | *No description.* | | resetRole | *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". + +--- + ##### `resetResourceSet` ```typescript diff --git a/docs/appSaml.csharp.md b/docs/appSaml.csharp.md index 4ebadaa2d..6a9c4f97b 100644 --- a/docs/appSaml.csharp.md +++ b/docs/appSaml.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". | | PutAttributeStatements | *No description.* | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | @@ -309,6 +312,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -339,6 +348,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 @@ -363,6 +390,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". + +--- + ##### `PutAttributeStatements` ```csharp diff --git a/docs/appSaml.go.md b/docs/appSaml.go.md index c244e65ed..9564a019d 100644 --- a/docs/appSaml.go.md +++ b/docs/appSaml.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". | | PutAttributeStatements | *No description.* | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | @@ -309,6 +312,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -339,6 +348,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 @@ -363,6 +390,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". + +--- + ##### `PutAttributeStatements` ```go diff --git a/docs/appSaml.java.md b/docs/appSaml.java.md index a509faaf1..87214c030 100644 --- a/docs/appSaml.java.md +++ b/docs/appSaml.java.md @@ -708,9 +708,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putAttributeStatements | *No description.* | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | @@ -951,6 +954,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -982,6 +991,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 @@ -1007,6 +1034,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". + +--- + ##### `putAttributeStatements` ```java diff --git a/docs/appSaml.python.md b/docs/appSaml.python.md index 60508b1eb..ee6d2d85a 100644 --- a/docs/appSaml.python.md +++ b/docs/appSaml.python.md @@ -695,9 +695,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_attribute_statements | *No description.* | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | @@ -963,6 +966,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -998,6 +1007,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 @@ -1025,6 +1054,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_attribute_statements` ```python diff --git a/docs/appSaml.typescript.md b/docs/appSaml.typescript.md index 10c2d485c..7403858ec 100644 --- a/docs/appSaml.typescript.md +++ b/docs/appSaml.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". | | putAttributeStatements | *No description.* | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | @@ -309,6 +312,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -339,6 +348,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 @@ -363,6 +390,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". + +--- + ##### `putAttributeStatements` ```typescript diff --git a/docs/appSamlAppSettings.csharp.md b/docs/appSamlAppSettings.csharp.md index c940039e1..589118b05 100644 --- a/docs/appSamlAppSettings.csharp.md +++ b/docs/appSamlAppSettings.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/appSamlAppSettings.go.md b/docs/appSamlAppSettings.go.md index 199660edf..7063842b6 100644 --- a/docs/appSamlAppSettings.go.md +++ b/docs/appSamlAppSettings.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/appSamlAppSettings.java.md b/docs/appSamlAppSettings.java.md index 8db142791..f2ff4aee6 100644 --- a/docs/appSamlAppSettings.java.md +++ b/docs/appSamlAppSettings.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/appSamlAppSettings.python.md b/docs/appSamlAppSettings.python.md index 75fcbeed3..25525c395 100644 --- a/docs/appSamlAppSettings.python.md +++ b/docs/appSamlAppSettings.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/appSamlAppSettings.typescript.md b/docs/appSamlAppSettings.typescript.md index e41eb9038..37a89a8eb 100644 --- a/docs/appSamlAppSettings.typescript.md +++ b/docs/appSamlAppSettings.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/appSecurePasswordStore.csharp.md b/docs/appSecurePasswordStore.csharp.md index b98bc7666..c70d47e6d 100644 --- a/docs/appSecurePasswordStore.csharp.md +++ b/docs/appSecurePasswordStore.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -288,6 +291,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -318,6 +327,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appSecurePasswordStore.go.md b/docs/appSecurePasswordStore.go.md index fd5d2dfe8..5c1841421 100644 --- a/docs/appSecurePasswordStore.go.md +++ b/docs/appSecurePasswordStore.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -288,6 +291,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -318,6 +327,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appSecurePasswordStore.java.md b/docs/appSecurePasswordStore.java.md index b39a231f4..df45f4f1d 100644 --- a/docs/appSecurePasswordStore.java.md +++ b/docs/appSecurePasswordStore.java.md @@ -498,9 +498,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -720,6 +723,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -751,6 +760,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 @@ -776,6 +803,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appSecurePasswordStore.python.md b/docs/appSecurePasswordStore.python.md index b1887fe0c..76e53ca7a 100644 --- a/docs/appSecurePasswordStore.python.md +++ b/docs/appSecurePasswordStore.python.md @@ -491,9 +491,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -738,6 +741,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -773,6 +782,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 @@ -800,6 +829,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appSecurePasswordStore.typescript.md b/docs/appSecurePasswordStore.typescript.md index 8d19d7f5c..9d99872f5 100644 --- a/docs/appSecurePasswordStore.typescript.md +++ b/docs/appSecurePasswordStore.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -288,6 +291,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -318,6 +327,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appSharedCredentials.csharp.md b/docs/appSharedCredentials.csharp.md index f76e5e651..ba742f643 100644 --- a/docs/appSharedCredentials.csharp.md +++ b/docs/appSharedCredentials.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -288,6 +291,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -318,6 +327,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appSharedCredentials.go.md b/docs/appSharedCredentials.go.md index 2f9bdacf0..377431c86 100644 --- a/docs/appSharedCredentials.go.md +++ b/docs/appSharedCredentials.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -288,6 +291,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -318,6 +327,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appSharedCredentials.java.md b/docs/appSharedCredentials.java.md index 53a36dfe9..44b59ad9a 100644 --- a/docs/appSharedCredentials.java.md +++ b/docs/appSharedCredentials.java.md @@ -461,9 +461,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -683,6 +686,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -714,6 +723,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 @@ -739,6 +766,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appSharedCredentials.python.md b/docs/appSharedCredentials.python.md index f29b63521..57dfa3010 100644 --- a/docs/appSharedCredentials.python.md +++ b/docs/appSharedCredentials.python.md @@ -455,9 +455,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -702,6 +705,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -737,6 +746,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 @@ -764,6 +793,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appSharedCredentials.typescript.md b/docs/appSharedCredentials.typescript.md index 7dfc67f88..ff54c1e8a 100644 --- a/docs/appSharedCredentials.typescript.md +++ b/docs/appSharedCredentials.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -288,6 +291,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -318,6 +327,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -342,6 +369,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appSignonPolicy.csharp.md b/docs/appSignonPolicy.csharp.md index 14927f898..2ca5111d2 100644 --- a/docs/appSignonPolicy.csharp.md +++ b/docs/appSignonPolicy.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/appSignonPolicy.go.md b/docs/appSignonPolicy.go.md index caf1d97ed..53454684e 100644 --- a/docs/appSignonPolicy.go.md +++ b/docs/appSignonPolicy.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/appSignonPolicy.java.md b/docs/appSignonPolicy.java.md index 421dfdbf8..9e0eea712 100644 --- a/docs/appSignonPolicy.java.md +++ b/docs/appSignonPolicy.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/appSignonPolicy.python.md b/docs/appSignonPolicy.python.md index 9d678e7bc..428232273 100644 --- a/docs/appSignonPolicy.python.md +++ b/docs/appSignonPolicy.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/appSignonPolicy.typescript.md b/docs/appSignonPolicy.typescript.md index bce6bc79e..2a448d894 100644 --- a/docs/appSignonPolicy.typescript.md +++ b/docs/appSignonPolicy.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/appSignonPolicyRule.csharp.md b/docs/appSignonPolicyRule.csharp.md index a5321e78c..ce393ccef 100644 --- a/docs/appSignonPolicyRule.csharp.md +++ b/docs/appSignonPolicyRule.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". | | PutPlatformInclude | *No description.* | | ResetAccess | *No description.* | | ResetConstraints | *No description.* | @@ -285,6 +288,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -315,6 +324,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 @@ -339,6 +366,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". + +--- + ##### `PutPlatformInclude` ```csharp diff --git a/docs/appSignonPolicyRule.go.md b/docs/appSignonPolicyRule.go.md index d115a2b9b..c04b5692b 100644 --- a/docs/appSignonPolicyRule.go.md +++ b/docs/appSignonPolicyRule.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". | | PutPlatformInclude | *No description.* | | ResetAccess | *No description.* | | ResetConstraints | *No description.* | @@ -285,6 +288,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -315,6 +324,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 @@ -339,6 +366,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". + +--- + ##### `PutPlatformInclude` ```go diff --git a/docs/appSignonPolicyRule.java.md b/docs/appSignonPolicyRule.java.md index 223f767b4..c0911eb85 100644 --- a/docs/appSignonPolicyRule.java.md +++ b/docs/appSignonPolicyRule.java.md @@ -446,9 +446,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putPlatformInclude | *No description.* | | resetAccess | *No description.* | | resetConstraints | *No description.* | @@ -665,6 +668,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -696,6 +705,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 @@ -721,6 +748,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". + +--- + ##### `putPlatformInclude` ```java diff --git a/docs/appSignonPolicyRule.python.md b/docs/appSignonPolicyRule.python.md index 13e88da73..4dd9b223e 100644 --- a/docs/appSignonPolicyRule.python.md +++ b/docs/appSignonPolicyRule.python.md @@ -441,9 +441,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_platform_include | *No description.* | | reset_access | *No description.* | | reset_constraints | *No description.* | @@ -685,6 +688,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -720,6 +729,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 @@ -747,6 +776,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_platform_include` ```python diff --git a/docs/appSignonPolicyRule.typescript.md b/docs/appSignonPolicyRule.typescript.md index d2808f203..0d0b28138 100644 --- a/docs/appSignonPolicyRule.typescript.md +++ b/docs/appSignonPolicyRule.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". | | putPlatformInclude | *No description.* | | resetAccess | *No description.* | | resetConstraints | *No description.* | @@ -285,6 +288,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -315,6 +324,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 @@ -339,6 +366,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". + +--- + ##### `putPlatformInclude` ```typescript diff --git a/docs/appSwa.csharp.md b/docs/appSwa.csharp.md index 5bf51fba4..6eec60caa 100644 --- a/docs/appSwa.csharp.md +++ b/docs/appSwa.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -286,6 +289,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -316,6 +325,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 @@ -340,6 +367,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appSwa.go.md b/docs/appSwa.go.md index 28f590400..dd48095f6 100644 --- a/docs/appSwa.go.md +++ b/docs/appSwa.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -286,6 +289,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -316,6 +325,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 @@ -340,6 +367,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appSwa.java.md b/docs/appSwa.java.md index 2795ab841..a9b327795 100644 --- a/docs/appSwa.java.md +++ b/docs/appSwa.java.md @@ -437,9 +437,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -657,6 +660,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -688,6 +697,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 @@ -713,6 +740,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appSwa.python.md b/docs/appSwa.python.md index 36be4b0e3..5a327e956 100644 --- a/docs/appSwa.python.md +++ b/docs/appSwa.python.md @@ -431,9 +431,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -676,6 +679,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -711,6 +720,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 @@ -738,6 +767,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appSwa.typescript.md b/docs/appSwa.typescript.md index 204eec7ea..723e60a99 100644 --- a/docs/appSwa.typescript.md +++ b/docs/appSwa.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -286,6 +289,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -316,6 +325,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 @@ -340,6 +367,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appThreeField.csharp.md b/docs/appThreeField.csharp.md index cb3daa73f..1ff8e2949 100644 --- a/docs/appThreeField.csharp.md +++ b/docs/appThreeField.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -283,6 +286,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -313,6 +322,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 @@ -337,6 +364,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```csharp diff --git a/docs/appThreeField.go.md b/docs/appThreeField.go.md index 9e61bd4d2..c64671afb 100644 --- a/docs/appThreeField.go.md +++ b/docs/appThreeField.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | PutTimeouts | *No description.* | | ResetAccessibilityErrorRedirectUrl | *No description.* | | ResetAccessibilityLoginRedirectUrl | *No description.* | @@ -283,6 +286,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -313,6 +322,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 @@ -337,6 +364,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutTimeouts` ```go diff --git a/docs/appThreeField.java.md b/docs/appThreeField.java.md index 3f8603f03..9b6104d85 100644 --- a/docs/appThreeField.java.md +++ b/docs/appThreeField.java.md @@ -474,9 +474,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -691,6 +694,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -722,6 +731,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 @@ -747,6 +774,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```java diff --git a/docs/appThreeField.python.md b/docs/appThreeField.python.md index 9e7d35146..ae81275e2 100644 --- a/docs/appThreeField.python.md +++ b/docs/appThreeField.python.md @@ -467,9 +467,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | get_number_map_attribute | *No description.* | | get_string_attribute | *No description.* | | get_string_map_attribute | *No description.* | +| has_resource_move | *No description.* | | import_from | *No description.* | | interpolation_for_attribute | *No description.* | +| move_from_id | Move the resource corresponding to "id" to this resource. | | move_to | Moves this resource to the target resource given by moveTarget. | +| move_to_id | Moves this resource to the resource corresponding to "id". | | put_timeouts | *No description.* | | reset_accessibility_error_redirect_url | *No description.* | | reset_accessibility_login_redirect_url | *No description.* | @@ -709,6 +712,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -744,6 +753,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 @@ -771,6 +800,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `put_timeouts` ```python diff --git a/docs/appThreeField.typescript.md b/docs/appThreeField.typescript.md index 131f17590..3eb1d86bf 100644 --- a/docs/appThreeField.typescript.md +++ b/docs/appThreeField.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTimeouts | *No description.* | | resetAccessibilityErrorRedirectUrl | *No description.* | | resetAccessibilityLoginRedirectUrl | *No description.* | @@ -283,6 +286,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -313,6 +322,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 @@ -337,6 +364,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putTimeouts` ```typescript diff --git a/docs/appUser.csharp.md b/docs/appUser.csharp.md index 4cdb7e104..6a7c4ba5c 100644 --- a/docs/appUser.csharp.md +++ b/docs/appUser.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.* | | ResetPassword | *No description.* | | ResetProfile | *No description.* | @@ -265,6 +268,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -295,6 +304,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```csharp diff --git a/docs/appUser.go.md b/docs/appUser.go.md index 1221baceb..e889c4826 100644 --- a/docs/appUser.go.md +++ b/docs/appUser.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.* | | ResetPassword | *No description.* | | ResetProfile | *No description.* | @@ -265,6 +268,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -295,6 +304,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetId` ```go diff --git a/docs/appUser.java.md b/docs/appUser.java.md index c104b38b8..c88de5fc6 100644 --- a/docs/appUser.java.md +++ b/docs/appUser.java.md @@ -210,9 +210,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetPassword | *No description.* | | resetProfile | *No description.* | @@ -409,6 +412,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -440,6 +449,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 @@ -465,6 +492,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/appUser.python.md b/docs/appUser.python.md index 361a38edf..064aadee2 100644 --- a/docs/appUser.python.md +++ b/docs/appUser.python.md @@ -207,9 +207,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_password | *No description.* | | reset_profile | *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". + +--- + ##### `reset_id` ```python diff --git a/docs/appUser.typescript.md b/docs/appUser.typescript.md index 416bb1a3c..6f802f1ee 100644 --- a/docs/appUser.typescript.md +++ b/docs/appUser.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.* | | resetPassword | *No description.* | | resetProfile | *No description.* | @@ -265,6 +268,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -295,6 +304,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -319,6 +346,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```typescript diff --git a/docs/appUserBaseSchemaProperty.csharp.md b/docs/appUserBaseSchemaProperty.csharp.md index fb5b89a2b..521e8cde7 100644 --- a/docs/appUserBaseSchemaProperty.csharp.md +++ b/docs/appUserBaseSchemaProperty.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.* | | ResetMaster | *No description.* | | ResetPattern | *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". + +--- + ##### `ResetId` ```csharp diff --git a/docs/appUserBaseSchemaProperty.go.md b/docs/appUserBaseSchemaProperty.go.md index ada29c755..1a2180526 100644 --- a/docs/appUserBaseSchemaProperty.go.md +++ b/docs/appUserBaseSchemaProperty.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.* | | ResetMaster | *No description.* | | ResetPattern | *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". + +--- + ##### `ResetId` ```go diff --git a/docs/appUserBaseSchemaProperty.java.md b/docs/appUserBaseSchemaProperty.java.md index f3d0728d1..44dfbd93d 100644 --- a/docs/appUserBaseSchemaProperty.java.md +++ b/docs/appUserBaseSchemaProperty.java.md @@ -242,9 +242,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetMaster | *No description.* | | resetPattern | *No description.* | @@ -442,6 +445,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -473,6 +482,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 @@ -498,6 +525,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/appUserBaseSchemaProperty.python.md b/docs/appUserBaseSchemaProperty.python.md index 3aaa95ae1..bc61123f8 100644 --- a/docs/appUserBaseSchemaProperty.python.md +++ b/docs/appUserBaseSchemaProperty.python.md @@ -239,9 +239,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_master | *No description.* | | reset_pattern | *No description.* | @@ -464,6 +467,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -499,6 +508,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 @@ -526,6 +555,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/appUserBaseSchemaProperty.typescript.md b/docs/appUserBaseSchemaProperty.typescript.md index 8e2ae23c9..b6714182f 100644 --- a/docs/appUserBaseSchemaProperty.typescript.md +++ b/docs/appUserBaseSchemaProperty.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.* | | resetMaster | *No description.* | | resetPattern | *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". + +--- + ##### `resetId` ```typescript diff --git a/docs/appUserSchemaProperty.csharp.md b/docs/appUserSchemaProperty.csharp.md index f4f160f7c..4f58820f8 100644 --- a/docs/appUserSchemaProperty.csharp.md +++ b/docs/appUserSchemaProperty.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". | | PutArrayOneOf | *No description.* | | PutOneOf | *No description.* | | ResetArrayEnum | *No description.* | @@ -280,6 +283,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -310,6 +319,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 @@ -334,6 +361,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". + +--- + ##### `PutArrayOneOf` ```csharp diff --git a/docs/appUserSchemaProperty.go.md b/docs/appUserSchemaProperty.go.md index 2b79c3849..2a127a723 100644 --- a/docs/appUserSchemaProperty.go.md +++ b/docs/appUserSchemaProperty.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". | | PutArrayOneOf | *No description.* | | PutOneOf | *No description.* | | ResetArrayEnum | *No description.* | @@ -280,6 +283,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -310,6 +319,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 @@ -334,6 +361,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". + +--- + ##### `PutArrayOneOf` ```go diff --git a/docs/appUserSchemaProperty.java.md b/docs/appUserSchemaProperty.java.md index 527a37982..95e3241b8 100644 --- a/docs/appUserSchemaProperty.java.md +++ b/docs/appUserSchemaProperty.java.md @@ -391,9 +391,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putArrayOneOf | *No description.* | | putOneOf | *No description.* | | resetArrayEnum | *No description.* | @@ -605,6 +608,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -636,6 +645,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 @@ -661,6 +688,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". + +--- + ##### `putArrayOneOf` ```java diff --git a/docs/appUserSchemaProperty.python.md b/docs/appUserSchemaProperty.python.md index dec51ac71..878a0e8cc 100644 --- a/docs/appUserSchemaProperty.python.md +++ b/docs/appUserSchemaProperty.python.md @@ -385,9 +385,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_array_one_of | *No description.* | | put_one_of | *No description.* | | reset_array_enum | *No description.* | @@ -624,6 +627,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -659,6 +668,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 @@ -686,6 +715,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_array_one_of` ```python diff --git a/docs/appUserSchemaProperty.typescript.md b/docs/appUserSchemaProperty.typescript.md index 5d572630b..f55fc9be3 100644 --- a/docs/appUserSchemaProperty.typescript.md +++ b/docs/appUserSchemaProperty.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". | | putArrayOneOf | *No description.* | | putOneOf | *No description.* | | resetArrayEnum | *No description.* | @@ -280,6 +283,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -310,6 +319,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 @@ -334,6 +361,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". + +--- + ##### `putArrayOneOf` ```typescript diff --git a/docs/authServer.csharp.md b/docs/authServer.csharp.md index 8c08d10e2..df7a7b2e4 100644 --- a/docs/authServer.csharp.md +++ b/docs/authServer.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". | | ResetCredentialsRotationMode | *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". + +--- + ##### `ResetCredentialsRotationMode` ```csharp diff --git a/docs/authServer.go.md b/docs/authServer.go.md index 80c5cf502..655dade94 100644 --- a/docs/authServer.go.md +++ b/docs/authServer.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". | | ResetCredentialsRotationMode | *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". + +--- + ##### `ResetCredentialsRotationMode` ```go diff --git a/docs/authServer.java.md b/docs/authServer.java.md index 9787b9f6f..48067b1a4 100644 --- a/docs/authServer.java.md +++ b/docs/authServer.java.md @@ -207,9 +207,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCredentialsRotationMode | *No description.* | | resetDescription | *No description.* | | resetId | *No description.* | @@ -406,6 +409,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -437,6 +446,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 @@ -462,6 +489,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". + +--- + ##### `resetCredentialsRotationMode` ```java diff --git a/docs/authServer.python.md b/docs/authServer.python.md index 17fcd4fdc..6834f2e02 100644 --- a/docs/authServer.python.md +++ b/docs/authServer.python.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_credentials_rotation_mode | *No description.* | | reset_description | *No description.* | | reset_id | *No description.* | @@ -429,6 +432,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -464,6 +473,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -491,6 +520,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_credentials_rotation_mode` ```python diff --git a/docs/authServer.typescript.md b/docs/authServer.typescript.md index 32e18bf90..40d02f4bd 100644 --- a/docs/authServer.typescript.md +++ b/docs/authServer.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". | | resetCredentialsRotationMode | *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". + +--- + ##### `resetCredentialsRotationMode` ```typescript diff --git a/docs/authServerClaim.csharp.md b/docs/authServerClaim.csharp.md index 4b1851a73..6d2dcfbd6 100644 --- a/docs/authServerClaim.csharp.md +++ b/docs/authServerClaim.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". | | ResetAlwaysIncludeInToken | *No description.* | | ResetGroupFilterType | *No description.* | | ResetId | *No description.* | @@ -266,6 +269,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -296,6 +305,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAlwaysIncludeInToken` ```csharp diff --git a/docs/authServerClaim.go.md b/docs/authServerClaim.go.md index 20db0d246..2fb6872a2 100644 --- a/docs/authServerClaim.go.md +++ b/docs/authServerClaim.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". | | ResetAlwaysIncludeInToken | *No description.* | | ResetGroupFilterType | *No description.* | | ResetId | *No description.* | @@ -266,6 +269,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -296,6 +305,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAlwaysIncludeInToken` ```go diff --git a/docs/authServerClaim.java.md b/docs/authServerClaim.java.md index 18a4a0a05..06b54fb83 100644 --- a/docs/authServerClaim.java.md +++ b/docs/authServerClaim.java.md @@ -242,9 +242,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAlwaysIncludeInToken | *No description.* | | resetGroupFilterType | *No description.* | | resetId | *No description.* | @@ -442,6 +445,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -473,6 +482,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 @@ -498,6 +525,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". + +--- + ##### `resetAlwaysIncludeInToken` ```java diff --git a/docs/authServerClaim.python.md b/docs/authServerClaim.python.md index edaaa0723..b1e80cb07 100644 --- a/docs/authServerClaim.python.md +++ b/docs/authServerClaim.python.md @@ -239,9 +239,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_always_include_in_token | *No description.* | | reset_group_filter_type | *No description.* | | reset_id | *No description.* | @@ -464,6 +467,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -499,6 +508,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 @@ -526,6 +555,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_always_include_in_token` ```python diff --git a/docs/authServerClaim.typescript.md b/docs/authServerClaim.typescript.md index f8136d02c..042fdbdfe 100644 --- a/docs/authServerClaim.typescript.md +++ b/docs/authServerClaim.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". | | resetAlwaysIncludeInToken | *No description.* | | resetGroupFilterType | *No description.* | | resetId | *No description.* | @@ -266,6 +269,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -296,6 +305,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAlwaysIncludeInToken` ```typescript diff --git a/docs/authServerClaimDefault.csharp.md b/docs/authServerClaimDefault.csharp.md index 47f9a8daa..41d03aba1 100644 --- a/docs/authServerClaimDefault.csharp.md +++ b/docs/authServerClaimDefault.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". | | ResetAlwaysIncludeInToken | *No description.* | | ResetId | *No description.* | | ResetValue | *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". + +--- + ##### `ResetAlwaysIncludeInToken` ```csharp diff --git a/docs/authServerClaimDefault.go.md b/docs/authServerClaimDefault.go.md index de3bef45d..df264a41b 100644 --- a/docs/authServerClaimDefault.go.md +++ b/docs/authServerClaimDefault.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". | | ResetAlwaysIncludeInToken | *No description.* | | ResetId | *No description.* | | ResetValue | *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". + +--- + ##### `ResetAlwaysIncludeInToken` ```go diff --git a/docs/authServerClaimDefault.java.md b/docs/authServerClaimDefault.java.md index 442822fc9..685f27c84 100644 --- a/docs/authServerClaimDefault.java.md +++ b/docs/authServerClaimDefault.java.md @@ -182,9 +182,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAlwaysIncludeInToken | *No description.* | | resetId | *No description.* | | resetValue | *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". + +--- + ##### `resetAlwaysIncludeInToken` ```java diff --git a/docs/authServerClaimDefault.python.md b/docs/authServerClaimDefault.python.md index fecd7a36e..b412ed334 100644 --- a/docs/authServerClaimDefault.python.md +++ b/docs/authServerClaimDefault.python.md @@ -179,9 +179,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_always_include_in_token | *No description.* | | reset_id | *No description.* | | reset_value | *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_always_include_in_token` ```python diff --git a/docs/authServerClaimDefault.typescript.md b/docs/authServerClaimDefault.typescript.md index 6ce379bcf..19965b17f 100644 --- a/docs/authServerClaimDefault.typescript.md +++ b/docs/authServerClaimDefault.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". | | resetAlwaysIncludeInToken | *No description.* | | resetId | *No description.* | | resetValue | *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". + +--- + ##### `resetAlwaysIncludeInToken` ```typescript diff --git a/docs/authServerDefault.csharp.md b/docs/authServerDefault.csharp.md index 3f2c81edc..09927e429 100644 --- a/docs/authServerDefault.csharp.md +++ b/docs/authServerDefault.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". | | ResetAudiences | *No description.* | | ResetCredentialsRotationMode | *No description.* | | ResetDescription | *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". + +--- + ##### `ResetAudiences` ```csharp diff --git a/docs/authServerDefault.go.md b/docs/authServerDefault.go.md index 747b83168..98eaa9109 100644 --- a/docs/authServerDefault.go.md +++ b/docs/authServerDefault.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". | | ResetAudiences | *No description.* | | ResetCredentialsRotationMode | *No description.* | | ResetDescription | *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". + +--- + ##### `ResetAudiences` ```go diff --git a/docs/authServerDefault.java.md b/docs/authServerDefault.java.md index 206b54648..6b8dfb866 100644 --- a/docs/authServerDefault.java.md +++ b/docs/authServerDefault.java.md @@ -207,9 +207,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAudiences | *No description.* | | resetCredentialsRotationMode | *No description.* | | resetDescription | *No description.* | @@ -408,6 +411,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -439,6 +448,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 @@ -464,6 +491,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". + +--- + ##### `resetAudiences` ```java diff --git a/docs/authServerDefault.python.md b/docs/authServerDefault.python.md index 21448a1a3..e5d094f61 100644 --- a/docs/authServerDefault.python.md +++ b/docs/authServerDefault.python.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_audiences | *No description.* | | reset_credentials_rotation_mode | *No description.* | | reset_description | *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". + +--- + ##### `reset_audiences` ```python diff --git a/docs/authServerDefault.typescript.md b/docs/authServerDefault.typescript.md index 8d80f76f6..34b9aeeb4 100644 --- a/docs/authServerDefault.typescript.md +++ b/docs/authServerDefault.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". | | resetAudiences | *No description.* | | resetCredentialsRotationMode | *No description.* | | resetDescription | *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". + +--- + ##### `resetAudiences` ```typescript diff --git a/docs/authServerPolicy.csharp.md b/docs/authServerPolicy.csharp.md index c823bb83a..bc8c28f05 100644 --- a/docs/authServerPolicy.csharp.md +++ b/docs/authServerPolicy.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.* | | ResetStatus | *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/authServerPolicy.go.md b/docs/authServerPolicy.go.md index c927a710c..ea4fb2f07 100644 --- a/docs/authServerPolicy.go.md +++ b/docs/authServerPolicy.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.* | | ResetStatus | *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/authServerPolicy.java.md b/docs/authServerPolicy.java.md index e2cd23a6d..5ba1d9886 100644 --- a/docs/authServerPolicy.java.md +++ b/docs/authServerPolicy.java.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetStatus | *No description.* | @@ -401,6 +404,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -432,6 +441,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 @@ -457,6 +484,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/authServerPolicy.python.md b/docs/authServerPolicy.python.md index 73a290d92..2513fe0b8 100644 --- a/docs/authServerPolicy.python.md +++ b/docs/authServerPolicy.python.md @@ -203,9 +203,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_status | *No description.* | @@ -424,6 +427,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -459,6 +468,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 @@ -486,6 +515,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/authServerPolicy.typescript.md b/docs/authServerPolicy.typescript.md index 06ffedea0..15075ab2b 100644 --- a/docs/authServerPolicy.typescript.md +++ b/docs/authServerPolicy.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.* | | resetStatus | *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/authServerPolicyRule.csharp.md b/docs/authServerPolicyRule.csharp.md index 08d65fdd4..0b70d9a08 100644 --- a/docs/authServerPolicyRule.csharp.md +++ b/docs/authServerPolicyRule.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". | | ResetAccessTokenLifetimeMinutes | *No description.* | | ResetGroupBlacklist | *No description.* | | ResetGroupWhitelist | *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". + +--- + ##### `ResetAccessTokenLifetimeMinutes` ```csharp diff --git a/docs/authServerPolicyRule.go.md b/docs/authServerPolicyRule.go.md index 28f8c3b87..2aafe5d51 100644 --- a/docs/authServerPolicyRule.go.md +++ b/docs/authServerPolicyRule.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". | | ResetAccessTokenLifetimeMinutes | *No description.* | | ResetGroupBlacklist | *No description.* | | ResetGroupWhitelist | *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". + +--- + ##### `ResetAccessTokenLifetimeMinutes` ```go diff --git a/docs/authServerPolicyRule.java.md b/docs/authServerPolicyRule.java.md index 4e79b9df2..a52bfd943 100644 --- a/docs/authServerPolicyRule.java.md +++ b/docs/authServerPolicyRule.java.md @@ -329,9 +329,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAccessTokenLifetimeMinutes | *No description.* | | resetGroupBlacklist | *No description.* | | resetGroupWhitelist | *No description.* | @@ -535,6 +538,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -566,6 +575,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 @@ -591,6 +618,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". + +--- + ##### `resetAccessTokenLifetimeMinutes` ```java diff --git a/docs/authServerPolicyRule.python.md b/docs/authServerPolicyRule.python.md index 90132b073..f523c6c97 100644 --- a/docs/authServerPolicyRule.python.md +++ b/docs/authServerPolicyRule.python.md @@ -327,9 +327,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_token_lifetime_minutes | *No description.* | | reset_group_blacklist | *No description.* | | reset_group_whitelist | *No description.* | @@ -558,6 +561,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -593,6 +602,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 @@ -620,6 +649,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_token_lifetime_minutes` ```python diff --git a/docs/authServerPolicyRule.typescript.md b/docs/authServerPolicyRule.typescript.md index 7f6192a68..5dbaba538 100644 --- a/docs/authServerPolicyRule.typescript.md +++ b/docs/authServerPolicyRule.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". | | resetAccessTokenLifetimeMinutes | *No description.* | | resetGroupBlacklist | *No description.* | | resetGroupWhitelist | *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". + +--- + ##### `resetAccessTokenLifetimeMinutes` ```typescript diff --git a/docs/authServerScope.csharp.md b/docs/authServerScope.csharp.md index cfe4fd7c7..89718969a 100644 --- a/docs/authServerScope.csharp.md +++ b/docs/authServerScope.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". | | ResetConsent | *No description.* | | ResetDefault | *No description.* | | ResetDescription | *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". + +--- + ##### `ResetConsent` ```csharp diff --git a/docs/authServerScope.go.md b/docs/authServerScope.go.md index 4b1d152f6..fd90d5a33 100644 --- a/docs/authServerScope.go.md +++ b/docs/authServerScope.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". | | ResetConsent | *No description.* | | ResetDefault | *No description.* | | ResetDescription | *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". + +--- + ##### `ResetConsent` ```go diff --git a/docs/authServerScope.java.md b/docs/authServerScope.java.md index 09d8816ad..da863ba1c 100644 --- a/docs/authServerScope.java.md +++ b/docs/authServerScope.java.md @@ -231,9 +231,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetConsent | *No description.* | | resetDefault | *No description.* | | resetDescription | *No description.* | @@ -432,6 +435,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -463,6 +472,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 @@ -488,6 +515,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". + +--- + ##### `resetConsent` ```java diff --git a/docs/authServerScope.python.md b/docs/authServerScope.python.md index ccf7fa2cd..51b53edc8 100644 --- a/docs/authServerScope.python.md +++ b/docs/authServerScope.python.md @@ -227,9 +227,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_consent | *No description.* | | reset_default | *No description.* | | reset_description | *No description.* | @@ -453,6 +456,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -488,6 +497,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -515,6 +544,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_consent` ```python diff --git a/docs/authServerScope.typescript.md b/docs/authServerScope.typescript.md index 918bbb179..ffaa1b062 100644 --- a/docs/authServerScope.typescript.md +++ b/docs/authServerScope.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". | | resetConsent | *No description.* | | resetDefault | *No description.* | | resetDescription | *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". + +--- + ##### `resetConsent` ```typescript diff --git a/docs/authenticator.csharp.md b/docs/authenticator.csharp.md index 75d532e76..185643bdd 100644 --- a/docs/authenticator.csharp.md +++ b/docs/authenticator.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.* | | ResetProviderAuthPort | *No description.* | | ResetProviderHost | *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". + +--- + ##### `ResetId` ```csharp diff --git a/docs/authenticator.go.md b/docs/authenticator.go.md index 7ecbe3ad9..80f62738f 100644 --- a/docs/authenticator.go.md +++ b/docs/authenticator.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.* | | ResetProviderAuthPort | *No description.* | | ResetProviderHost | *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". + +--- + ##### `ResetId` ```go diff --git a/docs/authenticator.java.md b/docs/authenticator.java.md index f3bc10e5b..468a55ea6 100644 --- a/docs/authenticator.java.md +++ b/docs/authenticator.java.md @@ -277,9 +277,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetProviderAuthPort | *No description.* | | resetProviderHost | *No description.* | @@ -482,6 +485,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -513,6 +522,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 @@ -538,6 +565,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/authenticator.python.md b/docs/authenticator.python.md index 8bc6d2002..aac7cf359 100644 --- a/docs/authenticator.python.md +++ b/docs/authenticator.python.md @@ -275,9 +275,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_provider_auth_port | *No description.* | | reset_provider_host | *No description.* | @@ -505,6 +508,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -540,6 +549,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 @@ -567,6 +596,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/authenticator.typescript.md b/docs/authenticator.typescript.md index cc9b2dda3..6812c9c44 100644 --- a/docs/authenticator.typescript.md +++ b/docs/authenticator.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.* | | resetProviderAuthPort | *No description.* | | resetProviderHost | *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". + +--- + ##### `resetId` ```typescript diff --git a/docs/behavior.csharp.md b/docs/behavior.csharp.md index e4202f974..8190c7bb9 100644 --- a/docs/behavior.csharp.md +++ b/docs/behavior.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.* | | ResetLocationGranularityType | *No description.* | | ResetNumberOfAuthentications | *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". + +--- + ##### `ResetId` ```csharp diff --git a/docs/behavior.go.md b/docs/behavior.go.md index 112319fee..01ef4a746 100644 --- a/docs/behavior.go.md +++ b/docs/behavior.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.* | | ResetLocationGranularityType | *No description.* | | ResetNumberOfAuthentications | *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". + +--- + ##### `ResetId` ```go diff --git a/docs/behavior.java.md b/docs/behavior.java.md index 836c86275..96741302b 100644 --- a/docs/behavior.java.md +++ b/docs/behavior.java.md @@ -217,9 +217,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetLocationGranularityType | *No description.* | | resetNumberOfAuthentications | *No description.* | @@ -417,6 +420,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -448,6 +457,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 @@ -473,6 +500,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/behavior.python.md b/docs/behavior.python.md index fc2e513ae..69090081c 100644 --- a/docs/behavior.python.md +++ b/docs/behavior.python.md @@ -215,9 +215,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_location_granularity_type | *No description.* | | reset_number_of_authentications | *No description.* | @@ -440,6 +443,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -475,6 +484,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 @@ -502,6 +531,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/behavior.typescript.md b/docs/behavior.typescript.md index 1db58fb7c..6724e6bfd 100644 --- a/docs/behavior.typescript.md +++ b/docs/behavior.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.* | | resetLocationGranularityType | *No description.* | | resetNumberOfAuthentications | *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". + +--- + ##### `resetId` ```typescript diff --git a/docs/brand.csharp.md b/docs/brand.csharp.md index 1e3c03b01..597426a99 100644 --- a/docs/brand.csharp.md +++ b/docs/brand.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". | | ResetAgreeToCustomPrivacyPolicy | *No description.* | | ResetBrandId | *No description.* | | ResetCustomPrivacyPolicyUrl | *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". + +--- + ##### `ResetAgreeToCustomPrivacyPolicy` ```csharp diff --git a/docs/brand.go.md b/docs/brand.go.md index b9a3a2fcd..12107a52d 100644 --- a/docs/brand.go.md +++ b/docs/brand.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". | | ResetAgreeToCustomPrivacyPolicy | *No description.* | | ResetBrandId | *No description.* | | ResetCustomPrivacyPolicyUrl | *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". + +--- + ##### `ResetAgreeToCustomPrivacyPolicy` ```go diff --git a/docs/brand.java.md b/docs/brand.java.md index 38f584b50..c73fd1390 100644 --- a/docs/brand.java.md +++ b/docs/brand.java.md @@ -232,9 +232,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAgreeToCustomPrivacyPolicy | *No description.* | | resetBrandId | *No description.* | | resetCustomPrivacyPolicyUrl | *No description.* | @@ -434,6 +437,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -465,6 +474,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -490,6 +517,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAgreeToCustomPrivacyPolicy` ```java diff --git a/docs/brand.python.md b/docs/brand.python.md index b595cce66..edd4655c3 100644 --- a/docs/brand.python.md +++ b/docs/brand.python.md @@ -228,9 +228,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_agree_to_custom_privacy_policy | *No description.* | | reset_brand_id | *No description.* | | reset_custom_privacy_policy_url | *No description.* | @@ -455,6 +458,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -490,6 +499,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 @@ -517,6 +546,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_agree_to_custom_privacy_policy` ```python diff --git a/docs/brand.typescript.md b/docs/brand.typescript.md index 7cd54b3f3..5eebcf495 100644 --- a/docs/brand.typescript.md +++ b/docs/brand.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". | | resetAgreeToCustomPrivacyPolicy | *No description.* | | resetBrandId | *No description.* | | resetCustomPrivacyPolicyUrl | *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". + +--- + ##### `resetAgreeToCustomPrivacyPolicy` ```typescript diff --git a/docs/captcha.csharp.md b/docs/captcha.csharp.md index d73fd95a3..cd8f0973a 100644 --- a/docs/captcha.csharp.md +++ b/docs/captcha.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/captcha.go.md b/docs/captcha.go.md index bd8881be7..afd505c25 100644 --- a/docs/captcha.go.md +++ b/docs/captcha.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/captcha.java.md b/docs/captcha.java.md index 2cbae78c5..6a01a564a 100644 --- a/docs/captcha.java.md +++ b/docs/captcha.java.md @@ -181,9 +181,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.* | --- @@ -376,6 +379,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -407,6 +416,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 @@ -432,6 +459,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/captcha.python.md b/docs/captcha.python.md index 0524225c4..57621d6d7 100644 --- a/docs/captcha.python.md +++ b/docs/captcha.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_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". + +--- + ##### `reset_id` ```python diff --git a/docs/captcha.typescript.md b/docs/captcha.typescript.md index 3a18f1d35..76136b152 100644 --- a/docs/captcha.typescript.md +++ b/docs/captcha.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/captchaOrgWideSettings.csharp.md b/docs/captchaOrgWideSettings.csharp.md index 4b95d89b0..78bde2dc9 100644 --- a/docs/captchaOrgWideSettings.csharp.md +++ b/docs/captchaOrgWideSettings.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". | | ResetCaptchaId | *No description.* | | ResetEnabledFor | *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". + +--- + ##### `ResetCaptchaId` ```csharp diff --git a/docs/captchaOrgWideSettings.go.md b/docs/captchaOrgWideSettings.go.md index 82f13e74b..7da2ff9f4 100644 --- a/docs/captchaOrgWideSettings.go.md +++ b/docs/captchaOrgWideSettings.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". | | ResetCaptchaId | *No description.* | | ResetEnabledFor | *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". + +--- + ##### `ResetCaptchaId` ```go diff --git a/docs/captchaOrgWideSettings.java.md b/docs/captchaOrgWideSettings.java.md index 868d8ce1c..62ea8d215 100644 --- a/docs/captchaOrgWideSettings.java.md +++ b/docs/captchaOrgWideSettings.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". | | resetCaptchaId | *No description.* | | resetEnabledFor | *No description.* | | 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". + +--- + ##### `resetCaptchaId` ```java diff --git a/docs/captchaOrgWideSettings.python.md b/docs/captchaOrgWideSettings.python.md index 5d9b215da..0744630da 100644 --- a/docs/captchaOrgWideSettings.python.md +++ b/docs/captchaOrgWideSettings.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_captcha_id | *No description.* | | reset_enabled_for | *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". + +--- + ##### `reset_captcha_id` ```python diff --git a/docs/captchaOrgWideSettings.typescript.md b/docs/captchaOrgWideSettings.typescript.md index f18de77b1..4248c09b9 100644 --- a/docs/captchaOrgWideSettings.typescript.md +++ b/docs/captchaOrgWideSettings.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". | | resetCaptchaId | *No description.* | | resetEnabledFor | *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". + +--- + ##### `resetCaptchaId` ```typescript diff --git a/docs/domain.csharp.md b/docs/domain.csharp.md index 7bd08951a..18b524e85 100644 --- a/docs/domain.csharp.md +++ b/docs/domain.csharp.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetBrandId | *No description.* | | ResetCertificateSourceType | *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". + +--- + ##### `ResetBrandId` ```csharp diff --git a/docs/domain.go.md b/docs/domain.go.md index 763b1daee..64f3ed354 100644 --- a/docs/domain.go.md +++ b/docs/domain.go.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | GetNumberMapAttribute | *No description.* | | GetStringAttribute | *No description.* | | GetStringMapAttribute | *No description.* | +| HasResourceMove | *No description.* | | ImportFrom | *No description.* | | InterpolationForAttribute | *No description.* | +| MoveFromId | Move the resource corresponding to "id" to this resource. | | MoveTo | Moves this resource to the target resource given by moveTarget. | +| MoveToId | Moves this resource to the resource corresponding to "id". | | ResetBrandId | *No description.* | | ResetCertificateSourceType | *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". + +--- + ##### `ResetBrandId` ```go diff --git a/docs/domain.java.md b/docs/domain.java.md index c02c0243b..17ac3f6f2 100644 --- a/docs/domain.java.md +++ b/docs/domain.java.md @@ -171,9 +171,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". | | resetBrandId | *No description.* | | resetCertificateSourceType | *No description.* | | resetId | *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". + +--- + ##### `resetBrandId` ```java diff --git a/docs/domain.python.md b/docs/domain.python.md index 272c489ed..7c5e85ea3 100644 --- a/docs/domain.python.md +++ b/docs/domain.python.md @@ -169,9 +169,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_brand_id | *No description.* | | reset_certificate_source_type | *No description.* | | reset_id | *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_brand_id` ```python diff --git a/docs/domain.typescript.md b/docs/domain.typescript.md index 34263d0fe..4104119dd 100644 --- a/docs/domain.typescript.md +++ b/docs/domain.typescript.md @@ -66,9 +66,12 @@ Must be unique amongst siblings in the same scope | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetBrandId | *No description.* | | resetCertificateSourceType | *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". + +--- + ##### `resetBrandId` ```typescript diff --git a/docs/domainCertificate.csharp.md b/docs/domainCertificate.csharp.md index ee2cbc378..baca2700b 100644 --- a/docs/domainCertificate.csharp.md +++ b/docs/domainCertificate.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/domainCertificate.go.md b/docs/domainCertificate.go.md index facccf8be..fbda3192b 100644 --- a/docs/domainCertificate.go.md +++ b/docs/domainCertificate.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/domainCertificate.java.md b/docs/domainCertificate.java.md index 363eb10c7..9d7bfb300 100644 --- a/docs/domainCertificate.java.md +++ b/docs/domainCertificate.java.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | @@ -389,6 +392,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -420,6 +429,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -445,6 +472,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetId` ```java diff --git a/docs/domainCertificate.python.md b/docs/domainCertificate.python.md index 3496bff2a..8a09bb470 100644 --- a/docs/domainCertificate.python.md +++ b/docs/domainCertificate.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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.* | @@ -412,6 +415,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -447,6 +456,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -474,6 +503,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/domainCertificate.typescript.md b/docs/domainCertificate.typescript.md index dc425e1ce..2fab74aeb 100644 --- a/docs/domainCertificate.typescript.md +++ b/docs/domainCertificate.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/domainVerification.csharp.md b/docs/domainVerification.csharp.md index 3e50aab5f..623bf6036 100644 --- a/docs/domainVerification.csharp.md +++ b/docs/domainVerification.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/domainVerification.go.md b/docs/domainVerification.go.md index 9fd37c78c..c3191f28d 100644 --- a/docs/domainVerification.go.md +++ b/docs/domainVerification.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/domainVerification.java.md b/docs/domainVerification.java.md index 3e836ed09..2a1a63bf9 100644 --- a/docs/domainVerification.java.md +++ b/docs/domainVerification.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/domainVerification.python.md b/docs/domainVerification.python.md index 1069aad6b..e4d3fb0f1 100644 --- a/docs/domainVerification.python.md +++ b/docs/domainVerification.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/domainVerification.typescript.md b/docs/domainVerification.typescript.md index 7c3740a3c..4f5755f3f 100644 --- a/docs/domainVerification.typescript.md +++ b/docs/domainVerification.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/emailCustomization.csharp.md b/docs/emailCustomization.csharp.md index 15f624ab4..d4698f4c1 100644 --- a/docs/emailCustomization.csharp.md +++ b/docs/emailCustomization.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". | | ResetBody | *No description.* | | ResetForceIsDefault | *No description.* | | ResetIsDefault | *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". + +--- + ##### `ResetBody` ```csharp diff --git a/docs/emailCustomization.go.md b/docs/emailCustomization.go.md index 5a465dc4c..c347e8554 100644 --- a/docs/emailCustomization.go.md +++ b/docs/emailCustomization.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". | | ResetBody | *No description.* | | ResetForceIsDefault | *No description.* | | ResetIsDefault | *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". + +--- + ##### `ResetBody` ```go diff --git a/docs/emailCustomization.java.md b/docs/emailCustomization.java.md index 23ba64222..f4b74a145 100644 --- a/docs/emailCustomization.java.md +++ b/docs/emailCustomization.java.md @@ -207,9 +207,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetBody | *No description.* | | resetForceIsDefault | *No description.* | | resetIsDefault | *No description.* | @@ -406,6 +409,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -437,6 +446,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 @@ -462,6 +489,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". + +--- + ##### `resetBody` ```java diff --git a/docs/emailCustomization.python.md b/docs/emailCustomization.python.md index 4de329d79..4aa734f08 100644 --- a/docs/emailCustomization.python.md +++ b/docs/emailCustomization.python.md @@ -204,9 +204,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_body | *No description.* | | reset_force_is_default | *No description.* | | reset_is_default | *No description.* | @@ -428,6 +431,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -463,6 +472,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -490,6 +519,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_body` ```python diff --git a/docs/emailCustomization.typescript.md b/docs/emailCustomization.typescript.md index 792ebf618..82b0cb450 100644 --- a/docs/emailCustomization.typescript.md +++ b/docs/emailCustomization.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". | | resetBody | *No description.* | | resetForceIsDefault | *No description.* | | resetIsDefault | *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". + +--- + ##### `resetBody` ```typescript diff --git a/docs/emailDomain.csharp.md b/docs/emailDomain.csharp.md index b9ecb8343..210946246 100644 --- a/docs/emailDomain.csharp.md +++ b/docs/emailDomain.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/emailDomain.go.md b/docs/emailDomain.go.md index 1338e5ee3..8ddafa265 100644 --- a/docs/emailDomain.go.md +++ b/docs/emailDomain.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/emailDomain.java.md b/docs/emailDomain.java.md index c3b4062e5..b06b2ac6b 100644 --- a/docs/emailDomain.java.md +++ b/docs/emailDomain.java.md @@ -181,9 +181,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.* | --- @@ -376,6 +379,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -407,6 +416,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 @@ -432,6 +459,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/emailDomain.python.md b/docs/emailDomain.python.md index 28d9b5204..6b2acec24 100644 --- a/docs/emailDomain.python.md +++ b/docs/emailDomain.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_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". + +--- + ##### `reset_id` ```python diff --git a/docs/emailDomain.typescript.md b/docs/emailDomain.typescript.md index 356a9f0c8..9332e86ef 100644 --- a/docs/emailDomain.typescript.md +++ b/docs/emailDomain.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/emailDomainVerification.csharp.md b/docs/emailDomainVerification.csharp.md index ef4454d19..933341361 100644 --- a/docs/emailDomainVerification.csharp.md +++ b/docs/emailDomainVerification.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/emailDomainVerification.go.md b/docs/emailDomainVerification.go.md index 073edb49c..c88063a09 100644 --- a/docs/emailDomainVerification.go.md +++ b/docs/emailDomainVerification.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/emailDomainVerification.java.md b/docs/emailDomainVerification.java.md index acefea1f3..1f4a708f6 100644 --- a/docs/emailDomainVerification.java.md +++ b/docs/emailDomainVerification.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/emailDomainVerification.python.md b/docs/emailDomainVerification.python.md index b9f78ff27..079097cdd 100644 --- a/docs/emailDomainVerification.python.md +++ b/docs/emailDomainVerification.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/emailDomainVerification.typescript.md b/docs/emailDomainVerification.typescript.md index 49b9ae2ce..6a187ea09 100644 --- a/docs/emailDomainVerification.typescript.md +++ b/docs/emailDomainVerification.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/emailSender.csharp.md b/docs/emailSender.csharp.md index 8bda5f14a..1fe9f1813 100644 --- a/docs/emailSender.csharp.md +++ b/docs/emailSender.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/emailSender.go.md b/docs/emailSender.go.md index 4b74db7ed..aa5a45394 100644 --- a/docs/emailSender.go.md +++ b/docs/emailSender.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/emailSender.java.md b/docs/emailSender.java.md index a900c5baa..b66705e63 100644 --- a/docs/emailSender.java.md +++ b/docs/emailSender.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/emailSender.python.md b/docs/emailSender.python.md index 0232677fa..2dc7efac9 100644 --- a/docs/emailSender.python.md +++ b/docs/emailSender.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/emailSender.typescript.md b/docs/emailSender.typescript.md index 7c75b776e..d26d99af0 100644 --- a/docs/emailSender.typescript.md +++ b/docs/emailSender.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/emailSenderVerification.csharp.md b/docs/emailSenderVerification.csharp.md index c8a57de9f..820987cba 100644 --- a/docs/emailSenderVerification.csharp.md +++ b/docs/emailSenderVerification.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/emailSenderVerification.go.md b/docs/emailSenderVerification.go.md index a71638475..a2d4dbf91 100644 --- a/docs/emailSenderVerification.go.md +++ b/docs/emailSenderVerification.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/emailSenderVerification.java.md b/docs/emailSenderVerification.java.md index 0cf7c9fcc..794d8d4a1 100644 --- a/docs/emailSenderVerification.java.md +++ b/docs/emailSenderVerification.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/emailSenderVerification.python.md b/docs/emailSenderVerification.python.md index 5ddb5c79a..40fa8b69a 100644 --- a/docs/emailSenderVerification.python.md +++ b/docs/emailSenderVerification.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/emailSenderVerification.typescript.md b/docs/emailSenderVerification.typescript.md index 1814af3f2..c4d80283c 100644 --- a/docs/emailSenderVerification.typescript.md +++ b/docs/emailSenderVerification.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/eventHook.csharp.md b/docs/eventHook.csharp.md index 763652f30..f84872f9c 100644 --- a/docs/eventHook.csharp.md +++ b/docs/eventHook.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". | | PutHeaders | *No description.* | | ResetAuth | *No description.* | | ResetHeaders | *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". + +--- + ##### `PutHeaders` ```csharp diff --git a/docs/eventHook.go.md b/docs/eventHook.go.md index 7ca868678..26a2441b1 100644 --- a/docs/eventHook.go.md +++ b/docs/eventHook.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". | | PutHeaders | *No description.* | | ResetAuth | *No description.* | | ResetHeaders | *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". + +--- + ##### `PutHeaders` ```go diff --git a/docs/eventHook.java.md b/docs/eventHook.java.md index d5a9b06c1..329ded04d 100644 --- a/docs/eventHook.java.md +++ b/docs/eventHook.java.md @@ -204,9 +204,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putHeaders | *No description.* | | resetAuth | *No description.* | | resetHeaders | *No description.* | @@ -403,6 +406,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -434,6 +443,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 @@ -459,6 +486,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". + +--- + ##### `putHeaders` ```java diff --git a/docs/eventHook.python.md b/docs/eventHook.python.md index 8029c94e3..925202186 100644 --- a/docs/eventHook.python.md +++ b/docs/eventHook.python.md @@ -201,9 +201,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_headers | *No description.* | | reset_auth | *No description.* | | reset_headers | *No description.* | @@ -425,6 +428,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -460,6 +469,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 @@ -487,6 +516,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_headers` ```python diff --git a/docs/eventHook.typescript.md b/docs/eventHook.typescript.md index 3d7b50434..2d4738f14 100644 --- a/docs/eventHook.typescript.md +++ b/docs/eventHook.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". | | putHeaders | *No description.* | | resetAuth | *No description.* | | resetHeaders | *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". + +--- + ##### `putHeaders` ```typescript diff --git a/docs/eventHookVerification.csharp.md b/docs/eventHookVerification.csharp.md index d7974138c..243587ed4 100644 --- a/docs/eventHookVerification.csharp.md +++ b/docs/eventHookVerification.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/eventHookVerification.go.md b/docs/eventHookVerification.go.md index 0f0f184d5..a68a7fde3 100644 --- a/docs/eventHookVerification.go.md +++ b/docs/eventHookVerification.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/eventHookVerification.java.md b/docs/eventHookVerification.java.md index 2f1c11a32..bdbe6c3ed 100644 --- a/docs/eventHookVerification.java.md +++ b/docs/eventHookVerification.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/eventHookVerification.python.md b/docs/eventHookVerification.python.md index eb06c0469..0b0b24378 100644 --- a/docs/eventHookVerification.python.md +++ b/docs/eventHookVerification.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/eventHookVerification.typescript.md b/docs/eventHookVerification.typescript.md index 644a41113..fb69fa464 100644 --- a/docs/eventHookVerification.typescript.md +++ b/docs/eventHookVerification.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/factor.csharp.md b/docs/factor.csharp.md index 86a090d81..360dc2152 100644 --- a/docs/factor.csharp.md +++ b/docs/factor.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". | | ResetActive | *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". + +--- + ##### `ResetActive` ```csharp diff --git a/docs/factor.go.md b/docs/factor.go.md index 13ad84800..2a23f64eb 100644 --- a/docs/factor.go.md +++ b/docs/factor.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". | | ResetActive | *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". + +--- + ##### `ResetActive` ```go diff --git a/docs/factor.java.md b/docs/factor.java.md index b8ffc56ea..64c1ababc 100644 --- a/docs/factor.java.md +++ b/docs/factor.java.md @@ -158,9 +158,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". | | resetActive | *No description.* | | 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". + +--- + ##### `resetActive` ```java diff --git a/docs/factor.python.md b/docs/factor.python.md index 91be92a6b..bed91f8cf 100644 --- a/docs/factor.python.md +++ b/docs/factor.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_active | *No description.* | | reset_id | *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_active` ```python diff --git a/docs/factor.typescript.md b/docs/factor.typescript.md index cf6370c57..ff85e1e23 100644 --- a/docs/factor.typescript.md +++ b/docs/factor.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". | | resetActive | *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". + +--- + ##### `resetActive` ```typescript diff --git a/docs/factorTotp.csharp.md b/docs/factorTotp.csharp.md index 50c0cf2f0..153fd4f91 100644 --- a/docs/factorTotp.csharp.md +++ b/docs/factorTotp.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". | | ResetClockDriftInterval | *No description.* | | ResetHmacAlgorithm | *No description.* | | ResetId | *No description.* | @@ -266,6 +269,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -296,6 +305,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetClockDriftInterval` ```csharp diff --git a/docs/factorTotp.go.md b/docs/factorTotp.go.md index 7e8f41796..b8b823991 100644 --- a/docs/factorTotp.go.md +++ b/docs/factorTotp.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". | | ResetClockDriftInterval | *No description.* | | ResetHmacAlgorithm | *No description.* | | ResetId | *No description.* | @@ -266,6 +269,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -296,6 +305,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetClockDriftInterval` ```go diff --git a/docs/factorTotp.java.md b/docs/factorTotp.java.md index 783a492cd..ddc1d47c2 100644 --- a/docs/factorTotp.java.md +++ b/docs/factorTotp.java.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetClockDriftInterval | *No description.* | | resetHmacAlgorithm | *No description.* | | resetId | *No description.* | @@ -405,6 +408,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -436,6 +445,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -461,6 +488,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetClockDriftInterval` ```java diff --git a/docs/factorTotp.python.md b/docs/factorTotp.python.md index 2db59d718..e0fe6394d 100644 --- a/docs/factorTotp.python.md +++ b/docs/factorTotp.python.md @@ -203,9 +203,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_clock_drift_interval | *No description.* | | reset_hmac_algorithm | *No description.* | | reset_id | *No description.* | @@ -428,6 +431,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -463,6 +472,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -490,6 +519,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_clock_drift_interval` ```python diff --git a/docs/factorTotp.typescript.md b/docs/factorTotp.typescript.md index 6b13c2c65..012c01ffc 100644 --- a/docs/factorTotp.typescript.md +++ b/docs/factorTotp.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". | | resetClockDriftInterval | *No description.* | | resetHmacAlgorithm | *No description.* | | resetId | *No description.* | @@ -266,6 +269,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -296,6 +305,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -320,6 +347,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetClockDriftInterval` ```typescript diff --git a/docs/group.csharp.md b/docs/group.csharp.md index 4f2109920..1eda03da3 100644 --- a/docs/group.csharp.md +++ b/docs/group.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". | | ResetCustomProfileAttributes | *No description.* | | ResetDescription | *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". + +--- + ##### `ResetCustomProfileAttributes` ```csharp diff --git a/docs/group.go.md b/docs/group.go.md index b92da2998..f2939fedc 100644 --- a/docs/group.go.md +++ b/docs/group.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". | | ResetCustomProfileAttributes | *No description.* | | ResetDescription | *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". + +--- + ##### `ResetCustomProfileAttributes` ```go diff --git a/docs/group.java.md b/docs/group.java.md index c99a51f45..201b65bf0 100644 --- a/docs/group.java.md +++ b/docs/group.java.md @@ -182,9 +182,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCustomProfileAttributes | *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". + +--- + ##### `resetCustomProfileAttributes` ```java diff --git a/docs/group.python.md b/docs/group.python.md index ef9af90ff..40f2f4de6 100644 --- a/docs/group.python.md +++ b/docs/group.python.md @@ -179,9 +179,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_profile_attributes | *No description.* | | reset_description | *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_profile_attributes` ```python diff --git a/docs/group.typescript.md b/docs/group.typescript.md index cae8c382f..e5231e3ae 100644 --- a/docs/group.typescript.md +++ b/docs/group.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". | | resetCustomProfileAttributes | *No description.* | | resetDescription | *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". + +--- + ##### `resetCustomProfileAttributes` ```typescript diff --git a/docs/groupMemberships.csharp.md b/docs/groupMemberships.csharp.md index 38e534cb2..30e9b9e97 100644 --- a/docs/groupMemberships.csharp.md +++ b/docs/groupMemberships.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.* | | ResetTrackAllUsers | *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/groupMemberships.go.md b/docs/groupMemberships.go.md index ffff02b18..f8094a496 100644 --- a/docs/groupMemberships.go.md +++ b/docs/groupMemberships.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.* | | ResetTrackAllUsers | *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/groupMemberships.java.md b/docs/groupMemberships.java.md index b573e2d3a..562ada22f 100644 --- a/docs/groupMemberships.java.md +++ b/docs/groupMemberships.java.md @@ -170,9 +170,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetTrackAllUsers | *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". + +--- + ##### `resetId` ```java diff --git a/docs/groupMemberships.python.md b/docs/groupMemberships.python.md index b073ff936..40011909d 100644 --- a/docs/groupMemberships.python.md +++ b/docs/groupMemberships.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_track_all_users | *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_id` ```python diff --git a/docs/groupMemberships.typescript.md b/docs/groupMemberships.typescript.md index 73bed98ee..38ece0570 100644 --- a/docs/groupMemberships.typescript.md +++ b/docs/groupMemberships.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.* | | resetTrackAllUsers | *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/groupRole.csharp.md b/docs/groupRole.csharp.md index 975e46fc2..687482abf 100644 --- a/docs/groupRole.csharp.md +++ b/docs/groupRole.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". | | ResetDisableNotifications | *No description.* | | ResetId | *No description.* | | ResetTargetAppList | *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". + +--- + ##### `ResetDisableNotifications` ```csharp diff --git a/docs/groupRole.go.md b/docs/groupRole.go.md index 5af59f4f8..9ba048870 100644 --- a/docs/groupRole.go.md +++ b/docs/groupRole.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". | | ResetDisableNotifications | *No description.* | | ResetId | *No description.* | | ResetTargetAppList | *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". + +--- + ##### `ResetDisableNotifications` ```go diff --git a/docs/groupRole.java.md b/docs/groupRole.java.md index 9f06293a1..9482a6250 100644 --- a/docs/groupRole.java.md +++ b/docs/groupRole.java.md @@ -194,9 +194,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDisableNotifications | *No description.* | | resetId | *No description.* | | resetTargetAppList | *No description.* | @@ -392,6 +395,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -423,6 +432,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -448,6 +475,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDisableNotifications` ```java diff --git a/docs/groupRole.python.md b/docs/groupRole.python.md index 4a7a5f9ab..2cc777048 100644 --- a/docs/groupRole.python.md +++ b/docs/groupRole.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_disable_notifications | *No description.* | | reset_id | *No description.* | | reset_target_app_list | *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_disable_notifications` ```python diff --git a/docs/groupRole.typescript.md b/docs/groupRole.typescript.md index ab4fd6a83..2372b00b2 100644 --- a/docs/groupRole.typescript.md +++ b/docs/groupRole.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". | | resetDisableNotifications | *No description.* | | resetId | *No description.* | | resetTargetAppList | *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". + +--- + ##### `resetDisableNotifications` ```typescript diff --git a/docs/groupRule.csharp.md b/docs/groupRule.csharp.md index 2d468904e..b41d4a177 100644 --- a/docs/groupRule.csharp.md +++ b/docs/groupRule.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". | | ResetExpressionType | *No description.* | | ResetId | *No description.* | | ResetRemoveAssignedUsers | *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". + +--- + ##### `ResetExpressionType` ```csharp diff --git a/docs/groupRule.go.md b/docs/groupRule.go.md index cf888806f..587a7f5f1 100644 --- a/docs/groupRule.go.md +++ b/docs/groupRule.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". | | ResetExpressionType | *No description.* | | ResetId | *No description.* | | ResetRemoveAssignedUsers | *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". + +--- + ##### `ResetExpressionType` ```go diff --git a/docs/groupRule.java.md b/docs/groupRule.java.md index 0bddcb09c..c517fc6c1 100644 --- a/docs/groupRule.java.md +++ b/docs/groupRule.java.md @@ -208,9 +208,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetExpressionType | *No description.* | | resetId | *No description.* | | resetRemoveAssignedUsers | *No description.* | @@ -407,6 +410,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -438,6 +447,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -463,6 +490,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetExpressionType` ```java diff --git a/docs/groupRule.python.md b/docs/groupRule.python.md index 3b1dc617e..c5ec15b1b 100644 --- a/docs/groupRule.python.md +++ b/docs/groupRule.python.md @@ -205,9 +205,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_expression_type | *No description.* | | reset_id | *No description.* | | reset_remove_assigned_users | *No description.* | @@ -429,6 +432,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -464,6 +473,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -491,6 +520,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_expression_type` ```python diff --git a/docs/groupRule.typescript.md b/docs/groupRule.typescript.md index aebd9b51b..d133fac6b 100644 --- a/docs/groupRule.typescript.md +++ b/docs/groupRule.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". | | resetExpressionType | *No description.* | | resetId | *No description.* | | resetRemoveAssignedUsers | *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". + +--- + ##### `resetExpressionType` ```typescript diff --git a/docs/groupSchemaProperty.csharp.md b/docs/groupSchemaProperty.csharp.md index d42a705df..5388061b6 100644 --- a/docs/groupSchemaProperty.csharp.md +++ b/docs/groupSchemaProperty.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". | | PutArrayOneOf | *No description.* | | PutMasterOverridePriority | *No description.* | | PutOneOf | *No description.* | @@ -280,6 +283,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -310,6 +319,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 @@ -334,6 +361,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". + +--- + ##### `PutArrayOneOf` ```csharp diff --git a/docs/groupSchemaProperty.go.md b/docs/groupSchemaProperty.go.md index 7cbbd548c..67bc4f7f8 100644 --- a/docs/groupSchemaProperty.go.md +++ b/docs/groupSchemaProperty.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". | | PutArrayOneOf | *No description.* | | PutMasterOverridePriority | *No description.* | | PutOneOf | *No description.* | @@ -280,6 +283,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -310,6 +319,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 @@ -334,6 +361,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". + +--- + ##### `PutArrayOneOf` ```go diff --git a/docs/groupSchemaProperty.java.md b/docs/groupSchemaProperty.java.md index 68f68c96d..5a5e0464f 100644 --- a/docs/groupSchemaProperty.java.md +++ b/docs/groupSchemaProperty.java.md @@ -363,9 +363,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putArrayOneOf | *No description.* | | putMasterOverridePriority | *No description.* | | putOneOf | *No description.* | @@ -577,6 +580,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -608,6 +617,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 @@ -633,6 +660,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". + +--- + ##### `putArrayOneOf` ```java diff --git a/docs/groupSchemaProperty.python.md b/docs/groupSchemaProperty.python.md index a8645810f..c250825b9 100644 --- a/docs/groupSchemaProperty.python.md +++ b/docs/groupSchemaProperty.python.md @@ -357,9 +357,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_array_one_of | *No description.* | | put_master_override_priority | *No description.* | | put_one_of | *No description.* | @@ -596,6 +599,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -631,6 +640,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 @@ -658,6 +687,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_array_one_of` ```python diff --git a/docs/groupSchemaProperty.typescript.md b/docs/groupSchemaProperty.typescript.md index 40e9045fe..241f1d930 100644 --- a/docs/groupSchemaProperty.typescript.md +++ b/docs/groupSchemaProperty.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". | | putArrayOneOf | *No description.* | | putMasterOverridePriority | *No description.* | | putOneOf | *No description.* | @@ -280,6 +283,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -310,6 +319,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 @@ -334,6 +361,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". + +--- + ##### `putArrayOneOf` ```typescript diff --git a/docs/idpOidc.csharp.md b/docs/idpOidc.csharp.md index cc8aeaf40..080be65fe 100644 --- a/docs/idpOidc.csharp.md +++ b/docs/idpOidc.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". | | ResetAccountLinkAction | *No description.* | | ResetAccountLinkGroupInclude | *No description.* | | ResetDeprovisionedAction | *No description.* | @@ -282,6 +285,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -312,6 +321,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAccountLinkAction` ```csharp diff --git a/docs/idpOidc.go.md b/docs/idpOidc.go.md index b47a545c6..bccc39148 100644 --- a/docs/idpOidc.go.md +++ b/docs/idpOidc.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". | | ResetAccountLinkAction | *No description.* | | ResetAccountLinkGroupInclude | *No description.* | | ResetDeprovisionedAction | *No description.* | @@ -282,6 +285,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -312,6 +321,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `ResetAccountLinkAction` ```go diff --git a/docs/idpOidc.java.md b/docs/idpOidc.java.md index 9b125fb62..ead9c70eb 100644 --- a/docs/idpOidc.java.md +++ b/docs/idpOidc.java.md @@ -464,9 +464,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAccountLinkAction | *No description.* | | resetAccountLinkGroupInclude | *No description.* | | resetDeprovisionedAction | *No description.* | @@ -680,6 +683,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -711,6 +720,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 @@ -736,6 +763,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". + +--- + ##### `resetAccountLinkAction` ```java diff --git a/docs/idpOidc.python.md b/docs/idpOidc.python.md index ec1cc3c9f..933302e94 100644 --- a/docs/idpOidc.python.md +++ b/docs/idpOidc.python.md @@ -461,9 +461,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_link_action | *No description.* | | reset_account_link_group_include | *No description.* | | reset_deprovisioned_action | *No description.* | @@ -702,6 +705,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -737,6 +746,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 @@ -764,6 +793,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_link_action` ```python diff --git a/docs/idpOidc.typescript.md b/docs/idpOidc.typescript.md index f69c470e4..f43e03655 100644 --- a/docs/idpOidc.typescript.md +++ b/docs/idpOidc.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". | | resetAccountLinkAction | *No description.* | | resetAccountLinkGroupInclude | *No description.* | | resetDeprovisionedAction | *No description.* | @@ -282,6 +285,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -312,6 +321,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetAccountLinkAction` ```typescript diff --git a/docs/idpSaml.csharp.md b/docs/idpSaml.csharp.md index 0baf58879..9d7d00beb 100644 --- a/docs/idpSaml.csharp.md +++ b/docs/idpSaml.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". | | ResetAccountLinkAction | *No description.* | | ResetAccountLinkGroupInclude | *No description.* | | ResetAcsType | *No description.* | @@ -287,6 +290,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -317,6 +326,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 @@ -341,6 +368,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". + +--- + ##### `ResetAccountLinkAction` ```csharp diff --git a/docs/idpSaml.go.md b/docs/idpSaml.go.md index 4e1ba5385..dd14a76d5 100644 --- a/docs/idpSaml.go.md +++ b/docs/idpSaml.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". | | ResetAccountLinkAction | *No description.* | | ResetAccountLinkGroupInclude | *No description.* | | ResetAcsType | *No description.* | @@ -287,6 +290,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -317,6 +326,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 @@ -341,6 +368,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". + +--- + ##### `ResetAccountLinkAction` ```go diff --git a/docs/idpSaml.java.md b/docs/idpSaml.java.md index c498afc6b..c8ddf9b22 100644 --- a/docs/idpSaml.java.md +++ b/docs/idpSaml.java.md @@ -446,9 +446,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAccountLinkAction | *No description.* | | resetAccountLinkGroupInclude | *No description.* | | resetAcsType | *No description.* | @@ -667,6 +670,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -698,6 +707,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 @@ -723,6 +750,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". + +--- + ##### `resetAccountLinkAction` ```java diff --git a/docs/idpSaml.python.md b/docs/idpSaml.python.md index 6477adb2c..bf6c04907 100644 --- a/docs/idpSaml.python.md +++ b/docs/idpSaml.python.md @@ -443,9 +443,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_link_action | *No description.* | | reset_account_link_group_include | *No description.* | | reset_acs_type | *No description.* | @@ -689,6 +692,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -724,6 +733,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 @@ -751,6 +780,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_link_action` ```python diff --git a/docs/idpSaml.typescript.md b/docs/idpSaml.typescript.md index f52ef9c3a..f4fa4b75d 100644 --- a/docs/idpSaml.typescript.md +++ b/docs/idpSaml.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". | | resetAccountLinkAction | *No description.* | | resetAccountLinkGroupInclude | *No description.* | | resetAcsType | *No description.* | @@ -287,6 +290,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -317,6 +326,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 @@ -341,6 +368,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". + +--- + ##### `resetAccountLinkAction` ```typescript diff --git a/docs/idpSamlKey.csharp.md b/docs/idpSamlKey.csharp.md index 96197942d..f01cb36ce 100644 --- a/docs/idpSamlKey.csharp.md +++ b/docs/idpSamlKey.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/idpSamlKey.go.md b/docs/idpSamlKey.go.md index 25b44ffd3..2b30f0702 100644 --- a/docs/idpSamlKey.go.md +++ b/docs/idpSamlKey.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/idpSamlKey.java.md b/docs/idpSamlKey.java.md index 679641730..5a9516314 100644 --- a/docs/idpSamlKey.java.md +++ b/docs/idpSamlKey.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/idpSamlKey.python.md b/docs/idpSamlKey.python.md index 54734228a..db770033e 100644 --- a/docs/idpSamlKey.python.md +++ b/docs/idpSamlKey.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/idpSamlKey.typescript.md b/docs/idpSamlKey.typescript.md index 4dacce36a..d6d278c5d 100644 --- a/docs/idpSamlKey.typescript.md +++ b/docs/idpSamlKey.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/idpSocial.csharp.md b/docs/idpSocial.csharp.md index 920f93e5b..0632b3543 100644 --- a/docs/idpSocial.csharp.md +++ b/docs/idpSocial.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". | | ResetAccountLinkAction | *No description.* | | ResetAccountLinkGroupInclude | *No description.* | | ResetAppleKid | *No description.* | @@ -283,6 +286,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -313,6 +322,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 @@ -337,6 +364,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". + +--- + ##### `ResetAccountLinkAction` ```csharp diff --git a/docs/idpSocial.go.md b/docs/idpSocial.go.md index 099427f2b..52ad77f1c 100644 --- a/docs/idpSocial.go.md +++ b/docs/idpSocial.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". | | ResetAccountLinkAction | *No description.* | | ResetAccountLinkGroupInclude | *No description.* | | ResetAppleKid | *No description.* | @@ -283,6 +286,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -313,6 +322,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 @@ -337,6 +364,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". + +--- + ##### `ResetAccountLinkAction` ```go diff --git a/docs/idpSocial.java.md b/docs/idpSocial.java.md index 25a703003..b205aeaf8 100644 --- a/docs/idpSocial.java.md +++ b/docs/idpSocial.java.md @@ -396,9 +396,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAccountLinkAction | *No description.* | | resetAccountLinkGroupInclude | *No description.* | | resetAppleKid | *No description.* | @@ -613,6 +616,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -644,6 +653,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 @@ -669,6 +696,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". + +--- + ##### `resetAccountLinkAction` ```java diff --git a/docs/idpSocial.python.md b/docs/idpSocial.python.md index 9a13ddb8f..d56a95b78 100644 --- a/docs/idpSocial.python.md +++ b/docs/idpSocial.python.md @@ -393,9 +393,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_link_action | *No description.* | | reset_account_link_group_include | *No description.* | | reset_apple_kid | *No description.* | @@ -635,6 +638,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -670,6 +679,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 @@ -697,6 +726,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_link_action` ```python diff --git a/docs/idpSocial.typescript.md b/docs/idpSocial.typescript.md index 54e927317..f69f61ad2 100644 --- a/docs/idpSocial.typescript.md +++ b/docs/idpSocial.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". | | resetAccountLinkAction | *No description.* | | resetAccountLinkGroupInclude | *No description.* | | resetAppleKid | *No description.* | @@ -283,6 +286,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -313,6 +322,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 @@ -337,6 +364,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". + +--- + ##### `resetAccountLinkAction` ```typescript diff --git a/docs/inlineHook.csharp.md b/docs/inlineHook.csharp.md index 2f680012c..cab613eb8 100644 --- a/docs/inlineHook.csharp.md +++ b/docs/inlineHook.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". | | PutHeaders | *No description.* | | ResetAuth | *No description.* | | ResetHeaders | *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". + +--- + ##### `PutHeaders` ```csharp diff --git a/docs/inlineHook.go.md b/docs/inlineHook.go.md index ae84f27a8..1cc5b13d3 100644 --- a/docs/inlineHook.go.md +++ b/docs/inlineHook.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". | | PutHeaders | *No description.* | | ResetAuth | *No description.* | | ResetHeaders | *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". + +--- + ##### `PutHeaders` ```go diff --git a/docs/inlineHook.java.md b/docs/inlineHook.java.md index 79b1dcb81..1164c75d9 100644 --- a/docs/inlineHook.java.md +++ b/docs/inlineHook.java.md @@ -206,9 +206,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putHeaders | *No description.* | | resetAuth | *No description.* | | resetHeaders | *No description.* | @@ -405,6 +408,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -436,6 +445,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -461,6 +488,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putHeaders` ```java diff --git a/docs/inlineHook.python.md b/docs/inlineHook.python.md index 82ead47d9..a10a6d486 100644 --- a/docs/inlineHook.python.md +++ b/docs/inlineHook.python.md @@ -203,9 +203,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_headers | *No description.* | | reset_auth | *No description.* | | reset_headers | *No description.* | @@ -427,6 +430,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -462,6 +471,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 @@ -489,6 +518,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_headers` ```python diff --git a/docs/inlineHook.typescript.md b/docs/inlineHook.typescript.md index 419485a2b..7eb21624a 100644 --- a/docs/inlineHook.typescript.md +++ b/docs/inlineHook.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". | | putHeaders | *No description.* | | resetAuth | *No description.* | | resetHeaders | *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". + +--- + ##### `putHeaders` ```typescript diff --git a/docs/linkDefinition.csharp.md b/docs/linkDefinition.csharp.md index 84157fd85..0322b89fd 100644 --- a/docs/linkDefinition.csharp.md +++ b/docs/linkDefinition.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/linkDefinition.go.md b/docs/linkDefinition.go.md index 3bc162304..30639aa45 100644 --- a/docs/linkDefinition.go.md +++ b/docs/linkDefinition.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/linkDefinition.java.md b/docs/linkDefinition.java.md index df76c8496..47cdd8252 100644 --- a/docs/linkDefinition.java.md +++ b/docs/linkDefinition.java.md @@ -205,9 +205,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.* | --- @@ -400,6 +403,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -431,6 +440,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 @@ -456,6 +483,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/linkDefinition.python.md b/docs/linkDefinition.python.md index b6f8b65e5..be5cb509d 100644 --- a/docs/linkDefinition.python.md +++ b/docs/linkDefinition.python.md @@ -203,9 +203,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.* | --- @@ -423,6 +426,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -458,6 +467,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 @@ -485,6 +514,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/linkDefinition.typescript.md b/docs/linkDefinition.typescript.md index 5b0244076..2c8a8ead6 100644 --- a/docs/linkDefinition.typescript.md +++ b/docs/linkDefinition.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/linkValue.csharp.md b/docs/linkValue.csharp.md index 52cf67213..86f15ea43 100644 --- a/docs/linkValue.csharp.md +++ b/docs/linkValue.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". | | ResetAssociatedUserIds | *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". + +--- + ##### `ResetAssociatedUserIds` ```csharp diff --git a/docs/linkValue.go.md b/docs/linkValue.go.md index 935601cda..58553ae6a 100644 --- a/docs/linkValue.go.md +++ b/docs/linkValue.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". | | ResetAssociatedUserIds | *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". + +--- + ##### `ResetAssociatedUserIds` ```go diff --git a/docs/linkValue.java.md b/docs/linkValue.java.md index 30486236f..20fddcb79 100644 --- a/docs/linkValue.java.md +++ b/docs/linkValue.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". | | resetAssociatedUserIds | *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". + +--- + ##### `resetAssociatedUserIds` ```java diff --git a/docs/linkValue.python.md b/docs/linkValue.python.md index 6e2c07f2e..397979afa 100644 --- a/docs/linkValue.python.md +++ b/docs/linkValue.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_associated_user_ids | *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". + +--- + ##### `reset_associated_user_ids` ```python diff --git a/docs/linkValue.typescript.md b/docs/linkValue.typescript.md index 4b5b096e6..1b1c25c75 100644 --- a/docs/linkValue.typescript.md +++ b/docs/linkValue.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". | | resetAssociatedUserIds | *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". + +--- + ##### `resetAssociatedUserIds` ```typescript diff --git a/docs/networkZone.csharp.md b/docs/networkZone.csharp.md index 3f3383103..717604ef2 100644 --- a/docs/networkZone.csharp.md +++ b/docs/networkZone.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". | | ResetAsns | *No description.* | | ResetDynamicLocations | *No description.* | | ResetDynamicProxyType | *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". + +--- + ##### `ResetAsns` ```csharp diff --git a/docs/networkZone.go.md b/docs/networkZone.go.md index 60d8caaa0..308c372e1 100644 --- a/docs/networkZone.go.md +++ b/docs/networkZone.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". | | ResetAsns | *No description.* | | ResetDynamicLocations | *No description.* | | ResetDynamicProxyType | *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". + +--- + ##### `ResetAsns` ```go diff --git a/docs/networkZone.java.md b/docs/networkZone.java.md index 42e6d7c72..a69cc8bb7 100644 --- a/docs/networkZone.java.md +++ b/docs/networkZone.java.md @@ -241,9 +241,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAsns | *No description.* | | resetDynamicLocations | *No description.* | | resetDynamicProxyType | *No description.* | @@ -443,6 +446,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -474,6 +483,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 @@ -499,6 +526,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". + +--- + ##### `resetAsns` ```java diff --git a/docs/networkZone.python.md b/docs/networkZone.python.md index 685493b21..4b502c6ed 100644 --- a/docs/networkZone.python.md +++ b/docs/networkZone.python.md @@ -239,9 +239,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_asns | *No description.* | | reset_dynamic_locations | *No description.* | | reset_dynamic_proxy_type | *No description.* | @@ -466,6 +469,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -501,6 +510,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 @@ -528,6 +557,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_asns` ```python diff --git a/docs/networkZone.typescript.md b/docs/networkZone.typescript.md index 5f3cffd92..b7a49ef3f 100644 --- a/docs/networkZone.typescript.md +++ b/docs/networkZone.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". | | resetAsns | *No description.* | | resetDynamicLocations | *No description.* | | resetDynamicProxyType | *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". + +--- + ##### `resetAsns` ```typescript diff --git a/docs/orgConfiguration.csharp.md b/docs/orgConfiguration.csharp.md index 50e0bcab6..9b75b34c1 100644 --- a/docs/orgConfiguration.csharp.md +++ b/docs/orgConfiguration.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". | | ResetAddress1 | *No description.* | | ResetAddress2 | *No description.* | | ResetBillingContactUser | *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". + +--- + ##### `ResetAddress1` ```csharp diff --git a/docs/orgConfiguration.go.md b/docs/orgConfiguration.go.md index d040d01f1..b73e6d128 100644 --- a/docs/orgConfiguration.go.md +++ b/docs/orgConfiguration.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". | | ResetAddress1 | *No description.* | | ResetAddress2 | *No description.* | | ResetBillingContactUser | *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". + +--- + ##### `ResetAddress1` ```go diff --git a/docs/orgConfiguration.java.md b/docs/orgConfiguration.java.md index 2177647b6..5aaf618d4 100644 --- a/docs/orgConfiguration.java.md +++ b/docs/orgConfiguration.java.md @@ -314,9 +314,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAddress1 | *No description.* | | resetAddress2 | *No description.* | | resetBillingContactUser | *No description.* | @@ -523,6 +526,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -554,6 +563,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 @@ -579,6 +606,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". + +--- + ##### `resetAddress1` ```java diff --git a/docs/orgConfiguration.python.md b/docs/orgConfiguration.python.md index 0f64c96d5..cc673ebbb 100644 --- a/docs/orgConfiguration.python.md +++ b/docs/orgConfiguration.python.md @@ -311,9 +311,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_address1 | *No description.* | | reset_address2 | *No description.* | | reset_billing_contact_user | *No description.* | @@ -545,6 +548,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -580,6 +589,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 @@ -607,6 +636,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_address1` ```python diff --git a/docs/orgConfiguration.typescript.md b/docs/orgConfiguration.typescript.md index 2eb6582b0..f2dde0e61 100644 --- a/docs/orgConfiguration.typescript.md +++ b/docs/orgConfiguration.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". | | resetAddress1 | *No description.* | | resetAddress2 | *No description.* | | resetBillingContactUser | *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". + +--- + ##### `resetAddress1` ```typescript diff --git a/docs/orgSupport.csharp.md b/docs/orgSupport.csharp.md index 84a536f84..68f9f8bcd 100644 --- a/docs/orgSupport.csharp.md +++ b/docs/orgSupport.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". | | ResetExtendBy | *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". + +--- + ##### `ResetExtendBy` ```csharp diff --git a/docs/orgSupport.go.md b/docs/orgSupport.go.md index adabc1507..a90e792dc 100644 --- a/docs/orgSupport.go.md +++ b/docs/orgSupport.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". | | ResetExtendBy | *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". + +--- + ##### `ResetExtendBy` ```go diff --git a/docs/orgSupport.java.md b/docs/orgSupport.java.md index fb484b557..649e3dc52 100644 --- a/docs/orgSupport.java.md +++ b/docs/orgSupport.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". | | resetExtendBy | *No description.* | | resetId | *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". + +--- + ##### `resetExtendBy` ```java diff --git a/docs/orgSupport.python.md b/docs/orgSupport.python.md index 66b17bd1f..a1e2bcd1a 100644 --- a/docs/orgSupport.python.md +++ b/docs/orgSupport.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_extend_by | *No description.* | | reset_id | *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_extend_by` ```python diff --git a/docs/orgSupport.typescript.md b/docs/orgSupport.typescript.md index 91e4e80ac..c45683a9b 100644 --- a/docs/orgSupport.typescript.md +++ b/docs/orgSupport.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". | | resetExtendBy | *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". + +--- + ##### `resetExtendBy` ```typescript diff --git a/docs/policyDeviceAssuranceAndroid.csharp.md b/docs/policyDeviceAssuranceAndroid.csharp.md index 278e30aaf..7faa2a038 100644 --- a/docs/policyDeviceAssuranceAndroid.csharp.md +++ b/docs/policyDeviceAssuranceAndroid.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". | | ResetDiskEncryptionType | *No description.* | | ResetJailbreak | *No description.* | | ResetOsVersion | *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". + +--- + ##### `ResetDiskEncryptionType` ```csharp diff --git a/docs/policyDeviceAssuranceAndroid.go.md b/docs/policyDeviceAssuranceAndroid.go.md index 3ce3a6d18..1d3761f52 100644 --- a/docs/policyDeviceAssuranceAndroid.go.md +++ b/docs/policyDeviceAssuranceAndroid.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". | | ResetDiskEncryptionType | *No description.* | | ResetJailbreak | *No description.* | | ResetOsVersion | *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". + +--- + ##### `ResetDiskEncryptionType` ```go diff --git a/docs/policyDeviceAssuranceAndroid.java.md b/docs/policyDeviceAssuranceAndroid.java.md index f46cf45fc..fdccabcb2 100644 --- a/docs/policyDeviceAssuranceAndroid.java.md +++ b/docs/policyDeviceAssuranceAndroid.java.md @@ -194,9 +194,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDiskEncryptionType | *No description.* | | resetJailbreak | *No description.* | | resetOsVersion | *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". + +--- + ##### `resetDiskEncryptionType` ```java diff --git a/docs/policyDeviceAssuranceAndroid.python.md b/docs/policyDeviceAssuranceAndroid.python.md index c3d8377a8..b5a9298f4 100644 --- a/docs/policyDeviceAssuranceAndroid.python.md +++ b/docs/policyDeviceAssuranceAndroid.python.md @@ -190,9 +190,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_disk_encryption_type | *No description.* | | reset_jailbreak | *No description.* | | reset_os_version | *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_disk_encryption_type` ```python diff --git a/docs/policyDeviceAssuranceAndroid.typescript.md b/docs/policyDeviceAssuranceAndroid.typescript.md index 7569a410c..922403f0c 100644 --- a/docs/policyDeviceAssuranceAndroid.typescript.md +++ b/docs/policyDeviceAssuranceAndroid.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". | | resetDiskEncryptionType | *No description.* | | resetJailbreak | *No description.* | | resetOsVersion | *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". + +--- + ##### `resetDiskEncryptionType` ```typescript diff --git a/docs/policyDeviceAssuranceChromeos.csharp.md b/docs/policyDeviceAssuranceChromeos.csharp.md index 489a1613c..0aca8c29c 100644 --- a/docs/policyDeviceAssuranceChromeos.csharp.md +++ b/docs/policyDeviceAssuranceChromeos.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". | | ResetTpspAllowScreenLock | *No description.* | | ResetTpspBrowserVersion | *No description.* | | ResetTpspBuiltinDnsClientEnabled | *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". + +--- + ##### `ResetTpspAllowScreenLock` ```csharp diff --git a/docs/policyDeviceAssuranceChromeos.go.md b/docs/policyDeviceAssuranceChromeos.go.md index b23a595d2..3da32cd78 100644 --- a/docs/policyDeviceAssuranceChromeos.go.md +++ b/docs/policyDeviceAssuranceChromeos.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". | | ResetTpspAllowScreenLock | *No description.* | | ResetTpspBrowserVersion | *No description.* | | ResetTpspBuiltinDnsClientEnabled | *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". + +--- + ##### `ResetTpspAllowScreenLock` ```go diff --git a/docs/policyDeviceAssuranceChromeos.java.md b/docs/policyDeviceAssuranceChromeos.java.md index fa9efcaed..02429aef2 100644 --- a/docs/policyDeviceAssuranceChromeos.java.md +++ b/docs/policyDeviceAssuranceChromeos.java.md @@ -308,9 +308,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetTpspAllowScreenLock | *No description.* | | resetTpspBrowserVersion | *No description.* | | resetTpspBuiltinDnsClientEnabled | *No description.* | @@ -516,6 +519,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -547,6 +556,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 @@ -572,6 +599,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". + +--- + ##### `resetTpspAllowScreenLock` ```java diff --git a/docs/policyDeviceAssuranceChromeos.python.md b/docs/policyDeviceAssuranceChromeos.python.md index e7e8784d7..9efe7385a 100644 --- a/docs/policyDeviceAssuranceChromeos.python.md +++ b/docs/policyDeviceAssuranceChromeos.python.md @@ -298,9 +298,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_tpsp_allow_screen_lock | *No description.* | | reset_tpsp_browser_version | *No description.* | | reset_tpsp_builtin_dns_client_enabled | *No description.* | @@ -531,6 +534,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -566,6 +575,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 @@ -593,6 +622,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_tpsp_allow_screen_lock` ```python diff --git a/docs/policyDeviceAssuranceChromeos.typescript.md b/docs/policyDeviceAssuranceChromeos.typescript.md index e75cd03ac..17081a33c 100644 --- a/docs/policyDeviceAssuranceChromeos.typescript.md +++ b/docs/policyDeviceAssuranceChromeos.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". | | resetTpspAllowScreenLock | *No description.* | | resetTpspBrowserVersion | *No description.* | | resetTpspBuiltinDnsClientEnabled | *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". + +--- + ##### `resetTpspAllowScreenLock` ```typescript diff --git a/docs/policyDeviceAssuranceIos.csharp.md b/docs/policyDeviceAssuranceIos.csharp.md index bec0f47ac..6c99d5583 100644 --- a/docs/policyDeviceAssuranceIos.csharp.md +++ b/docs/policyDeviceAssuranceIos.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". | | ResetJailbreak | *No description.* | | ResetOsVersion | *No description.* | | ResetScreenlockType | *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". + +--- + ##### `ResetJailbreak` ```csharp diff --git a/docs/policyDeviceAssuranceIos.go.md b/docs/policyDeviceAssuranceIos.go.md index 2420204a4..7a7b4c343 100644 --- a/docs/policyDeviceAssuranceIos.go.md +++ b/docs/policyDeviceAssuranceIos.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". | | ResetJailbreak | *No description.* | | ResetOsVersion | *No description.* | | ResetScreenlockType | *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". + +--- + ##### `ResetJailbreak` ```go diff --git a/docs/policyDeviceAssuranceIos.java.md b/docs/policyDeviceAssuranceIos.java.md index 2ac65a60b..188142d00 100644 --- a/docs/policyDeviceAssuranceIos.java.md +++ b/docs/policyDeviceAssuranceIos.java.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetJailbreak | *No description.* | | resetOsVersion | *No description.* | | resetScreenlockType | *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". + +--- + ##### `resetJailbreak` ```java diff --git a/docs/policyDeviceAssuranceIos.python.md b/docs/policyDeviceAssuranceIos.python.md index adbc68a32..f89f57c9b 100644 --- a/docs/policyDeviceAssuranceIos.python.md +++ b/docs/policyDeviceAssuranceIos.python.md @@ -166,9 +166,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_jailbreak | *No description.* | | reset_os_version | *No description.* | | reset_screenlock_type | *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_jailbreak` ```python diff --git a/docs/policyDeviceAssuranceIos.typescript.md b/docs/policyDeviceAssuranceIos.typescript.md index 47c996e07..39ab34914 100644 --- a/docs/policyDeviceAssuranceIos.typescript.md +++ b/docs/policyDeviceAssuranceIos.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". | | resetJailbreak | *No description.* | | resetOsVersion | *No description.* | | resetScreenlockType | *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". + +--- + ##### `resetJailbreak` ```typescript diff --git a/docs/policyDeviceAssuranceMacos.csharp.md b/docs/policyDeviceAssuranceMacos.csharp.md index 86af6684d..c94fcc67e 100644 --- a/docs/policyDeviceAssuranceMacos.csharp.md +++ b/docs/policyDeviceAssuranceMacos.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". | | ResetDiskEncryptionType | *No description.* | | ResetOsVersion | *No description.* | | ResetScreenlockType | *No description.* | @@ -278,6 +281,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -308,6 +317,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 @@ -332,6 +359,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". + +--- + ##### `ResetDiskEncryptionType` ```csharp diff --git a/docs/policyDeviceAssuranceMacos.go.md b/docs/policyDeviceAssuranceMacos.go.md index 2fbd9ba62..97e1d726c 100644 --- a/docs/policyDeviceAssuranceMacos.go.md +++ b/docs/policyDeviceAssuranceMacos.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". | | ResetDiskEncryptionType | *No description.* | | ResetOsVersion | *No description.* | | ResetScreenlockType | *No description.* | @@ -278,6 +281,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -308,6 +317,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 @@ -332,6 +359,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". + +--- + ##### `ResetDiskEncryptionType` ```go diff --git a/docs/policyDeviceAssuranceMacos.java.md b/docs/policyDeviceAssuranceMacos.java.md index 42ea503da..906c6e055 100644 --- a/docs/policyDeviceAssuranceMacos.java.md +++ b/docs/policyDeviceAssuranceMacos.java.md @@ -357,9 +357,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDiskEncryptionType | *No description.* | | resetOsVersion | *No description.* | | resetScreenlockType | *No description.* | @@ -569,6 +572,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -600,6 +609,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 @@ -625,6 +652,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". + +--- + ##### `resetDiskEncryptionType` ```java diff --git a/docs/policyDeviceAssuranceMacos.python.md b/docs/policyDeviceAssuranceMacos.python.md index e9176e94e..41cc5c7be 100644 --- a/docs/policyDeviceAssuranceMacos.python.md +++ b/docs/policyDeviceAssuranceMacos.python.md @@ -346,9 +346,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_disk_encryption_type | *No description.* | | reset_os_version | *No description.* | | reset_screenlock_type | *No description.* | @@ -583,6 +586,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -618,6 +627,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 @@ -645,6 +674,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_disk_encryption_type` ```python diff --git a/docs/policyDeviceAssuranceMacos.typescript.md b/docs/policyDeviceAssuranceMacos.typescript.md index 66d7b7b8a..af457d80d 100644 --- a/docs/policyDeviceAssuranceMacos.typescript.md +++ b/docs/policyDeviceAssuranceMacos.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". | | resetDiskEncryptionType | *No description.* | | resetOsVersion | *No description.* | | resetScreenlockType | *No description.* | @@ -278,6 +281,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -308,6 +317,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 @@ -332,6 +359,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". + +--- + ##### `resetDiskEncryptionType` ```typescript diff --git a/docs/policyDeviceAssuranceWindows.csharp.md b/docs/policyDeviceAssuranceWindows.csharp.md index f2a520872..5b30b49f7 100644 --- a/docs/policyDeviceAssuranceWindows.csharp.md +++ b/docs/policyDeviceAssuranceWindows.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". | | ResetDiskEncryptionType | *No description.* | | ResetOsVersion | *No description.* | | ResetScreenlockType | *No description.* | @@ -284,6 +287,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -314,6 +323,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 @@ -338,6 +365,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". + +--- + ##### `ResetDiskEncryptionType` ```csharp diff --git a/docs/policyDeviceAssuranceWindows.go.md b/docs/policyDeviceAssuranceWindows.go.md index 87c483864..5c5daa9b4 100644 --- a/docs/policyDeviceAssuranceWindows.go.md +++ b/docs/policyDeviceAssuranceWindows.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". | | ResetDiskEncryptionType | *No description.* | | ResetOsVersion | *No description.* | | ResetScreenlockType | *No description.* | @@ -284,6 +287,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -314,6 +323,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 @@ -338,6 +365,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". + +--- + ##### `ResetDiskEncryptionType` ```go diff --git a/docs/policyDeviceAssuranceWindows.java.md b/docs/policyDeviceAssuranceWindows.java.md index 0751641dc..50b02ea53 100644 --- a/docs/policyDeviceAssuranceWindows.java.md +++ b/docs/policyDeviceAssuranceWindows.java.md @@ -431,9 +431,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDiskEncryptionType | *No description.* | | resetOsVersion | *No description.* | | resetScreenlockType | *No description.* | @@ -649,6 +652,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -680,6 +689,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 @@ -705,6 +732,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". + +--- + ##### `resetDiskEncryptionType` ```java diff --git a/docs/policyDeviceAssuranceWindows.python.md b/docs/policyDeviceAssuranceWindows.python.md index 5786f1557..1193cbeb0 100644 --- a/docs/policyDeviceAssuranceWindows.python.md +++ b/docs/policyDeviceAssuranceWindows.python.md @@ -418,9 +418,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_disk_encryption_type | *No description.* | | reset_os_version | *No description.* | | reset_screenlock_type | *No description.* | @@ -661,6 +664,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -696,6 +705,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 @@ -723,6 +752,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_disk_encryption_type` ```python diff --git a/docs/policyDeviceAssuranceWindows.typescript.md b/docs/policyDeviceAssuranceWindows.typescript.md index e623e878a..db6c7c6d4 100644 --- a/docs/policyDeviceAssuranceWindows.typescript.md +++ b/docs/policyDeviceAssuranceWindows.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". | | resetDiskEncryptionType | *No description.* | | resetOsVersion | *No description.* | | resetScreenlockType | *No description.* | @@ -284,6 +287,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -314,6 +323,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 @@ -338,6 +365,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". + +--- + ##### `resetDiskEncryptionType` ```typescript diff --git a/docs/policyMfa.csharp.md b/docs/policyMfa.csharp.md index b9fffe69f..648a7d923 100644 --- a/docs/policyMfa.csharp.md +++ b/docs/policyMfa.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.* | | ResetDuo | *No description.* | | ResetExternalIdp | *No description.* | @@ -287,6 +290,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -317,6 +326,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 @@ -341,6 +368,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/policyMfa.go.md b/docs/policyMfa.go.md index c08eb3a2f..52636e587 100644 --- a/docs/policyMfa.go.md +++ b/docs/policyMfa.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.* | | ResetDuo | *No description.* | | ResetExternalIdp | *No description.* | @@ -287,6 +290,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -317,6 +326,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 @@ -341,6 +368,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/policyMfa.java.md b/docs/policyMfa.java.md index cb00c0d64..981fd3acb 100644 --- a/docs/policyMfa.java.md +++ b/docs/policyMfa.java.md @@ -418,9 +418,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetDuo | *No description.* | | resetExternalIdp | *No description.* | @@ -639,6 +642,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -670,6 +679,24 @@ public IResolvable interpolationForAttribute(java.lang.String terraformAttribute --- +##### `moveFromId` + +```java +public void moveFromId(java.lang.String id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```java @@ -695,6 +722,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```java +public void moveToId(java.lang.String id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* java.lang.String + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `resetDescription` ```java diff --git a/docs/policyMfa.python.md b/docs/policyMfa.python.md index ecf390213..0353800c4 100644 --- a/docs/policyMfa.python.md +++ b/docs/policyMfa.python.md @@ -415,9 +415,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_duo | *No description.* | | reset_external_idp | *No description.* | @@ -661,6 +664,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -696,6 +705,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 @@ -723,6 +752,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/policyMfa.typescript.md b/docs/policyMfa.typescript.md index 70afc377e..e73e21a73 100644 --- a/docs/policyMfa.typescript.md +++ b/docs/policyMfa.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.* | | resetDuo | *No description.* | | resetExternalIdp | *No description.* | @@ -287,6 +290,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -317,6 +326,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 @@ -341,6 +368,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/policyMfaDefault.csharp.md b/docs/policyMfaDefault.csharp.md index d1cb79bd1..4e6369c70 100644 --- a/docs/policyMfaDefault.csharp.md +++ b/docs/policyMfaDefault.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". | | ResetDuo | *No description.* | | ResetExternalIdp | *No description.* | | ResetFidoU2F | *No description.* | @@ -283,6 +286,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -313,6 +322,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 @@ -337,6 +364,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". + +--- + ##### `ResetDuo` ```csharp diff --git a/docs/policyMfaDefault.go.md b/docs/policyMfaDefault.go.md index c7253b791..315859280 100644 --- a/docs/policyMfaDefault.go.md +++ b/docs/policyMfaDefault.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". | | ResetDuo | *No description.* | | ResetExternalIdp | *No description.* | | ResetFidoU2F | *No description.* | @@ -283,6 +286,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -313,6 +322,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 @@ -337,6 +364,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". + +--- + ##### `ResetDuo` ```go diff --git a/docs/policyMfaDefault.java.md b/docs/policyMfaDefault.java.md index 8487f2134..98b65cd83 100644 --- a/docs/policyMfaDefault.java.md +++ b/docs/policyMfaDefault.java.md @@ -356,9 +356,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetDuo | *No description.* | | resetExternalIdp | *No description.* | | resetFidoU2F | *No description.* | @@ -573,6 +576,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -604,6 +613,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 @@ -629,6 +656,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". + +--- + ##### `resetDuo` ```java diff --git a/docs/policyMfaDefault.python.md b/docs/policyMfaDefault.python.md index abe1a208c..5cdd0e3a9 100644 --- a/docs/policyMfaDefault.python.md +++ b/docs/policyMfaDefault.python.md @@ -353,9 +353,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_duo | *No description.* | | reset_external_idp | *No description.* | | reset_fido_u2_f | *No description.* | @@ -595,6 +598,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -630,6 +639,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 @@ -657,6 +686,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_duo` ```python diff --git a/docs/policyMfaDefault.typescript.md b/docs/policyMfaDefault.typescript.md index 840214a3b..bbfb20358 100644 --- a/docs/policyMfaDefault.typescript.md +++ b/docs/policyMfaDefault.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". | | resetDuo | *No description.* | | resetExternalIdp | *No description.* | | resetFidoU2F | *No description.* | @@ -283,6 +286,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -313,6 +322,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 @@ -337,6 +364,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". + +--- + ##### `resetDuo` ```typescript diff --git a/docs/policyPassword.csharp.md b/docs/policyPassword.csharp.md index 6150ad6e7..a96d5d726 100644 --- a/docs/policyPassword.csharp.md +++ b/docs/policyPassword.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". | | ResetAuthProvider | *No description.* | | ResetCallRecovery | *No description.* | | ResetDescription | *No description.* | @@ -290,6 +293,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -320,6 +329,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 @@ -344,6 +371,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". + +--- + ##### `ResetAuthProvider` ```csharp diff --git a/docs/policyPassword.go.md b/docs/policyPassword.go.md index 40705c33d..3a32a40e2 100644 --- a/docs/policyPassword.go.md +++ b/docs/policyPassword.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". | | ResetAuthProvider | *No description.* | | ResetCallRecovery | *No description.* | | ResetDescription | *No description.* | @@ -290,6 +293,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -320,6 +329,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 @@ -344,6 +371,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". + +--- + ##### `ResetAuthProvider` ```go diff --git a/docs/policyPassword.java.md b/docs/policyPassword.java.md index f2bf6a638..aff65259d 100644 --- a/docs/policyPassword.java.md +++ b/docs/policyPassword.java.md @@ -505,9 +505,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetAuthProvider | *No description.* | | resetCallRecovery | *No description.* | | resetDescription | *No description.* | @@ -729,6 +732,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -760,6 +769,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 @@ -785,6 +812,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". + +--- + ##### `resetAuthProvider` ```java diff --git a/docs/policyPassword.python.md b/docs/policyPassword.python.md index c519a78f2..0a75ce9fa 100644 --- a/docs/policyPassword.python.md +++ b/docs/policyPassword.python.md @@ -497,9 +497,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_auth_provider | *No description.* | | reset_call_recovery | *No description.* | | reset_description | *No description.* | @@ -746,6 +749,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -781,6 +790,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 @@ -808,6 +837,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_auth_provider` ```python diff --git a/docs/policyPassword.typescript.md b/docs/policyPassword.typescript.md index c6774422d..d48bb71d8 100644 --- a/docs/policyPassword.typescript.md +++ b/docs/policyPassword.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". | | resetAuthProvider | *No description.* | | resetCallRecovery | *No description.* | | resetDescription | *No description.* | @@ -290,6 +293,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -320,6 +329,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 @@ -344,6 +371,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". + +--- + ##### `resetAuthProvider` ```typescript diff --git a/docs/policyPasswordDefault.csharp.md b/docs/policyPasswordDefault.csharp.md index 8c026762a..94c09f4cf 100644 --- a/docs/policyPasswordDefault.csharp.md +++ b/docs/policyPasswordDefault.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". | | ResetCallRecovery | *No description.* | | ResetEmailRecovery | *No description.* | | ResetId | *No description.* | @@ -285,6 +288,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -315,6 +324,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 @@ -339,6 +366,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". + +--- + ##### `ResetCallRecovery` ```csharp diff --git a/docs/policyPasswordDefault.go.md b/docs/policyPasswordDefault.go.md index ce1d83b23..d93335108 100644 --- a/docs/policyPasswordDefault.go.md +++ b/docs/policyPasswordDefault.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". | | ResetCallRecovery | *No description.* | | ResetEmailRecovery | *No description.* | | ResetId | *No description.* | @@ -285,6 +288,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -315,6 +324,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 @@ -339,6 +366,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". + +--- + ##### `ResetCallRecovery` ```go diff --git a/docs/policyPasswordDefault.java.md b/docs/policyPasswordDefault.java.md index 6c115d7ab..db8f181b0 100644 --- a/docs/policyPasswordDefault.java.md +++ b/docs/policyPasswordDefault.java.md @@ -431,9 +431,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetCallRecovery | *No description.* | | resetEmailRecovery | *No description.* | | resetId | *No description.* | @@ -650,6 +653,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -681,6 +690,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 @@ -706,6 +733,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". + +--- + ##### `resetCallRecovery` ```java diff --git a/docs/policyPasswordDefault.python.md b/docs/policyPasswordDefault.python.md index 0c3f94ff0..f92b8bd04 100644 --- a/docs/policyPasswordDefault.python.md +++ b/docs/policyPasswordDefault.python.md @@ -423,9 +423,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_call_recovery | *No description.* | | reset_email_recovery | *No description.* | | reset_id | *No description.* | @@ -667,6 +670,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -702,6 +711,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 @@ -729,6 +758,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_call_recovery` ```python diff --git a/docs/policyPasswordDefault.typescript.md b/docs/policyPasswordDefault.typescript.md index 16ff33736..220af408d 100644 --- a/docs/policyPasswordDefault.typescript.md +++ b/docs/policyPasswordDefault.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". | | resetCallRecovery | *No description.* | | resetEmailRecovery | *No description.* | | resetId | *No description.* | @@ -285,6 +288,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -315,6 +324,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 @@ -339,6 +366,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". + +--- + ##### `resetCallRecovery` ```typescript diff --git a/docs/policyProfileEnrollment.csharp.md b/docs/policyProfileEnrollment.csharp.md index 3f2041855..af1831a3e 100644 --- a/docs/policyProfileEnrollment.csharp.md +++ b/docs/policyProfileEnrollment.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.* | | ResetStatus | *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/policyProfileEnrollment.go.md b/docs/policyProfileEnrollment.go.md index 0c513a676..99f6f1e4c 100644 --- a/docs/policyProfileEnrollment.go.md +++ b/docs/policyProfileEnrollment.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.* | | ResetStatus | *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/policyProfileEnrollment.java.md b/docs/policyProfileEnrollment.java.md index 7d5e929a3..0a0ad67f5 100644 --- a/docs/policyProfileEnrollment.java.md +++ b/docs/policyProfileEnrollment.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetStatus | *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/policyProfileEnrollment.python.md b/docs/policyProfileEnrollment.python.md index e277784f0..88a3f0968 100644 --- a/docs/policyProfileEnrollment.python.md +++ b/docs/policyProfileEnrollment.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_status | *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/policyProfileEnrollment.typescript.md b/docs/policyProfileEnrollment.typescript.md index 40eb3ceff..1540cbd8d 100644 --- a/docs/policyProfileEnrollment.typescript.md +++ b/docs/policyProfileEnrollment.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.* | | resetStatus | *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/policyProfileEnrollmentApps.csharp.md b/docs/policyProfileEnrollmentApps.csharp.md index 1871080b2..9a0b42807 100644 --- a/docs/policyProfileEnrollmentApps.csharp.md +++ b/docs/policyProfileEnrollmentApps.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". | | ResetApps | *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". + +--- + ##### `ResetApps` ```csharp diff --git a/docs/policyProfileEnrollmentApps.go.md b/docs/policyProfileEnrollmentApps.go.md index 00470fe09..d1de52c11 100644 --- a/docs/policyProfileEnrollmentApps.go.md +++ b/docs/policyProfileEnrollmentApps.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". | | ResetApps | *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". + +--- + ##### `ResetApps` ```go diff --git a/docs/policyProfileEnrollmentApps.java.md b/docs/policyProfileEnrollmentApps.java.md index 4d75796a1..98546df67 100644 --- a/docs/policyProfileEnrollmentApps.java.md +++ b/docs/policyProfileEnrollmentApps.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". | | resetApps | *No description.* | | resetId | *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". + +--- + ##### `resetApps` ```java diff --git a/docs/policyProfileEnrollmentApps.python.md b/docs/policyProfileEnrollmentApps.python.md index 956c9bcd4..7f17fcab2 100644 --- a/docs/policyProfileEnrollmentApps.python.md +++ b/docs/policyProfileEnrollmentApps.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_apps | *No description.* | | reset_id | *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_apps` ```python diff --git a/docs/policyProfileEnrollmentApps.typescript.md b/docs/policyProfileEnrollmentApps.typescript.md index a8c87865c..39643e08a 100644 --- a/docs/policyProfileEnrollmentApps.typescript.md +++ b/docs/policyProfileEnrollmentApps.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". | | resetApps | *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". + +--- + ##### `resetApps` ```typescript diff --git a/docs/policyRuleIdpDiscovery.csharp.md b/docs/policyRuleIdpDiscovery.csharp.md index bbe915fd0..415711903 100644 --- a/docs/policyRuleIdpDiscovery.csharp.md +++ b/docs/policyRuleIdpDiscovery.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". | | PutAppExclude | *No description.* | | PutAppInclude | *No description.* | | PutPlatformInclude | *No description.* | @@ -279,6 +282,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -309,6 +318,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 @@ -333,6 +360,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". + +--- + ##### `PutAppExclude` ```csharp diff --git a/docs/policyRuleIdpDiscovery.go.md b/docs/policyRuleIdpDiscovery.go.md index aae8cb1e6..02afc4fcf 100644 --- a/docs/policyRuleIdpDiscovery.go.md +++ b/docs/policyRuleIdpDiscovery.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". | | PutAppExclude | *No description.* | | PutAppInclude | *No description.* | | PutPlatformInclude | *No description.* | @@ -279,6 +282,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -309,6 +318,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 @@ -333,6 +360,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". + +--- + ##### `PutAppExclude` ```go diff --git a/docs/policyRuleIdpDiscovery.java.md b/docs/policyRuleIdpDiscovery.java.md index a7451888c..854b2a4d6 100644 --- a/docs/policyRuleIdpDiscovery.java.md +++ b/docs/policyRuleIdpDiscovery.java.md @@ -311,9 +311,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putAppExclude | *No description.* | | putAppInclude | *No description.* | | putPlatformInclude | *No description.* | @@ -524,6 +527,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -555,6 +564,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 @@ -580,6 +607,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". + +--- + ##### `putAppExclude` ```java diff --git a/docs/policyRuleIdpDiscovery.python.md b/docs/policyRuleIdpDiscovery.python.md index 546fefed5..216deb6fa 100644 --- a/docs/policyRuleIdpDiscovery.python.md +++ b/docs/policyRuleIdpDiscovery.python.md @@ -305,9 +305,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_app_exclude | *No description.* | | put_app_include | *No description.* | | put_platform_include | *No description.* | @@ -543,6 +546,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -578,6 +587,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 @@ -605,6 +634,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_app_exclude` ```python diff --git a/docs/policyRuleIdpDiscovery.typescript.md b/docs/policyRuleIdpDiscovery.typescript.md index 8a05a203f..8907ab4b0 100644 --- a/docs/policyRuleIdpDiscovery.typescript.md +++ b/docs/policyRuleIdpDiscovery.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". | | putAppExclude | *No description.* | | putAppInclude | *No description.* | | putPlatformInclude | *No description.* | @@ -279,6 +282,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -309,6 +318,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 @@ -333,6 +360,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". + +--- + ##### `putAppExclude` ```typescript diff --git a/docs/policyRuleMfa.csharp.md b/docs/policyRuleMfa.csharp.md index fa9290a9e..aa4658c71 100644 --- a/docs/policyRuleMfa.csharp.md +++ b/docs/policyRuleMfa.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". | | PutAppExclude | *No description.* | | PutAppInclude | *No description.* | | ResetAppExclude | *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". + +--- + ##### `PutAppExclude` ```csharp diff --git a/docs/policyRuleMfa.go.md b/docs/policyRuleMfa.go.md index f81cb8168..de1dc4e71 100644 --- a/docs/policyRuleMfa.go.md +++ b/docs/policyRuleMfa.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". | | PutAppExclude | *No description.* | | PutAppInclude | *No description.* | | ResetAppExclude | *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". + +--- + ##### `PutAppExclude` ```go diff --git a/docs/policyRuleMfa.java.md b/docs/policyRuleMfa.java.md index 743ceabd5..ef0f93a87 100644 --- a/docs/policyRuleMfa.java.md +++ b/docs/policyRuleMfa.java.md @@ -269,9 +269,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putAppExclude | *No description.* | | putAppInclude | *No description.* | | resetAppExclude | *No description.* | @@ -476,6 +479,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -507,6 +516,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 @@ -532,6 +559,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". + +--- + ##### `putAppExclude` ```java diff --git a/docs/policyRuleMfa.python.md b/docs/policyRuleMfa.python.md index 96aba0547..83235c02a 100644 --- a/docs/policyRuleMfa.python.md +++ b/docs/policyRuleMfa.python.md @@ -265,9 +265,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_app_exclude | *No description.* | | put_app_include | *No description.* | | reset_app_exclude | *No description.* | @@ -497,6 +500,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -532,6 +541,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 @@ -559,6 +588,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_app_exclude` ```python diff --git a/docs/policyRuleMfa.typescript.md b/docs/policyRuleMfa.typescript.md index d87f40140..5bac0ea83 100644 --- a/docs/policyRuleMfa.typescript.md +++ b/docs/policyRuleMfa.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". | | putAppExclude | *No description.* | | putAppInclude | *No description.* | | resetAppExclude | *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". + +--- + ##### `putAppExclude` ```typescript diff --git a/docs/policyRulePassword.csharp.md b/docs/policyRulePassword.csharp.md index 274d12aa6..30c9e1941 100644 --- a/docs/policyRulePassword.csharp.md +++ b/docs/policyRulePassword.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.* | | ResetNetworkConnection | *No description.* | | ResetNetworkExcludes | *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". + +--- + ##### `ResetId` ```csharp diff --git a/docs/policyRulePassword.go.md b/docs/policyRulePassword.go.md index 158077bba..7e396c031 100644 --- a/docs/policyRulePassword.go.md +++ b/docs/policyRulePassword.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.* | | ResetNetworkConnection | *No description.* | | ResetNetworkExcludes | *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". + +--- + ##### `ResetId` ```go diff --git a/docs/policyRulePassword.java.md b/docs/policyRulePassword.java.md index 2f2e03d08..c5aaf0128 100644 --- a/docs/policyRulePassword.java.md +++ b/docs/policyRulePassword.java.md @@ -267,9 +267,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetNetworkConnection | *No description.* | | resetNetworkExcludes | *No description.* | @@ -472,6 +475,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -503,6 +512,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 @@ -528,6 +555,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/policyRulePassword.python.md b/docs/policyRulePassword.python.md index 3a17fea38..8c6709b61 100644 --- a/docs/policyRulePassword.python.md +++ b/docs/policyRulePassword.python.md @@ -265,9 +265,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_network_connection | *No description.* | | reset_network_excludes | *No description.* | @@ -495,6 +498,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -530,6 +539,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 @@ -557,6 +586,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/policyRulePassword.typescript.md b/docs/policyRulePassword.typescript.md index ec3248c1d..1ec15accf 100644 --- a/docs/policyRulePassword.typescript.md +++ b/docs/policyRulePassword.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.* | | resetNetworkConnection | *No description.* | | resetNetworkExcludes | *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". + +--- + ##### `resetId` ```typescript diff --git a/docs/policyRuleProfileEnrollment.csharp.md b/docs/policyRuleProfileEnrollment.csharp.md index cb9854ddf..ce3879fc1 100644 --- a/docs/policyRuleProfileEnrollment.csharp.md +++ b/docs/policyRuleProfileEnrollment.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". | | PutProfileAttributes | *No description.* | | ResetAccess | *No description.* | | ResetEmailVerification | *No description.* | @@ -269,6 +272,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -299,6 +308,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 @@ -323,6 +350,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". + +--- + ##### `PutProfileAttributes` ```csharp diff --git a/docs/policyRuleProfileEnrollment.go.md b/docs/policyRuleProfileEnrollment.go.md index 021cd2b3a..17e04598e 100644 --- a/docs/policyRuleProfileEnrollment.go.md +++ b/docs/policyRuleProfileEnrollment.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". | | PutProfileAttributes | *No description.* | | ResetAccess | *No description.* | | ResetEmailVerification | *No description.* | @@ -269,6 +272,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -299,6 +308,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 @@ -323,6 +350,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". + +--- + ##### `PutProfileAttributes` ```go diff --git a/docs/policyRuleProfileEnrollment.java.md b/docs/policyRuleProfileEnrollment.java.md index 615ba52e3..c3636f825 100644 --- a/docs/policyRuleProfileEnrollment.java.md +++ b/docs/policyRuleProfileEnrollment.java.md @@ -243,9 +243,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putProfileAttributes | *No description.* | | resetAccess | *No description.* | | resetEmailVerification | *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". + +--- + ##### `putProfileAttributes` ```java diff --git a/docs/policyRuleProfileEnrollment.python.md b/docs/policyRuleProfileEnrollment.python.md index 86cd8f55c..83cf1e164 100644 --- a/docs/policyRuleProfileEnrollment.python.md +++ b/docs/policyRuleProfileEnrollment.python.md @@ -239,9 +239,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_profile_attributes | *No description.* | | reset_access | *No description.* | | reset_email_verification | *No description.* | @@ -467,6 +470,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -502,6 +511,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 @@ -529,6 +558,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_profile_attributes` ```python diff --git a/docs/policyRuleProfileEnrollment.typescript.md b/docs/policyRuleProfileEnrollment.typescript.md index b7a58c654..007fadde3 100644 --- a/docs/policyRuleProfileEnrollment.typescript.md +++ b/docs/policyRuleProfileEnrollment.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". | | putProfileAttributes | *No description.* | | resetAccess | *No description.* | | resetEmailVerification | *No description.* | @@ -269,6 +272,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -299,6 +308,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 @@ -323,6 +350,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". + +--- + ##### `putProfileAttributes` ```typescript diff --git a/docs/policyRuleSignon.csharp.md b/docs/policyRuleSignon.csharp.md index 651473108..69fb119bd 100644 --- a/docs/policyRuleSignon.csharp.md +++ b/docs/policyRuleSignon.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". | | PutFactorSequence | *No description.* | | ResetAccess | *No description.* | | ResetAuthtype | *No description.* | @@ -284,6 +287,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -314,6 +323,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 @@ -338,6 +365,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". + +--- + ##### `PutFactorSequence` ```csharp diff --git a/docs/policyRuleSignon.go.md b/docs/policyRuleSignon.go.md index 4fcf33b2b..e8c30c55b 100644 --- a/docs/policyRuleSignon.go.md +++ b/docs/policyRuleSignon.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". | | PutFactorSequence | *No description.* | | ResetAccess | *No description.* | | ResetAuthtype | *No description.* | @@ -284,6 +287,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -314,6 +323,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 @@ -338,6 +365,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". + +--- + ##### `PutFactorSequence` ```go diff --git a/docs/policyRuleSignon.java.md b/docs/policyRuleSignon.java.md index debcf9608..ed9da6387 100644 --- a/docs/policyRuleSignon.java.md +++ b/docs/policyRuleSignon.java.md @@ -415,9 +415,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putFactorSequence | *No description.* | | resetAccess | *No description.* | | resetAuthtype | *No description.* | @@ -633,6 +636,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -664,6 +673,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 @@ -689,6 +716,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". + +--- + ##### `putFactorSequence` ```java diff --git a/docs/policyRuleSignon.python.md b/docs/policyRuleSignon.python.md index b441438b2..5dae356e2 100644 --- a/docs/policyRuleSignon.python.md +++ b/docs/policyRuleSignon.python.md @@ -409,9 +409,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_factor_sequence | *No description.* | | reset_access | *No description.* | | reset_authtype | *No description.* | @@ -652,6 +655,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -687,6 +696,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 @@ -714,6 +743,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_factor_sequence` ```python diff --git a/docs/policyRuleSignon.typescript.md b/docs/policyRuleSignon.typescript.md index f604b928e..49c19b5a5 100644 --- a/docs/policyRuleSignon.typescript.md +++ b/docs/policyRuleSignon.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". | | putFactorSequence | *No description.* | | resetAccess | *No description.* | | resetAuthtype | *No description.* | @@ -284,6 +287,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -314,6 +323,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 @@ -338,6 +365,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". + +--- + ##### `putFactorSequence` ```typescript diff --git a/docs/policySignon.csharp.md b/docs/policySignon.csharp.md index af3b18b65..3875c2800 100644 --- a/docs/policySignon.csharp.md +++ b/docs/policySignon.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.* | | ResetGroupsIncluded | *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". + +--- + ##### `ResetDescription` ```csharp diff --git a/docs/policySignon.go.md b/docs/policySignon.go.md index a1a59e8cd..60245ad34 100644 --- a/docs/policySignon.go.md +++ b/docs/policySignon.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.* | | ResetGroupsIncluded | *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". + +--- + ##### `ResetDescription` ```go diff --git a/docs/policySignon.java.md b/docs/policySignon.java.md index 83af6767f..573b5113c 100644 --- a/docs/policySignon.java.md +++ b/docs/policySignon.java.md @@ -195,9 +195,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetGroupsIncluded | *No description.* | | resetId | *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". + +--- + ##### `resetDescription` ```java diff --git a/docs/policySignon.python.md b/docs/policySignon.python.md index 0c3cc6657..197607211 100644 --- a/docs/policySignon.python.md +++ b/docs/policySignon.python.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_groups_included | *No description.* | | reset_id | *No description.* | @@ -417,6 +420,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -452,6 +461,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 @@ -479,6 +508,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/policySignon.typescript.md b/docs/policySignon.typescript.md index d5830ca45..0f132b9dd 100644 --- a/docs/policySignon.typescript.md +++ b/docs/policySignon.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.* | | resetGroupsIncluded | *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". + +--- + ##### `resetDescription` ```typescript diff --git a/docs/profileMapping.csharp.md b/docs/profileMapping.csharp.md index 8f9229cb2..43efc0a32 100644 --- a/docs/profileMapping.csharp.md +++ b/docs/profileMapping.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". | | PutMappings | *No description.* | | ResetAlwaysApply | *No description.* | | ResetDeleteWhenAbsent | *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". + +--- + ##### `PutMappings` ```csharp diff --git a/docs/profileMapping.go.md b/docs/profileMapping.go.md index a7cf77314..d631dfdd6 100644 --- a/docs/profileMapping.go.md +++ b/docs/profileMapping.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". | | PutMappings | *No description.* | | ResetAlwaysApply | *No description.* | | ResetDeleteWhenAbsent | *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". + +--- + ##### `PutMappings` ```go diff --git a/docs/profileMapping.java.md b/docs/profileMapping.java.md index d165e67c6..12ed196a8 100644 --- a/docs/profileMapping.java.md +++ b/docs/profileMapping.java.md @@ -198,9 +198,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putMappings | *No description.* | | resetAlwaysApply | *No description.* | | resetDeleteWhenAbsent | *No description.* | @@ -397,6 +400,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -428,6 +437,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 @@ -453,6 +480,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". + +--- + ##### `putMappings` ```java diff --git a/docs/profileMapping.python.md b/docs/profileMapping.python.md index 25b1d5eb2..caeee945a 100644 --- a/docs/profileMapping.python.md +++ b/docs/profileMapping.python.md @@ -193,9 +193,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_mappings | *No description.* | | reset_always_apply | *No description.* | | reset_delete_when_absent | *No description.* | @@ -417,6 +420,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -452,6 +461,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 @@ -479,6 +508,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_mappings` ```python diff --git a/docs/profileMapping.typescript.md b/docs/profileMapping.typescript.md index 9065005f5..c37582b41 100644 --- a/docs/profileMapping.typescript.md +++ b/docs/profileMapping.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". | | putMappings | *No description.* | | resetAlwaysApply | *No description.* | | resetDeleteWhenAbsent | *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". + +--- + ##### `putMappings` ```typescript diff --git a/docs/rateLimiting.csharp.md b/docs/rateLimiting.csharp.md index 87ae49263..b23e51aa3 100644 --- a/docs/rateLimiting.csharp.md +++ b/docs/rateLimiting.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". | | ResetCommunicationsEnabled | *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". + +--- + ##### `ResetCommunicationsEnabled` ```csharp diff --git a/docs/rateLimiting.go.md b/docs/rateLimiting.go.md index f69b8065f..fffe440ce 100644 --- a/docs/rateLimiting.go.md +++ b/docs/rateLimiting.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". | | ResetCommunicationsEnabled | *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". + +--- + ##### `ResetCommunicationsEnabled` ```go diff --git a/docs/rateLimiting.java.md b/docs/rateLimiting.java.md index 61c7fc72a..bf218063f 100644 --- a/docs/rateLimiting.java.md +++ b/docs/rateLimiting.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". | | resetCommunicationsEnabled | *No description.* | | resetId | *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". + +--- + ##### `resetCommunicationsEnabled` ```java diff --git a/docs/rateLimiting.python.md b/docs/rateLimiting.python.md index d89cbbfe9..318c81f24 100644 --- a/docs/rateLimiting.python.md +++ b/docs/rateLimiting.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_communications_enabled | *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". + +--- + ##### `reset_communications_enabled` ```python diff --git a/docs/rateLimiting.typescript.md b/docs/rateLimiting.typescript.md index 9d20d7e6b..df59bfa3d 100644 --- a/docs/rateLimiting.typescript.md +++ b/docs/rateLimiting.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". | | resetCommunicationsEnabled | *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". + +--- + ##### `resetCommunicationsEnabled` ```typescript diff --git a/docs/resourceSet.csharp.md b/docs/resourceSet.csharp.md index 66d0fa644..c2183c570 100644 --- a/docs/resourceSet.csharp.md +++ b/docs/resourceSet.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.* | | ResetResources | *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/resourceSet.go.md b/docs/resourceSet.go.md index 8f3735d23..cecae4255 100644 --- a/docs/resourceSet.go.md +++ b/docs/resourceSet.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.* | | ResetResources | *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/resourceSet.java.md b/docs/resourceSet.java.md index 0cf787dc5..f0b4bba6f 100644 --- a/docs/resourceSet.java.md +++ b/docs/resourceSet.java.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetResources | *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/resourceSet.python.md b/docs/resourceSet.python.md index c5228a39d..f333136f8 100644 --- a/docs/resourceSet.python.md +++ b/docs/resourceSet.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_resources | *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_id` ```python diff --git a/docs/resourceSet.typescript.md b/docs/resourceSet.typescript.md index f5cf63bbb..198d536e2 100644 --- a/docs/resourceSet.typescript.md +++ b/docs/resourceSet.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.* | | resetResources | *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/roleSubscription.csharp.md b/docs/roleSubscription.csharp.md index 8d4a51275..65427053e 100644 --- a/docs/roleSubscription.csharp.md +++ b/docs/roleSubscription.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.* | | ResetStatus | *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/roleSubscription.go.md b/docs/roleSubscription.go.md index 6bbbfc223..a04d36337 100644 --- a/docs/roleSubscription.go.md +++ b/docs/roleSubscription.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.* | | ResetStatus | *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/roleSubscription.java.md b/docs/roleSubscription.java.md index a9b87e73f..708922586 100644 --- a/docs/roleSubscription.java.md +++ b/docs/roleSubscription.java.md @@ -169,9 +169,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetStatus | *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/roleSubscription.python.md b/docs/roleSubscription.python.md index 2f7b625cb..c50aee563 100644 --- a/docs/roleSubscription.python.md +++ b/docs/roleSubscription.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_status | *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_id` ```python diff --git a/docs/roleSubscription.typescript.md b/docs/roleSubscription.typescript.md index 90825a1fb..beb7cfde9 100644 --- a/docs/roleSubscription.typescript.md +++ b/docs/roleSubscription.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.* | | resetStatus | *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/securityNotificationEmails.csharp.md b/docs/securityNotificationEmails.csharp.md index 8c436a097..560c93931 100644 --- a/docs/securityNotificationEmails.csharp.md +++ b/docs/securityNotificationEmails.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.* | | ResetReportSuspiciousActivityEnabled | *No description.* | | ResetSendEmailForFactorEnrollmentEnabled | *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". + +--- + ##### `ResetId` ```csharp diff --git a/docs/securityNotificationEmails.go.md b/docs/securityNotificationEmails.go.md index a047825ba..1dc541b25 100644 --- a/docs/securityNotificationEmails.go.md +++ b/docs/securityNotificationEmails.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.* | | ResetReportSuspiciousActivityEnabled | *No description.* | | ResetSendEmailForFactorEnrollmentEnabled | *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". + +--- + ##### `ResetId` ```go diff --git a/docs/securityNotificationEmails.java.md b/docs/securityNotificationEmails.java.md index 0d7dcddb5..1d3c95cf5 100644 --- a/docs/securityNotificationEmails.java.md +++ b/docs/securityNotificationEmails.java.md @@ -198,9 +198,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetReportSuspiciousActivityEnabled | *No description.* | | resetSendEmailForFactorEnrollmentEnabled | *No description.* | @@ -398,6 +401,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -429,6 +438,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 @@ -454,6 +481,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/securityNotificationEmails.python.md b/docs/securityNotificationEmails.python.md index 600f44e58..c52796f60 100644 --- a/docs/securityNotificationEmails.python.md +++ b/docs/securityNotificationEmails.python.md @@ -191,9 +191,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_report_suspicious_activity_enabled | *No description.* | | reset_send_email_for_factor_enrollment_enabled | *No description.* | @@ -416,6 +419,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -451,6 +460,26 @@ def interpolation_for_attribute( --- +##### `move_from_id` + +```python +def move_from_id( + id: str +) -> None +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* str + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `move_to` ```python @@ -478,6 +507,24 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `move_to_id` + +```python +def move_to_id( + id: str +) -> None +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* str + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `reset_id` ```python diff --git a/docs/securityNotificationEmails.typescript.md b/docs/securityNotificationEmails.typescript.md index fe556ebe4..5dcc6c5a0 100644 --- a/docs/securityNotificationEmails.typescript.md +++ b/docs/securityNotificationEmails.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.* | | resetReportSuspiciousActivityEnabled | *No description.* | | resetSendEmailForFactorEnrollmentEnabled | *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". + +--- + ##### `resetId` ```typescript diff --git a/docs/templateSms.csharp.md b/docs/templateSms.csharp.md index 351283b4d..59d64be21 100644 --- a/docs/templateSms.csharp.md +++ b/docs/templateSms.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". | | PutTranslations | *No description.* | | ResetId | *No description.* | | ResetTranslations | *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". + +--- + ##### `PutTranslations` ```csharp diff --git a/docs/templateSms.go.md b/docs/templateSms.go.md index 84a7051b9..f7932392b 100644 --- a/docs/templateSms.go.md +++ b/docs/templateSms.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". | | PutTranslations | *No description.* | | ResetId | *No description.* | | ResetTranslations | *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". + +--- + ##### `PutTranslations` ```go diff --git a/docs/templateSms.java.md b/docs/templateSms.java.md index 15d6dc1ad..e123ef12c 100644 --- a/docs/templateSms.java.md +++ b/docs/templateSms.java.md @@ -170,9 +170,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putTranslations | *No description.* | | resetId | *No description.* | | resetTranslations | *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". + +--- + ##### `putTranslations` ```java diff --git a/docs/templateSms.python.md b/docs/templateSms.python.md index ca9c99a1f..74be151db 100644 --- a/docs/templateSms.python.md +++ b/docs/templateSms.python.md @@ -167,9 +167,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_translations | *No description.* | | reset_id | *No description.* | | reset_translations | *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". + +--- + ##### `put_translations` ```python diff --git a/docs/templateSms.typescript.md b/docs/templateSms.typescript.md index 0adc9b2c2..09b4048a2 100644 --- a/docs/templateSms.typescript.md +++ b/docs/templateSms.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". | | putTranslations | *No description.* | | resetId | *No description.* | | resetTranslations | *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". + +--- + ##### `putTranslations` ```typescript diff --git a/docs/theme.csharp.md b/docs/theme.csharp.md index 5070998ca..d2c86ce62 100644 --- a/docs/theme.csharp.md +++ b/docs/theme.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". | | ResetBackgroundImage | *No description.* | | ResetEmailTemplateTouchPointVariant | *No description.* | | ResetEndUserDashboardTouchPointVariant | *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". + +--- + ##### `ResetBackgroundImage` ```csharp diff --git a/docs/theme.go.md b/docs/theme.go.md index 89b9daf8b..641837213 100644 --- a/docs/theme.go.md +++ b/docs/theme.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". | | ResetBackgroundImage | *No description.* | | ResetEmailTemplateTouchPointVariant | *No description.* | | ResetEndUserDashboardTouchPointVariant | *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". + +--- + ##### `ResetBackgroundImage` ```go diff --git a/docs/theme.java.md b/docs/theme.java.md index eb0ecb0b4..205908bb2 100644 --- a/docs/theme.java.md +++ b/docs/theme.java.md @@ -278,9 +278,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | resetBackgroundImage | *No description.* | | resetEmailTemplateTouchPointVariant | *No description.* | | resetEndUserDashboardTouchPointVariant | *No description.* | @@ -484,6 +487,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -515,6 +524,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 @@ -540,6 +567,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". + +--- + ##### `resetBackgroundImage` ```java diff --git a/docs/theme.python.md b/docs/theme.python.md index 5d7f8fa9d..b81abcd0d 100644 --- a/docs/theme.python.md +++ b/docs/theme.python.md @@ -276,9 +276,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_background_image | *No description.* | | reset_email_template_touch_point_variant | *No description.* | | reset_end_user_dashboard_touch_point_variant | *No description.* | @@ -507,6 +510,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -542,6 +551,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 @@ -569,6 +598,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_background_image` ```python diff --git a/docs/theme.typescript.md b/docs/theme.typescript.md index 26c59fa92..03323b213 100644 --- a/docs/theme.typescript.md +++ b/docs/theme.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". | | resetBackgroundImage | *No description.* | | resetEmailTemplateTouchPointVariant | *No description.* | | resetEndUserDashboardTouchPointVariant | *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". + +--- + ##### `resetBackgroundImage` ```typescript diff --git a/docs/threatInsightSettings.csharp.md b/docs/threatInsightSettings.csharp.md index 80eafc077..1898b4455 100644 --- a/docs/threatInsightSettings.csharp.md +++ b/docs/threatInsightSettings.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.* | | ResetNetworkExcludes | *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/threatInsightSettings.go.md b/docs/threatInsightSettings.go.md index 361b1bcb2..18fe5340e 100644 --- a/docs/threatInsightSettings.go.md +++ b/docs/threatInsightSettings.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.* | | ResetNetworkExcludes | *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/threatInsightSettings.java.md b/docs/threatInsightSettings.java.md index 488f953ee..bef584f96 100644 --- a/docs/threatInsightSettings.java.md +++ b/docs/threatInsightSettings.java.md @@ -157,9 +157,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetNetworkExcludes | *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/threatInsightSettings.python.md b/docs/threatInsightSettings.python.md index bbf95c3ff..689192f88 100644 --- a/docs/threatInsightSettings.python.md +++ b/docs/threatInsightSettings.python.md @@ -155,9 +155,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_network_excludes | *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/threatInsightSettings.typescript.md b/docs/threatInsightSettings.typescript.md index 0d49c747d..496d39f37 100644 --- a/docs/threatInsightSettings.typescript.md +++ b/docs/threatInsightSettings.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.* | | resetNetworkExcludes | *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/trustedOrigin.csharp.md b/docs/trustedOrigin.csharp.md index aa235cb4d..95ebbc2bf 100644 --- a/docs/trustedOrigin.csharp.md +++ b/docs/trustedOrigin.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". | | ResetActive | *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". + +--- + ##### `ResetActive` ```csharp diff --git a/docs/trustedOrigin.go.md b/docs/trustedOrigin.go.md index 17e7746f3..806771b28 100644 --- a/docs/trustedOrigin.go.md +++ b/docs/trustedOrigin.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". | | ResetActive | *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". + +--- + ##### `ResetActive` ```go diff --git a/docs/trustedOrigin.java.md b/docs/trustedOrigin.java.md index 9b7a6a17d..939322808 100644 --- a/docs/trustedOrigin.java.md +++ b/docs/trustedOrigin.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". | | resetActive | *No description.* | | resetId | *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". + +--- + ##### `resetActive` ```java diff --git a/docs/trustedOrigin.python.md b/docs/trustedOrigin.python.md index 15b3cbb11..1661d62ad 100644 --- a/docs/trustedOrigin.python.md +++ b/docs/trustedOrigin.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_active | *No description.* | | reset_id | *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_active` ```python diff --git a/docs/trustedOrigin.typescript.md b/docs/trustedOrigin.typescript.md index 986f6223c..77196cc0d 100644 --- a/docs/trustedOrigin.typescript.md +++ b/docs/trustedOrigin.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". | | resetActive | *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". + +--- + ##### `resetActive` ```typescript diff --git a/docs/user.csharp.md b/docs/user.csharp.md index 86c4ea3cc..ca4ccec05 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". | | PutPasswordHash | *No description.* | | ResetCity | *No description.* | | ResetCostCenter | *No description.* | @@ -300,6 +303,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -330,6 +339,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 @@ -354,6 +381,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". + +--- + ##### `PutPasswordHash` ```csharp diff --git a/docs/user.go.md b/docs/user.go.md index e80c2a173..468d9a560 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". | | PutPasswordHash | *No description.* | | ResetCity | *No description.* | | ResetCostCenter | *No description.* | @@ -300,6 +303,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -330,6 +339,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 @@ -354,6 +381,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". + +--- + ##### `PutPasswordHash` ```go diff --git a/docs/user.java.md b/docs/user.java.md index 6f160f3db..437f6f4b8 100644 --- a/docs/user.java.md +++ b/docs/user.java.md @@ -641,9 +641,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putPasswordHash | *No description.* | | resetCity | *No description.* | | resetCostCenter | *No description.* | @@ -875,6 +878,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -906,6 +915,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 @@ -931,6 +958,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". + +--- + ##### `putPasswordHash` ```java diff --git a/docs/user.python.md b/docs/user.python.md index de0e16854..b8adcbf13 100644 --- a/docs/user.python.md +++ b/docs/user.python.md @@ -637,9 +637,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_password_hash | *No description.* | | reset_city | *No description.* | | reset_cost_center | *No description.* | @@ -896,6 +899,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -931,6 +940,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 @@ -958,6 +987,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_password_hash` ```python diff --git a/docs/user.typescript.md b/docs/user.typescript.md index 8a04b03a4..a954ecf38 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". | | putPasswordHash | *No description.* | | resetCity | *No description.* | | resetCostCenter | *No description.* | @@ -300,6 +303,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -330,6 +339,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 @@ -354,6 +381,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". + +--- + ##### `putPasswordHash` ```typescript diff --git a/docs/userAdminRoles.csharp.md b/docs/userAdminRoles.csharp.md index 82e3df891..d874724d8 100644 --- a/docs/userAdminRoles.csharp.md +++ b/docs/userAdminRoles.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". | | ResetDisableNotifications | *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". + +--- + ##### `ResetDisableNotifications` ```csharp diff --git a/docs/userAdminRoles.go.md b/docs/userAdminRoles.go.md index f344209c0..0541fe8e6 100644 --- a/docs/userAdminRoles.go.md +++ b/docs/userAdminRoles.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". | | ResetDisableNotifications | *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". + +--- + ##### `ResetDisableNotifications` ```go diff --git a/docs/userAdminRoles.java.md b/docs/userAdminRoles.java.md index 73b4ececa..58b202c8a 100644 --- a/docs/userAdminRoles.java.md +++ b/docs/userAdminRoles.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". | | resetDisableNotifications | *No description.* | | resetId | *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". + +--- + ##### `resetDisableNotifications` ```java diff --git a/docs/userAdminRoles.python.md b/docs/userAdminRoles.python.md index 6c699db37..82e3ccb42 100644 --- a/docs/userAdminRoles.python.md +++ b/docs/userAdminRoles.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_disable_notifications | *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". + +--- + ##### `reset_disable_notifications` ```python diff --git a/docs/userAdminRoles.typescript.md b/docs/userAdminRoles.typescript.md index d86147a8d..36e9c29b5 100644 --- a/docs/userAdminRoles.typescript.md +++ b/docs/userAdminRoles.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". | | resetDisableNotifications | *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". + +--- + ##### `resetDisableNotifications` ```typescript diff --git a/docs/userBaseSchemaProperty.csharp.md b/docs/userBaseSchemaProperty.csharp.md index b808b958c..4cf4d30c7 100644 --- a/docs/userBaseSchemaProperty.csharp.md +++ b/docs/userBaseSchemaProperty.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.* | | ResetMaster | *No description.* | | ResetPattern | *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". + +--- + ##### `ResetId` ```csharp diff --git a/docs/userBaseSchemaProperty.go.md b/docs/userBaseSchemaProperty.go.md index cba872531..e71924256 100644 --- a/docs/userBaseSchemaProperty.go.md +++ b/docs/userBaseSchemaProperty.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.* | | ResetMaster | *No description.* | | ResetPattern | *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". + +--- + ##### `ResetId` ```go diff --git a/docs/userBaseSchemaProperty.java.md b/docs/userBaseSchemaProperty.java.md index f35be9efc..f91ba9b8f 100644 --- a/docs/userBaseSchemaProperty.java.md +++ b/docs/userBaseSchemaProperty.java.md @@ -230,9 +230,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" 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.* | | resetMaster | *No description.* | | resetPattern | *No description.* | @@ -430,6 +433,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -461,6 +470,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 @@ -486,6 +513,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/userBaseSchemaProperty.python.md b/docs/userBaseSchemaProperty.python.md index 455bee1a5..c71bdb800 100644 --- a/docs/userBaseSchemaProperty.python.md +++ b/docs/userBaseSchemaProperty.python.md @@ -227,9 +227,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_master | *No description.* | | reset_pattern | *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_id` ```python diff --git a/docs/userBaseSchemaProperty.typescript.md b/docs/userBaseSchemaProperty.typescript.md index 15fee8da3..cde73dd61 100644 --- a/docs/userBaseSchemaProperty.typescript.md +++ b/docs/userBaseSchemaProperty.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.* | | resetMaster | *No description.* | | resetPattern | *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". + +--- + ##### `resetId` ```typescript diff --git a/docs/userFactorQuestion.csharp.md b/docs/userFactorQuestion.csharp.md index 03fd90999..01129874c 100644 --- a/docs/userFactorQuestion.csharp.md +++ b/docs/userFactorQuestion.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/userFactorQuestion.go.md b/docs/userFactorQuestion.go.md index 7a849a243..33807858b 100644 --- a/docs/userFactorQuestion.go.md +++ b/docs/userFactorQuestion.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/userFactorQuestion.java.md b/docs/userFactorQuestion.java.md index 3e9540925..8531614ea 100644 --- a/docs/userFactorQuestion.java.md +++ b/docs/userFactorQuestion.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/userFactorQuestion.python.md b/docs/userFactorQuestion.python.md index 477e03722..316aef47e 100644 --- a/docs/userFactorQuestion.python.md +++ b/docs/userFactorQuestion.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/userFactorQuestion.typescript.md b/docs/userFactorQuestion.typescript.md index 62cd91fb2..1db3d5768 100644 --- a/docs/userFactorQuestion.typescript.md +++ b/docs/userFactorQuestion.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/userGroupMemberships.csharp.md b/docs/userGroupMemberships.csharp.md index 6405e5f5b..97bf7efd7 100644 --- a/docs/userGroupMemberships.csharp.md +++ b/docs/userGroupMemberships.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/userGroupMemberships.go.md b/docs/userGroupMemberships.go.md index 4eea12ea0..054e3071f 100644 --- a/docs/userGroupMemberships.go.md +++ b/docs/userGroupMemberships.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/userGroupMemberships.java.md b/docs/userGroupMemberships.java.md index 4503e9d4b..af9ed7805 100644 --- a/docs/userGroupMemberships.java.md +++ b/docs/userGroupMemberships.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/userGroupMemberships.python.md b/docs/userGroupMemberships.python.md index 9e798cdfa..36dd743ee 100644 --- a/docs/userGroupMemberships.python.md +++ b/docs/userGroupMemberships.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/userGroupMemberships.typescript.md b/docs/userGroupMemberships.typescript.md index d4d382b56..839284d8e 100644 --- a/docs/userGroupMemberships.typescript.md +++ b/docs/userGroupMemberships.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/userSchemaProperty.csharp.md b/docs/userSchemaProperty.csharp.md index fff7e266d..bf6b06807 100644 --- a/docs/userSchemaProperty.csharp.md +++ b/docs/userSchemaProperty.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". | | PutArrayOneOf | *No description.* | | PutMasterOverridePriority | *No description.* | | PutOneOf | *No description.* | @@ -282,6 +285,12 @@ private System.Collections.Generic.IDictionary GetStringMapAttri --- +##### `HasResourceMove` + +```csharp +private object HasResourceMove() +``` + ##### `ImportFrom` ```csharp @@ -312,6 +321,24 @@ private IResolvable InterpolationForAttribute(string TerraformAttribute) --- +##### `MoveFromId` + +```csharp +private void MoveFromId(string Id) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `Id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```csharp @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```csharp +private void MoveToId(string Id) +``` + +Moves this resource to the resource corresponding to "id". + +###### `Id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutArrayOneOf` ```csharp diff --git a/docs/userSchemaProperty.go.md b/docs/userSchemaProperty.go.md index a4b9a1c4a..4bd8c694f 100644 --- a/docs/userSchemaProperty.go.md +++ b/docs/userSchemaProperty.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". | | PutArrayOneOf | *No description.* | | PutMasterOverridePriority | *No description.* | | PutOneOf | *No description.* | @@ -282,6 +285,12 @@ func GetStringMapAttribute(terraformAttribute *string) *map[string]*string --- +##### `HasResourceMove` + +```go +func HasResourceMove() interface{} +``` + ##### `ImportFrom` ```go @@ -312,6 +321,24 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable --- +##### `MoveFromId` + +```go +func MoveFromId(id *string) +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* *string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `MoveTo` ```go @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `MoveToId` + +```go +func MoveToId(id *string) +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* *string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `PutArrayOneOf` ```go diff --git a/docs/userSchemaProperty.java.md b/docs/userSchemaProperty.java.md index 8f9874d9b..19ad3fca6 100644 --- a/docs/userSchemaProperty.java.md +++ b/docs/userSchemaProperty.java.md @@ -387,9 +387,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | getNumberMapAttribute | *No description.* | | getStringAttribute | *No description.* | | getStringMapAttribute | *No description.* | +| hasResourceMove | *No description.* | | importFrom | *No description.* | | interpolationForAttribute | *No description.* | +| moveFromId | Move the resource corresponding to "id" to this resource. | | moveTo | Moves this resource to the target resource given by moveTarget. | +| moveToId | Moves this resource to the resource corresponding to "id". | | putArrayOneOf | *No description.* | | putMasterOverridePriority | *No description.* | | putOneOf | *No description.* | @@ -603,6 +606,12 @@ public java.util.Map getStringMapAttribute(j --- +##### `hasResourceMove` + +```java +public TerraformResourceMoveByTarget OR TerraformResourceMoveById hasResourceMove() +``` + ##### `importFrom` ```java @@ -634,6 +643,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 @@ -659,6 +686,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". + +--- + ##### `putArrayOneOf` ```java diff --git a/docs/userSchemaProperty.python.md b/docs/userSchemaProperty.python.md index c11090178..fea704797 100644 --- a/docs/userSchemaProperty.python.md +++ b/docs/userSchemaProperty.python.md @@ -381,9 +381,12 @@ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/okta/ | 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_array_one_of | *No description.* | | put_master_override_priority | *No description.* | | put_one_of | *No description.* | @@ -622,6 +625,12 @@ def get_string_map_attribute( --- +##### `has_resource_move` + +```python +def has_resource_move() -> typing.Union[TerraformResourceMoveByTarget, TerraformResourceMoveById] +``` + ##### `import_from` ```python @@ -657,6 +666,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 @@ -684,6 +713,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_array_one_of` ```python diff --git a/docs/userSchemaProperty.typescript.md b/docs/userSchemaProperty.typescript.md index a3bdc5952..bbcfa4e6d 100644 --- a/docs/userSchemaProperty.typescript.md +++ b/docs/userSchemaProperty.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". | | putArrayOneOf | *No description.* | | putMasterOverridePriority | *No description.* | | putOneOf | *No description.* | @@ -282,6 +285,12 @@ public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: stri --- +##### `hasResourceMove` + +```typescript +public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById +``` + ##### `importFrom` ```typescript @@ -312,6 +321,24 @@ public interpolationForAttribute(terraformAttribute: string): IResolvable --- +##### `moveFromId` + +```typescript +public moveFromId(id: string): void +``` + +Move the resource corresponding to "id" to this resource. + +Note that the resource being moved from must be marked as moved using it's instance function. + +###### `id`Required + +- *Type:* string + +Full id of resource being moved from, e.g. "aws_s3_bucket.example". + +--- + ##### `moveTo` ```typescript @@ -336,6 +363,22 @@ Optional The index corresponding to the key the resource is to appear in the for --- +##### `moveToId` + +```typescript +public moveToId(id: string): void +``` + +Moves this resource to the resource corresponding to "id". + +###### `id`Required + +- *Type:* string + +Full id of resource to move to, e.g. "aws_s3_bucket.example". + +--- + ##### `putArrayOneOf` ```typescript diff --git a/docs/userType.csharp.md b/docs/userType.csharp.md index 3187f37d7..f7aa3fcb2 100644 --- a/docs/userType.csharp.md +++ b/docs/userType.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/userType.go.md b/docs/userType.go.md index 604e89d1a..1d3924a26 100644 --- a/docs/userType.go.md +++ b/docs/userType.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/userType.java.md b/docs/userType.java.md index eb9b6cf93..b31d81d9f 100644 --- a/docs/userType.java.md +++ b/docs/userType.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/userType.python.md b/docs/userType.python.md index b30089865..7bec50297 100644 --- a/docs/userType.python.md +++ b/docs/userType.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/userType.typescript.md b/docs/userType.typescript.md index 03d488b94..8b8aabc10 100644 --- a/docs/userType.typescript.md +++ b/docs/userType.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 c8d39eb24..518124d72 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"