Skip to content

Commit 29b1ec7

Browse files
committed
cdktf: update d/slug.html.markdown,d/saml_settings.html.markdown,d/project.html.markdown,d/policy_set.html.markdown,d/outputs.html.markdown,d/organizations.html.markdown,d/organization_tags.html.markdown,d/organization_run_task.html.markdown,d/organization_membership.html.markdown,d/organization_members.html.markdown
1 parent 17a8428 commit 29b1ec7

20 files changed

+91
-46
lines changed

website/docs/cdktf/python/d/organization_members.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about members of an organization.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -52,4 +52,4 @@ The `member` block contains:
5252

5353
* `user_id` - The ID of the user.
5454
* `organization_membership_id` - The ID of the organization membership.
55-
<!-- cache-key: cdktf-0.17.1 input-4c032c533c9de727b2406429de451318455dd383062b352da22d3b516529bb5b -->
55+
<!-- cache-key: cdktf-0.18.0 input-4c032c533c9de727b2406429de451318455dd383062b352da22d3b516529bb5b -->

website/docs/cdktf/python/d/organization_membership.html.markdown

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ be updated manually.
2222
### Fetch by email
2323

2424
```python
25-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
25+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2626
from constructs import Construct
2727
from cdktf import TerraformStack
2828
#
@@ -42,7 +42,7 @@ class MyConvertedCode(TerraformStack):
4242
### Fetch by username
4343

4444
```python
45-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
45+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
4646
from constructs import Construct
4747
from cdktf import TerraformStack
4848
#
@@ -59,15 +59,36 @@ class MyConvertedCode(TerraformStack):
5959
)
6060
```
6161

62+
### Fetch by organization membership ID
63+
64+
```python
65+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
66+
from constructs import Construct
67+
from cdktf import TerraformStack
68+
#
69+
# Provider bindings are generated by running `cdktf get`.
70+
# See https://cdk.tf/provider-generation for more details.
71+
#
72+
from imports.tfe.data_tfe_organization_membership import DataTfeOrganizationMembership
73+
class MyConvertedCode(TerraformStack):
74+
def __init__(self, scope, name):
75+
super().__init__(scope, name)
76+
DataTfeOrganizationMembership(self, "test",
77+
organization="my-org-name",
78+
organization_membership_id="ou-xxxxxxxxxxx"
79+
)
80+
```
81+
6282
## Argument Reference
6383

6484
The following arguments are supported:
6585

66-
* `organization` - (Required) Name of the organization.
86+
* `organization` - (Optional) Name of the organization.
6787
* `email` - (Optional) Email of the user.
6888
* `username` - (Optional) The username of the user.
89+
* `organization_membership_id` - (Optional) ID belonging to the organziation membership.
6990

70-
~> **NOTE:** While `email` and `username` are optional arguments, one or the other is required.
91+
~> **NOTE:** While `email` and `username` are optional arguments, one or the other is required if `organization_membership_id` argument is not provided.
7192

7293
## Attributes Reference
7394

@@ -77,4 +98,4 @@ In addition to all arguments above, the following attributes are exported:
7798
* `user_id` - The ID of the user associated with the organization membership.
7899
* `username` - The username of the user associated with the organization membership.
79100

80-
<!-- cache-key: cdktf-0.17.1 input-4a14b3c66d2d0654b6af772796f3c1bdf8871760782092fd770887fd1a21bb84 -->
101+
<!-- cache-key: cdktf-0.18.0 input-d0160d0a09a0b3ce6035db02657e5b320810e469cbd9da4ae71b7158b313258f -->

website/docs/cdktf/python/d/organization_run_task.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use this data source to get information about an [Organization Run tasks](https:
1616
## Example Usage
1717

1818
```python
19-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
19+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2020
from constructs import Construct
2121
from cdktf import TerraformStack
2222
#
@@ -50,4 +50,4 @@ In addition to all arguments above, the following attributes are exported:
5050
* `id` - The ID of the task.
5151
* `url` - URL to send a task payload.
5252

53-
<!-- cache-key: cdktf-0.17.1 input-7ffa3170dbbf69fd581f515eab6eaac9c5c936b21ba712b8803b32966fbb628c -->
53+
<!-- cache-key: cdktf-0.18.0 input-7ffa3170dbbf69fd581f515eab6eaac9c5c936b21ba712b8803b32966fbb628c -->

website/docs/cdktf/python/d/organization_tags.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about the workspace tags for a given org
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -47,4 +47,4 @@ The `tag` block contains:
4747
* `name` - The name of the workspace tag
4848
* `id` - The ID of the workspace tag
4949
* `workspace_count` - The number of workspaces the tag is associate with
50-
<!-- cache-key: cdktf-0.17.1 input-d15c1053d1d117c26eeb6475e9ca3ddc3aafc7a038a9de059581cc65071f7b11 -->
50+
<!-- cache-key: cdktf-0.18.0 input-d15c1053d1d117c26eeb6475e9ca3ddc3aafc7a038a9de059581cc65071f7b11 -->

