pulumi-aws 7.9.1__py3-none-any.whl → 7.10.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_aws/__init__.py +40 -0
- pulumi_aws/_inputs.py +40 -0
- pulumi_aws/appstream/_inputs.py +54 -0
- pulumi_aws/appstream/directory_config.py +55 -0
- pulumi_aws/appstream/outputs.py +49 -0
- pulumi_aws/bedrock/__init__.py +5 -0
- pulumi_aws/bedrock/_inputs.py +2097 -0
- pulumi_aws/bedrock/agent_agent.py +9 -7
- pulumi_aws/bedrock/agentcore_api_key_credential_provider.py +122 -1
- pulumi_aws/bedrock/agentcore_memory.py +614 -0
- pulumi_aws/bedrock/agentcore_memory_strategy.py +800 -0
- pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +477 -0
- pulumi_aws/bedrock/agentcore_token_vault_cmk.py +291 -0
- pulumi_aws/bedrock/agentcore_workload_identity.py +359 -0
- pulumi_aws/bedrock/outputs.py +1739 -0
- pulumi_aws/cloudtrail/trail.py +7 -7
- pulumi_aws/config/outputs.py +24 -0
- pulumi_aws/docdb/cluster.py +109 -1
- pulumi_aws/ec2/route.py +12 -0
- pulumi_aws/ecs/task_definition.py +7 -7
- pulumi_aws/fis/_inputs.py +3 -3
- pulumi_aws/fis/outputs.py +2 -2
- pulumi_aws/kms/key_policy.py +7 -7
- pulumi_aws/odb/network.py +47 -0
- pulumi_aws/organizations/_inputs.py +170 -42
- pulumi_aws/organizations/account.py +57 -8
- pulumi_aws/organizations/get_organization.py +7 -7
- pulumi_aws/organizations/organization.py +27 -27
- pulumi_aws/organizations/outputs.py +310 -62
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/rds/cluster.py +102 -1
- pulumi_aws/rds/instance.py +102 -1
- pulumi_aws/redshift/cluster.py +130 -1
- pulumi_aws/redshiftserverless/namespace.py +109 -1
- pulumi_aws/secretsmanager/secret_version.py +122 -1
- pulumi_aws/ssm/parameter.py +145 -2
- pulumi_aws/transfer/host_key.py +75 -1
- pulumi_aws/workspaces/get_workspace.py +19 -0
- {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/RECORD +42 -37
- {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/top_level.txt +0 -0
|
@@ -35,18 +35,43 @@ __all__ = [
|
|
|
35
35
|
|
|
36
36
|
@pulumi.output_type
|
|
37
37
|
class OrganizationAccount(dict):
|
|
38
|
+
@staticmethod
|
|
39
|
+
def __key_warning(key: str):
|
|
40
|
+
suggest = None
|
|
41
|
+
if key == "joinedMethod":
|
|
42
|
+
suggest = "joined_method"
|
|
43
|
+
elif key == "joinedTimestamp":
|
|
44
|
+
suggest = "joined_timestamp"
|
|
45
|
+
|
|
46
|
+
if suggest:
|
|
47
|
+
pulumi.log.warn(f"Key '{key}' not found in OrganizationAccount. Access the value via the '{suggest}' property getter instead.")
|
|
48
|
+
|
|
49
|
+
def __getitem__(self, key: str) -> Any:
|
|
50
|
+
OrganizationAccount.__key_warning(key)
|
|
51
|
+
return super().__getitem__(key)
|
|
52
|
+
|
|
53
|
+
def get(self, key: str, default = None) -> Any:
|
|
54
|
+
OrganizationAccount.__key_warning(key)
|
|
55
|
+
return super().get(key, default)
|
|
56
|
+
|
|
38
57
|
def __init__(__self__, *,
|
|
39
58
|
arn: Optional[_builtins.str] = None,
|
|
40
59
|
email: Optional[_builtins.str] = None,
|
|
41
60
|
id: Optional[_builtins.str] = None,
|
|
61
|
+
joined_method: Optional[_builtins.str] = None,
|
|
62
|
+
joined_timestamp: Optional[_builtins.str] = None,
|
|
42
63
|
name: Optional[_builtins.str] = None,
|
|
64
|
+
state: Optional[_builtins.str] = None,
|
|
43
65
|
status: Optional[_builtins.str] = None):
|
|
44
66
|
"""
|
|
45
|
-
:param _builtins.str arn: ARN of the root
|
|
46
|
-
:param _builtins.str email: Email of the account
|
|
47
|
-
:param _builtins.str id: Identifier of the root
|
|
48
|
-
:param _builtins.str
|
|
49
|
-
:param _builtins.str
|
|
67
|
+
:param _builtins.str arn: ARN of the root.
|
|
68
|
+
:param _builtins.str email: Email of the account.
|
|
69
|
+
:param _builtins.str id: Identifier of the root.
|
|
70
|
+
:param _builtins.str joined_method: Method by which the account joined the organization.
|
|
71
|
+
:param _builtins.str joined_timestamp: Date the account became a part of the organization.
|
|
72
|
+
:param _builtins.str name: Name of the policy type.
|
|
73
|
+
:param _builtins.str state: State of the account.
|
|
74
|
+
:param _builtins.str status: Status of the policy type as it relates to the associated root.
|
|
50
75
|
"""
|
|
51
76
|
if arn is not None:
|
|
52
77
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -54,8 +79,14 @@ class OrganizationAccount(dict):
|
|
|
54
79
|
pulumi.set(__self__, "email", email)
|
|
55
80
|
if id is not None:
|
|
56
81
|
pulumi.set(__self__, "id", id)
|
|
82
|
+
if joined_method is not None:
|
|
83
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
84
|
+
if joined_timestamp is not None:
|
|
85
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
57
86
|
if name is not None:
|
|
58
87
|
pulumi.set(__self__, "name", name)
|
|
88
|
+
if state is not None:
|
|
89
|
+
pulumi.set(__self__, "state", state)
|
|
59
90
|
if status is not None:
|
|
60
91
|
pulumi.set(__self__, "status", status)
|
|
61
92
|
|
|
@@ -63,7 +94,7 @@ class OrganizationAccount(dict):
|
|
|
63
94
|
@pulumi.getter
|
|
64
95
|
def arn(self) -> Optional[_builtins.str]:
|
|
65
96
|
"""
|
|
66
|
-
ARN of the root
|
|
97
|
+
ARN of the root.
|
|
67
98
|
"""
|
|
68
99
|
return pulumi.get(self, "arn")
|
|
69
100
|
|
|
@@ -71,7 +102,7 @@ class OrganizationAccount(dict):
|
|
|
71
102
|
@pulumi.getter
|
|
72
103
|
def email(self) -> Optional[_builtins.str]:
|
|
73
104
|
"""
|
|
74
|
-
Email of the account
|
|
105
|
+
Email of the account.
|
|
75
106
|
"""
|
|
76
107
|
return pulumi.get(self, "email")
|
|
77
108
|
|
|
@@ -79,41 +110,91 @@ class OrganizationAccount(dict):
|
|
|
79
110
|
@pulumi.getter
|
|
80
111
|
def id(self) -> Optional[_builtins.str]:
|
|
81
112
|
"""
|
|
82
|
-
Identifier of the root
|
|
113
|
+
Identifier of the root.
|
|
83
114
|
"""
|
|
84
115
|
return pulumi.get(self, "id")
|
|
85
116
|
|
|
117
|
+
@_builtins.property
|
|
118
|
+
@pulumi.getter(name="joinedMethod")
|
|
119
|
+
def joined_method(self) -> Optional[_builtins.str]:
|
|
120
|
+
"""
|
|
121
|
+
Method by which the account joined the organization.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "joined_method")
|
|
124
|
+
|
|
125
|
+
@_builtins.property
|
|
126
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
127
|
+
def joined_timestamp(self) -> Optional[_builtins.str]:
|
|
128
|
+
"""
|
|
129
|
+
Date the account became a part of the organization.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "joined_timestamp")
|
|
132
|
+
|
|
86
133
|
@_builtins.property
|
|
87
134
|
@pulumi.getter
|
|
88
135
|
def name(self) -> Optional[_builtins.str]:
|
|
89
136
|
"""
|
|
90
|
-
|
|
137
|
+
Name of the policy type.
|
|
91
138
|
"""
|
|
92
139
|
return pulumi.get(self, "name")
|
|
93
140
|
|
|
94
141
|
@_builtins.property
|
|
95
142
|
@pulumi.getter
|
|
143
|
+
def state(self) -> Optional[_builtins.str]:
|
|
144
|
+
"""
|
|
145
|
+
State of the account.
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "state")
|
|
148
|
+
|
|
149
|
+
@_builtins.property
|
|
150
|
+
@pulumi.getter
|
|
151
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
96
152
|
def status(self) -> Optional[_builtins.str]:
|
|
97
153
|
"""
|
|
98
|
-
|
|
154
|
+
Status of the policy type as it relates to the associated root.
|
|
99
155
|
"""
|
|
100
156
|
return pulumi.get(self, "status")
|
|
101
157
|
|
|
102
158
|
|
|
103
159
|
@pulumi.output_type
|
|
104
160
|
class OrganizationNonMasterAccount(dict):
|
|
161
|
+
@staticmethod
|
|
162
|
+
def __key_warning(key: str):
|
|
163
|
+
suggest = None
|
|
164
|
+
if key == "joinedMethod":
|
|
165
|
+
suggest = "joined_method"
|
|
166
|
+
elif key == "joinedTimestamp":
|
|
167
|
+
suggest = "joined_timestamp"
|
|
168
|
+
|
|
169
|
+
if suggest:
|
|
170
|
+
pulumi.log.warn(f"Key '{key}' not found in OrganizationNonMasterAccount. Access the value via the '{suggest}' property getter instead.")
|
|
171
|
+
|
|
172
|
+
def __getitem__(self, key: str) -> Any:
|
|
173
|
+
OrganizationNonMasterAccount.__key_warning(key)
|
|
174
|
+
return super().__getitem__(key)
|
|
175
|
+
|
|
176
|
+
def get(self, key: str, default = None) -> Any:
|
|
177
|
+
OrganizationNonMasterAccount.__key_warning(key)
|
|
178
|
+
return super().get(key, default)
|
|
179
|
+
|
|
105
180
|
def __init__(__self__, *,
|
|
106
181
|
arn: Optional[_builtins.str] = None,
|
|
107
182
|
email: Optional[_builtins.str] = None,
|
|
108
183
|
id: Optional[_builtins.str] = None,
|
|
184
|
+
joined_method: Optional[_builtins.str] = None,
|
|
185
|
+
joined_timestamp: Optional[_builtins.str] = None,
|
|
109
186
|
name: Optional[_builtins.str] = None,
|
|
187
|
+
state: Optional[_builtins.str] = None,
|
|
110
188
|
status: Optional[_builtins.str] = None):
|
|
111
189
|
"""
|
|
112
|
-
:param _builtins.str arn: ARN of the root
|
|
113
|
-
:param _builtins.str email: Email of the account
|
|
114
|
-
:param _builtins.str id: Identifier of the root
|
|
115
|
-
:param _builtins.str
|
|
116
|
-
:param _builtins.str
|
|
190
|
+
:param _builtins.str arn: ARN of the root.
|
|
191
|
+
:param _builtins.str email: Email of the account.
|
|
192
|
+
:param _builtins.str id: Identifier of the root.
|
|
193
|
+
:param _builtins.str joined_method: Method by which the account joined the organization.
|
|
194
|
+
:param _builtins.str joined_timestamp: Date the account became a part of the organization.
|
|
195
|
+
:param _builtins.str name: Name of the policy type.
|
|
196
|
+
:param _builtins.str state: State of the account.
|
|
197
|
+
:param _builtins.str status: Status of the policy type as it relates to the associated root.
|
|
117
198
|
"""
|
|
118
199
|
if arn is not None:
|
|
119
200
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -121,8 +202,14 @@ class OrganizationNonMasterAccount(dict):
|
|
|
121
202
|
pulumi.set(__self__, "email", email)
|
|
122
203
|
if id is not None:
|
|
123
204
|
pulumi.set(__self__, "id", id)
|
|
205
|
+
if joined_method is not None:
|
|
206
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
207
|
+
if joined_timestamp is not None:
|
|
208
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
124
209
|
if name is not None:
|
|
125
210
|
pulumi.set(__self__, "name", name)
|
|
211
|
+
if state is not None:
|
|
212
|
+
pulumi.set(__self__, "state", state)
|
|
126
213
|
if status is not None:
|
|
127
214
|
pulumi.set(__self__, "status", status)
|
|
128
215
|
|
|
@@ -130,7 +217,7 @@ class OrganizationNonMasterAccount(dict):
|
|
|
130
217
|
@pulumi.getter
|
|
131
218
|
def arn(self) -> Optional[_builtins.str]:
|
|
132
219
|
"""
|
|
133
|
-
ARN of the root
|
|
220
|
+
ARN of the root.
|
|
134
221
|
"""
|
|
135
222
|
return pulumi.get(self, "arn")
|
|
136
223
|
|
|
@@ -138,7 +225,7 @@ class OrganizationNonMasterAccount(dict):
|
|
|
138
225
|
@pulumi.getter
|
|
139
226
|
def email(self) -> Optional[_builtins.str]:
|
|
140
227
|
"""
|
|
141
|
-
Email of the account
|
|
228
|
+
Email of the account.
|
|
142
229
|
"""
|
|
143
230
|
return pulumi.get(self, "email")
|
|
144
231
|
|
|
@@ -146,23 +233,48 @@ class OrganizationNonMasterAccount(dict):
|
|
|
146
233
|
@pulumi.getter
|
|
147
234
|
def id(self) -> Optional[_builtins.str]:
|
|
148
235
|
"""
|
|
149
|
-
Identifier of the root
|
|
236
|
+
Identifier of the root.
|
|
150
237
|
"""
|
|
151
238
|
return pulumi.get(self, "id")
|
|
152
239
|
|
|
240
|
+
@_builtins.property
|
|
241
|
+
@pulumi.getter(name="joinedMethod")
|
|
242
|
+
def joined_method(self) -> Optional[_builtins.str]:
|
|
243
|
+
"""
|
|
244
|
+
Method by which the account joined the organization.
|
|
245
|
+
"""
|
|
246
|
+
return pulumi.get(self, "joined_method")
|
|
247
|
+
|
|
248
|
+
@_builtins.property
|
|
249
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
250
|
+
def joined_timestamp(self) -> Optional[_builtins.str]:
|
|
251
|
+
"""
|
|
252
|
+
Date the account became a part of the organization.
|
|
253
|
+
"""
|
|
254
|
+
return pulumi.get(self, "joined_timestamp")
|
|
255
|
+
|
|
153
256
|
@_builtins.property
|
|
154
257
|
@pulumi.getter
|
|
155
258
|
def name(self) -> Optional[_builtins.str]:
|
|
156
259
|
"""
|
|
157
|
-
|
|
260
|
+
Name of the policy type.
|
|
158
261
|
"""
|
|
159
262
|
return pulumi.get(self, "name")
|
|
160
263
|
|
|
161
264
|
@_builtins.property
|
|
162
265
|
@pulumi.getter
|
|
266
|
+
def state(self) -> Optional[_builtins.str]:
|
|
267
|
+
"""
|
|
268
|
+
State of the account.
|
|
269
|
+
"""
|
|
270
|
+
return pulumi.get(self, "state")
|
|
271
|
+
|
|
272
|
+
@_builtins.property
|
|
273
|
+
@pulumi.getter
|
|
274
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
163
275
|
def status(self) -> Optional[_builtins.str]:
|
|
164
276
|
"""
|
|
165
|
-
|
|
277
|
+
Status of the policy type as it relates to the associated root.
|
|
166
278
|
"""
|
|
167
279
|
return pulumi.get(self, "status")
|
|
168
280
|
|
|
@@ -192,9 +304,9 @@ class OrganizationRoot(dict):
|
|
|
192
304
|
name: Optional[_builtins.str] = None,
|
|
193
305
|
policy_types: Optional[Sequence['outputs.OrganizationRootPolicyType']] = None):
|
|
194
306
|
"""
|
|
195
|
-
:param _builtins.str arn: ARN of the root
|
|
196
|
-
:param _builtins.str id: Identifier of the root
|
|
197
|
-
:param _builtins.str name:
|
|
307
|
+
:param _builtins.str arn: ARN of the root.
|
|
308
|
+
:param _builtins.str id: Identifier of the root.
|
|
309
|
+
:param _builtins.str name: Name of the policy type.
|
|
198
310
|
:param Sequence['OrganizationRootPolicyTypeArgs'] policy_types: List of policy types enabled for this root. All elements have these attributes:
|
|
199
311
|
"""
|
|
200
312
|
if arn is not None:
|
|
@@ -210,7 +322,7 @@ class OrganizationRoot(dict):
|
|
|
210
322
|
@pulumi.getter
|
|
211
323
|
def arn(self) -> Optional[_builtins.str]:
|
|
212
324
|
"""
|
|
213
|
-
ARN of the root
|
|
325
|
+
ARN of the root.
|
|
214
326
|
"""
|
|
215
327
|
return pulumi.get(self, "arn")
|
|
216
328
|
|
|
@@ -218,7 +330,7 @@ class OrganizationRoot(dict):
|
|
|
218
330
|
@pulumi.getter
|
|
219
331
|
def id(self) -> Optional[_builtins.str]:
|
|
220
332
|
"""
|
|
221
|
-
Identifier of the root
|
|
333
|
+
Identifier of the root.
|
|
222
334
|
"""
|
|
223
335
|
return pulumi.get(self, "id")
|
|
224
336
|
|
|
@@ -226,7 +338,7 @@ class OrganizationRoot(dict):
|
|
|
226
338
|
@pulumi.getter
|
|
227
339
|
def name(self) -> Optional[_builtins.str]:
|
|
228
340
|
"""
|
|
229
|
-
|
|
341
|
+
Name of the policy type.
|
|
230
342
|
"""
|
|
231
343
|
return pulumi.get(self, "name")
|
|
232
344
|
|
|
@@ -245,7 +357,7 @@ class OrganizationRootPolicyType(dict):
|
|
|
245
357
|
status: Optional[_builtins.str] = None,
|
|
246
358
|
type: Optional[_builtins.str] = None):
|
|
247
359
|
"""
|
|
248
|
-
:param _builtins.str status:
|
|
360
|
+
:param _builtins.str status: Status of the policy type as it relates to the associated root.
|
|
249
361
|
"""
|
|
250
362
|
if status is not None:
|
|
251
363
|
pulumi.set(__self__, "status", status)
|
|
@@ -256,7 +368,7 @@ class OrganizationRootPolicyType(dict):
|
|
|
256
368
|
@pulumi.getter
|
|
257
369
|
def status(self) -> Optional[_builtins.str]:
|
|
258
370
|
"""
|
|
259
|
-
|
|
371
|
+
Status of the policy type as it relates to the associated root.
|
|
260
372
|
"""
|
|
261
373
|
return pulumi.get(self, "status")
|
|
262
374
|
|
|
@@ -451,26 +563,35 @@ class GetOrganizationAccountResult(dict):
|
|
|
451
563
|
arn: _builtins.str,
|
|
452
564
|
email: _builtins.str,
|
|
453
565
|
id: _builtins.str,
|
|
566
|
+
joined_method: _builtins.str,
|
|
567
|
+
joined_timestamp: _builtins.str,
|
|
454
568
|
name: _builtins.str,
|
|
569
|
+
state: _builtins.str,
|
|
455
570
|
status: _builtins.str):
|
|
456
571
|
"""
|
|
457
|
-
:param _builtins.str arn: ARN of the root
|
|
458
|
-
:param _builtins.str email: Email of the account
|
|
459
|
-
:param _builtins.str id: Identifier of the root
|
|
460
|
-
:param _builtins.str
|
|
461
|
-
:param _builtins.str
|
|
572
|
+
:param _builtins.str arn: ARN of the root.
|
|
573
|
+
:param _builtins.str email: Email of the account.
|
|
574
|
+
:param _builtins.str id: Identifier of the root.
|
|
575
|
+
:param _builtins.str joined_method: Method by which the account joined the organization.
|
|
576
|
+
:param _builtins.str joined_timestamp: Date the account became a part of the organization.
|
|
577
|
+
:param _builtins.str name: Name of the policy type.
|
|
578
|
+
:param _builtins.str state: State of the account.
|
|
579
|
+
:param _builtins.str status: Status of the policy type as it relates to the associated root.
|
|
462
580
|
"""
|
|
463
581
|
pulumi.set(__self__, "arn", arn)
|
|
464
582
|
pulumi.set(__self__, "email", email)
|
|
465
583
|
pulumi.set(__self__, "id", id)
|
|
584
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
585
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
466
586
|
pulumi.set(__self__, "name", name)
|
|
587
|
+
pulumi.set(__self__, "state", state)
|
|
467
588
|
pulumi.set(__self__, "status", status)
|
|
468
589
|
|
|
469
590
|
@_builtins.property
|
|
470
591
|
@pulumi.getter
|
|
471
592
|
def arn(self) -> _builtins.str:
|
|
472
593
|
"""
|
|
473
|
-
ARN of the root
|
|
594
|
+
ARN of the root.
|
|
474
595
|
"""
|
|
475
596
|
return pulumi.get(self, "arn")
|
|
476
597
|
|
|
@@ -478,7 +599,7 @@ class GetOrganizationAccountResult(dict):
|
|
|
478
599
|
@pulumi.getter
|
|
479
600
|
def email(self) -> _builtins.str:
|
|
480
601
|
"""
|
|
481
|
-
Email of the account
|
|
602
|
+
Email of the account.
|
|
482
603
|
"""
|
|
483
604
|
return pulumi.get(self, "email")
|
|
484
605
|
|
|
@@ -486,23 +607,48 @@ class GetOrganizationAccountResult(dict):
|
|
|
486
607
|
@pulumi.getter
|
|
487
608
|
def id(self) -> _builtins.str:
|
|
488
609
|
"""
|
|
489
|
-
Identifier of the root
|
|
610
|
+
Identifier of the root.
|
|
490
611
|
"""
|
|
491
612
|
return pulumi.get(self, "id")
|
|
492
613
|
|
|
614
|
+
@_builtins.property
|
|
615
|
+
@pulumi.getter(name="joinedMethod")
|
|
616
|
+
def joined_method(self) -> _builtins.str:
|
|
617
|
+
"""
|
|
618
|
+
Method by which the account joined the organization.
|
|
619
|
+
"""
|
|
620
|
+
return pulumi.get(self, "joined_method")
|
|
621
|
+
|
|
622
|
+
@_builtins.property
|
|
623
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
624
|
+
def joined_timestamp(self) -> _builtins.str:
|
|
625
|
+
"""
|
|
626
|
+
Date the account became a part of the organization.
|
|
627
|
+
"""
|
|
628
|
+
return pulumi.get(self, "joined_timestamp")
|
|
629
|
+
|
|
493
630
|
@_builtins.property
|
|
494
631
|
@pulumi.getter
|
|
495
632
|
def name(self) -> _builtins.str:
|
|
496
633
|
"""
|
|
497
|
-
|
|
634
|
+
Name of the policy type.
|
|
498
635
|
"""
|
|
499
636
|
return pulumi.get(self, "name")
|
|
500
637
|
|
|
501
638
|
@_builtins.property
|
|
502
639
|
@pulumi.getter
|
|
640
|
+
def state(self) -> _builtins.str:
|
|
641
|
+
"""
|
|
642
|
+
State of the account.
|
|
643
|
+
"""
|
|
644
|
+
return pulumi.get(self, "state")
|
|
645
|
+
|
|
646
|
+
@_builtins.property
|
|
647
|
+
@pulumi.getter
|
|
648
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
503
649
|
def status(self) -> _builtins.str:
|
|
504
650
|
"""
|
|
505
|
-
|
|
651
|
+
Status of the policy type as it relates to the associated root.
|
|
506
652
|
"""
|
|
507
653
|
return pulumi.get(self, "status")
|
|
508
654
|
|
|
@@ -513,26 +659,35 @@ class GetOrganizationNonMasterAccountResult(dict):
|
|
|
513
659
|
arn: _builtins.str,
|
|
514
660
|
email: _builtins.str,
|
|
515
661
|
id: _builtins.str,
|
|
662
|
+
joined_method: _builtins.str,
|
|
663
|
+
joined_timestamp: _builtins.str,
|
|
516
664
|
name: _builtins.str,
|
|
665
|
+
state: _builtins.str,
|
|
517
666
|
status: _builtins.str):
|
|
518
667
|
"""
|
|
519
|
-
:param _builtins.str arn: ARN of the root
|
|
520
|
-
:param _builtins.str email: Email of the account
|
|
521
|
-
:param _builtins.str id: Identifier of the root
|
|
522
|
-
:param _builtins.str
|
|
523
|
-
:param _builtins.str
|
|
668
|
+
:param _builtins.str arn: ARN of the root.
|
|
669
|
+
:param _builtins.str email: Email of the account.
|
|
670
|
+
:param _builtins.str id: Identifier of the root.
|
|
671
|
+
:param _builtins.str joined_method: Method by which the account joined the organization.
|
|
672
|
+
:param _builtins.str joined_timestamp: Date the account became a part of the organization.
|
|
673
|
+
:param _builtins.str name: Name of the policy type.
|
|
674
|
+
:param _builtins.str state: State of the account.
|
|
675
|
+
:param _builtins.str status: Status of the policy type as it relates to the associated root.
|
|
524
676
|
"""
|
|
525
677
|
pulumi.set(__self__, "arn", arn)
|
|
526
678
|
pulumi.set(__self__, "email", email)
|
|
527
679
|
pulumi.set(__self__, "id", id)
|
|
680
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
681
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
528
682
|
pulumi.set(__self__, "name", name)
|
|
683
|
+
pulumi.set(__self__, "state", state)
|
|
529
684
|
pulumi.set(__self__, "status", status)
|
|
530
685
|
|
|
531
686
|
@_builtins.property
|
|
532
687
|
@pulumi.getter
|
|
533
688
|
def arn(self) -> _builtins.str:
|
|
534
689
|
"""
|
|
535
|
-
ARN of the root
|
|
690
|
+
ARN of the root.
|
|
536
691
|
"""
|
|
537
692
|
return pulumi.get(self, "arn")
|
|
538
693
|
|
|
@@ -540,7 +695,7 @@ class GetOrganizationNonMasterAccountResult(dict):
|
|
|
540
695
|
@pulumi.getter
|
|
541
696
|
def email(self) -> _builtins.str:
|
|
542
697
|
"""
|
|
543
|
-
Email of the account
|
|
698
|
+
Email of the account.
|
|
544
699
|
"""
|
|
545
700
|
return pulumi.get(self, "email")
|
|
546
701
|
|
|
@@ -548,23 +703,48 @@ class GetOrganizationNonMasterAccountResult(dict):
|
|
|
548
703
|
@pulumi.getter
|
|
549
704
|
def id(self) -> _builtins.str:
|
|
550
705
|
"""
|
|
551
|
-
Identifier of the root
|
|
706
|
+
Identifier of the root.
|
|
552
707
|
"""
|
|
553
708
|
return pulumi.get(self, "id")
|
|
554
709
|
|
|
710
|
+
@_builtins.property
|
|
711
|
+
@pulumi.getter(name="joinedMethod")
|
|
712
|
+
def joined_method(self) -> _builtins.str:
|
|
713
|
+
"""
|
|
714
|
+
Method by which the account joined the organization.
|
|
715
|
+
"""
|
|
716
|
+
return pulumi.get(self, "joined_method")
|
|
717
|
+
|
|
718
|
+
@_builtins.property
|
|
719
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
720
|
+
def joined_timestamp(self) -> _builtins.str:
|
|
721
|
+
"""
|
|
722
|
+
Date the account became a part of the organization.
|
|
723
|
+
"""
|
|
724
|
+
return pulumi.get(self, "joined_timestamp")
|
|
725
|
+
|
|
555
726
|
@_builtins.property
|
|
556
727
|
@pulumi.getter
|
|
557
728
|
def name(self) -> _builtins.str:
|
|
558
729
|
"""
|
|
559
|
-
|
|
730
|
+
Name of the policy type.
|
|
560
731
|
"""
|
|
561
732
|
return pulumi.get(self, "name")
|
|
562
733
|
|
|
563
734
|
@_builtins.property
|
|
564
735
|
@pulumi.getter
|
|
736
|
+
def state(self) -> _builtins.str:
|
|
737
|
+
"""
|
|
738
|
+
State of the account.
|
|
739
|
+
"""
|
|
740
|
+
return pulumi.get(self, "state")
|
|
741
|
+
|
|
742
|
+
@_builtins.property
|
|
743
|
+
@pulumi.getter
|
|
744
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
565
745
|
def status(self) -> _builtins.str:
|
|
566
746
|
"""
|
|
567
|
-
|
|
747
|
+
Status of the policy type as it relates to the associated root.
|
|
568
748
|
"""
|
|
569
749
|
return pulumi.get(self, "status")
|
|
570
750
|
|
|
@@ -577,9 +757,9 @@ class GetOrganizationRootResult(dict):
|
|
|
577
757
|
name: _builtins.str,
|
|
578
758
|
policy_types: Sequence['outputs.GetOrganizationRootPolicyTypeResult']):
|
|
579
759
|
"""
|
|
580
|
-
:param _builtins.str arn: ARN of the root
|
|
581
|
-
:param _builtins.str id: Identifier of the root
|
|
582
|
-
:param _builtins.str name:
|
|
760
|
+
:param _builtins.str arn: ARN of the root.
|
|
761
|
+
:param _builtins.str id: Identifier of the root.
|
|
762
|
+
:param _builtins.str name: Name of the policy type.
|
|
583
763
|
:param Sequence['GetOrganizationRootPolicyTypeArgs'] policy_types: List of policy types enabled for this root. All elements have these attributes:
|
|
584
764
|
"""
|
|
585
765
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -591,7 +771,7 @@ class GetOrganizationRootResult(dict):
|
|
|
591
771
|
@pulumi.getter
|
|
592
772
|
def arn(self) -> _builtins.str:
|
|
593
773
|
"""
|
|
594
|
-
ARN of the root
|
|
774
|
+
ARN of the root.
|
|
595
775
|
"""
|
|
596
776
|
return pulumi.get(self, "arn")
|
|
597
777
|
|
|
@@ -599,7 +779,7 @@ class GetOrganizationRootResult(dict):
|
|
|
599
779
|
@pulumi.getter
|
|
600
780
|
def id(self) -> _builtins.str:
|
|
601
781
|
"""
|
|
602
|
-
Identifier of the root
|
|
782
|
+
Identifier of the root.
|
|
603
783
|
"""
|
|
604
784
|
return pulumi.get(self, "id")
|
|
605
785
|
|
|
@@ -607,7 +787,7 @@ class GetOrganizationRootResult(dict):
|
|
|
607
787
|
@pulumi.getter
|
|
608
788
|
def name(self) -> _builtins.str:
|
|
609
789
|
"""
|
|
610
|
-
|
|
790
|
+
Name of the policy type.
|
|
611
791
|
"""
|
|
612
792
|
return pulumi.get(self, "name")
|
|
613
793
|
|
|
@@ -626,7 +806,7 @@ class GetOrganizationRootPolicyTypeResult(dict):
|
|
|
626
806
|
status: _builtins.str,
|
|
627
807
|
type: _builtins.str):
|
|
628
808
|
"""
|
|
629
|
-
:param _builtins.str status:
|
|
809
|
+
:param _builtins.str status: Status of the policy type as it relates to the associated root.
|
|
630
810
|
"""
|
|
631
811
|
pulumi.set(__self__, "status", status)
|
|
632
812
|
pulumi.set(__self__, "type", type)
|
|
@@ -635,7 +815,7 @@ class GetOrganizationRootPolicyTypeResult(dict):
|
|
|
635
815
|
@pulumi.getter
|
|
636
816
|
def status(self) -> _builtins.str:
|
|
637
817
|
"""
|
|
638
|
-
|
|
818
|
+
Status of the policy type as it relates to the associated root.
|
|
639
819
|
"""
|
|
640
820
|
return pulumi.get(self, "status")
|
|
641
821
|
|
|
@@ -651,19 +831,28 @@ class GetOrganizationalUnitChildAccountsAccountResult(dict):
|
|
|
651
831
|
arn: _builtins.str,
|
|
652
832
|
email: _builtins.str,
|
|
653
833
|
id: _builtins.str,
|
|
834
|
+
joined_method: _builtins.str,
|
|
835
|
+
joined_timestamp: _builtins.str,
|
|
654
836
|
name: _builtins.str,
|
|
837
|
+
state: _builtins.str,
|
|
655
838
|
status: _builtins.str):
|
|
656
839
|
"""
|
|
657
840
|
:param _builtins.str arn: The Amazon Resource Name (ARN) of the account.
|
|
658
841
|
:param _builtins.str email: The email address associated with the AWS account.
|
|
659
842
|
:param _builtins.str id: Parent identifier of the organizational units.
|
|
843
|
+
:param _builtins.str joined_method: Method by which the account joined the organization.
|
|
844
|
+
:param _builtins.str joined_timestamp: Date the account became a part of the organization.
|
|
660
845
|
:param _builtins.str name: The friendly name of the account.
|
|
661
|
-
:param _builtins.str
|
|
846
|
+
:param _builtins.str state: State of the account in the organization.
|
|
847
|
+
:param _builtins.str status: (**Deprecated** use `state` instead) Status of the account in the organization.
|
|
662
848
|
"""
|
|
663
849
|
pulumi.set(__self__, "arn", arn)
|
|
664
850
|
pulumi.set(__self__, "email", email)
|
|
665
851
|
pulumi.set(__self__, "id", id)
|
|
852
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
853
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
666
854
|
pulumi.set(__self__, "name", name)
|
|
855
|
+
pulumi.set(__self__, "state", state)
|
|
667
856
|
pulumi.set(__self__, "status", status)
|
|
668
857
|
|
|
669
858
|
@_builtins.property
|
|
@@ -690,6 +879,22 @@ class GetOrganizationalUnitChildAccountsAccountResult(dict):
|
|
|
690
879
|
"""
|
|
691
880
|
return pulumi.get(self, "id")
|
|
692
881
|
|
|
882
|
+
@_builtins.property
|
|
883
|
+
@pulumi.getter(name="joinedMethod")
|
|
884
|
+
def joined_method(self) -> _builtins.str:
|
|
885
|
+
"""
|
|
886
|
+
Method by which the account joined the organization.
|
|
887
|
+
"""
|
|
888
|
+
return pulumi.get(self, "joined_method")
|
|
889
|
+
|
|
890
|
+
@_builtins.property
|
|
891
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
892
|
+
def joined_timestamp(self) -> _builtins.str:
|
|
893
|
+
"""
|
|
894
|
+
Date the account became a part of the organization.
|
|
895
|
+
"""
|
|
896
|
+
return pulumi.get(self, "joined_timestamp")
|
|
897
|
+
|
|
693
898
|
@_builtins.property
|
|
694
899
|
@pulumi.getter
|
|
695
900
|
def name(self) -> _builtins.str:
|
|
@@ -700,9 +905,18 @@ class GetOrganizationalUnitChildAccountsAccountResult(dict):
|
|
|
700
905
|
|
|
701
906
|
@_builtins.property
|
|
702
907
|
@pulumi.getter
|
|
908
|
+
def state(self) -> _builtins.str:
|
|
909
|
+
"""
|
|
910
|
+
State of the account in the organization.
|
|
911
|
+
"""
|
|
912
|
+
return pulumi.get(self, "state")
|
|
913
|
+
|
|
914
|
+
@_builtins.property
|
|
915
|
+
@pulumi.getter
|
|
916
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
703
917
|
def status(self) -> _builtins.str:
|
|
704
918
|
"""
|
|
705
|
-
|
|
919
|
+
(**Deprecated** use `state` instead) Status of the account in the organization.
|
|
706
920
|
"""
|
|
707
921
|
return pulumi.get(self, "status")
|
|
708
922
|
|
|
@@ -713,19 +927,28 @@ class GetOrganizationalUnitDescendantAccountsAccountResult(dict):
|
|
|
713
927
|
arn: _builtins.str,
|
|
714
928
|
email: _builtins.str,
|
|
715
929
|
id: _builtins.str,
|
|
930
|
+
joined_method: _builtins.str,
|
|
931
|
+
joined_timestamp: _builtins.str,
|
|
716
932
|
name: _builtins.str,
|
|
933
|
+
state: _builtins.str,
|
|
717
934
|
status: _builtins.str):
|
|
718
935
|
"""
|
|
719
936
|
:param _builtins.str arn: The Amazon Resource Name (ARN) of the account.
|
|
720
937
|
:param _builtins.str email: The email address associated with the AWS account.
|
|
721
938
|
:param _builtins.str id: Parent identifier of the organizational units.
|
|
722
|
-
:param _builtins.str
|
|
723
|
-
:param _builtins.str
|
|
939
|
+
:param _builtins.str joined_method: Method by which the account joined the organization.
|
|
940
|
+
:param _builtins.str joined_timestamp: Date the account became a part of the organization.
|
|
941
|
+
:param _builtins.str name: Friendly name of the account.
|
|
942
|
+
:param _builtins.str state: State of the account in the organization.
|
|
943
|
+
:param _builtins.str status: (**Deprecated** use `state` instead) Status of the account in the organization.
|
|
724
944
|
"""
|
|
725
945
|
pulumi.set(__self__, "arn", arn)
|
|
726
946
|
pulumi.set(__self__, "email", email)
|
|
727
947
|
pulumi.set(__self__, "id", id)
|
|
948
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
949
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
728
950
|
pulumi.set(__self__, "name", name)
|
|
951
|
+
pulumi.set(__self__, "state", state)
|
|
729
952
|
pulumi.set(__self__, "status", status)
|
|
730
953
|
|
|
731
954
|
@_builtins.property
|
|
@@ -752,19 +975,44 @@ class GetOrganizationalUnitDescendantAccountsAccountResult(dict):
|
|
|
752
975
|
"""
|
|
753
976
|
return pulumi.get(self, "id")
|
|
754
977
|
|
|
978
|
+
@_builtins.property
|
|
979
|
+
@pulumi.getter(name="joinedMethod")
|
|
980
|
+
def joined_method(self) -> _builtins.str:
|
|
981
|
+
"""
|
|
982
|
+
Method by which the account joined the organization.
|
|
983
|
+
"""
|
|
984
|
+
return pulumi.get(self, "joined_method")
|
|
985
|
+
|
|
986
|
+
@_builtins.property
|
|
987
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
988
|
+
def joined_timestamp(self) -> _builtins.str:
|
|
989
|
+
"""
|
|
990
|
+
Date the account became a part of the organization.
|
|
991
|
+
"""
|
|
992
|
+
return pulumi.get(self, "joined_timestamp")
|
|
993
|
+
|
|
755
994
|
@_builtins.property
|
|
756
995
|
@pulumi.getter
|
|
757
996
|
def name(self) -> _builtins.str:
|
|
758
997
|
"""
|
|
759
|
-
|
|
998
|
+
Friendly name of the account.
|
|
760
999
|
"""
|
|
761
1000
|
return pulumi.get(self, "name")
|
|
762
1001
|
|
|
763
1002
|
@_builtins.property
|
|
764
1003
|
@pulumi.getter
|
|
1004
|
+
def state(self) -> _builtins.str:
|
|
1005
|
+
"""
|
|
1006
|
+
State of the account in the organization.
|
|
1007
|
+
"""
|
|
1008
|
+
return pulumi.get(self, "state")
|
|
1009
|
+
|
|
1010
|
+
@_builtins.property
|
|
1011
|
+
@pulumi.getter
|
|
1012
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
765
1013
|
def status(self) -> _builtins.str:
|
|
766
1014
|
"""
|
|
767
|
-
|
|
1015
|
+
(**Deprecated** use `state` instead) Status of the account in the organization.
|
|
768
1016
|
"""
|
|
769
1017
|
return pulumi.get(self, "status")
|
|
770
1018
|
|