website/docs/cdktf/python/d/organizations.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get a list of Organizations and a map of their IDs.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -44,4 +44,4 @@ The following attributes are exported:
4444
* `names` - A list of names of every organization.
4545
* `ids` - A map of organization names and their IDs.
4646

47-
<!-- cache-key: cdktf-0.17.1 input-354a91021f4f79c63498ca2f5ff88c87a3b80ebfa8571ca6f38023f333a05e12 -->
47+
<!-- cache-key: cdktf-0.18.0 input-354a91021f4f79c63498ca2f5ff88c87a3b80ebfa8571ca6f38023f333a05e12 -->

website/docs/cdktf/python/d/outputs.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Using the `tfe_outputs` data source, the outputs `foo` and `bar` can be used as
2121
In the example below, assume we have outputs defined in a `my-org/my-workspace`:
2222

2323
```python
24-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
24+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2525
from constructs import Construct
2626
from cdktf import TerraformStack
2727
#
@@ -62,4 +62,4 @@ The following attributes are exported:
6262
* `values` - The current output values for the specified workspace.
6363
* `nonsensitive_values` - The current non-sensitive output values for the specified workspace, this is a subset of all output values.
6464

65-
<!-- cache-key: cdktf-0.17.1 input-c5e0e650228e3496c8423d4ac324d85b57a7698f1129677436d66e6843b6b758 -->
65+
<!-- cache-key: cdktf-0.18.0 input-c5e0e650228e3496c8423d4ac324d85b57a7698f1129677436d66e6843b6b758 -->

website/docs/cdktf/python/d/policy_set.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This data source is used to retrieve a policy set defined in a specified organiz
1616
For workspace policies:
1717

1818
```python
19-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
19+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2020
from constructs import Construct
2121
from cdktf import TerraformStack
2222
#
@@ -66,4 +66,4 @@ The `vcs_repo` block contains:
6666
* `oauth_token_id` - OAuth token ID of the configured VCS connection.
6767

6868

69-
<!-- cache-key: cdktf-0.17.1 input-54cb92dfae22abe76f4a8306daadcae6353d03b00d72dfbb74c8950c625507e0 -->
69+
<!-- cache-key: cdktf-0.18.0 input-54cb92dfae22abe76f4a8306daadcae6353d03b00d72dfbb74c8950c625507e0 -->

website/docs/cdktf/python/d/project.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about a project.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -44,4 +44,4 @@ In addition to all arguments above, the following attributes are exported:
4444

4545
* `id` - The project ID.
4646
* `workspace_ids` - IDs of the workspaces that are associated with the project.
47-
<!-- cache-key: cdktf-0.17.1 input-6d3f57f584544e1199917337f5f8954b7b7709d2cb911131273294430f81b2f2 -->
47+
<!-- cache-key: cdktf-0.18.0 input-6d3f57f584544e1199917337f5f8954b7b7709d2cb911131273294430f81b2f2 -->

website/docs/cdktf/python/d/saml_settings.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use this data source to get information about SAML Settings. It applies only to
1717
Basic usage:
1818

1919
```python
20-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
20+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2121
from constructs import Construct
2222
from cdktf import TerraformStack
2323
#
@@ -74,4 +74,4 @@ The following attributes are exported:
7474
* `signature_signing_method` - Signature Signing Method.
7575
* `signature_digest_method` - Signature Digest Method.
7676

77-
<!-- cache-key: cdktf-0.17.1 input-2995e79c51b29afd8d8b89c5d98dae47701709e1502f993d5be8b2b681de4895 -->
77+
<!-- cache-key: cdktf-0.18.0 input-2995e79c51b29afd8d8b89c5d98dae47701709e1502f993d5be8b2b681de4895 -->

website/docs/cdktf/python/d/slug.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tar file containing configuration files (a Terraform "slug") when those files ch
2121
Tracking a local directory to upload the Sentinel configuration and policies:
2222

2323
```python
24-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
24+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2525
from constructs import Construct
2626
from cdktf import Token, TerraformStack
2727
#
@@ -51,4 +51,4 @@ The following arguments are supported:
5151

5252
* `source_path` - (Required) The path to the directory where the files are located.
5353

54-
<!-- cache-key: cdktf-0.17.1 input-8546d8f7537661b4b2d4d594c4cb0f6ebd1b0e70ae9e1bcc6e145f33bd763e70 -->
54+
<!-- cache-key: cdktf-0.18.0 input-8546d8f7537661b4b2d4d594c4cb0f6ebd1b0e70ae9e1bcc6e145f33bd763e70 -->

0 commit comments

Comments
 (0)