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
pulumi_aws/odb/network.py
CHANGED
|
@@ -30,6 +30,7 @@ class NetworkArgs:
|
|
|
30
30
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
31
31
|
custom_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
32
|
default_dns_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33
|
+
delete_associated_resources: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
33
34
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
34
35
|
s3_policy_document: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35
36
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
@@ -41,6 +42,7 @@ class NetworkArgs:
|
|
|
41
42
|
|
|
42
43
|
The following arguments are optional:
|
|
43
44
|
:param pulumi.Input[_builtins.str] custom_domain_name: The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
|
|
45
|
+
:param pulumi.Input[_builtins.bool] delete_associated_resources: If set to true deletes associated OCI resources. Default false.
|
|
44
46
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
45
47
|
:param pulumi.Input[_builtins.str] s3_policy_document: Specifies the endpoint policy for Amazon S3 access from the ODB network.
|
|
46
48
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A map of tags to assign to the exadata infrastructure. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
@@ -57,6 +59,8 @@ class NetworkArgs:
|
|
|
57
59
|
pulumi.set(__self__, "custom_domain_name", custom_domain_name)
|
|
58
60
|
if default_dns_prefix is not None:
|
|
59
61
|
pulumi.set(__self__, "default_dns_prefix", default_dns_prefix)
|
|
62
|
+
if delete_associated_resources is not None:
|
|
63
|
+
pulumi.set(__self__, "delete_associated_resources", delete_associated_resources)
|
|
60
64
|
if region is not None:
|
|
61
65
|
pulumi.set(__self__, "region", region)
|
|
62
66
|
if s3_policy_document is not None:
|
|
@@ -158,6 +162,18 @@ class NetworkArgs:
|
|
|
158
162
|
def default_dns_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
159
163
|
pulumi.set(self, "default_dns_prefix", value)
|
|
160
164
|
|
|
165
|
+
@_builtins.property
|
|
166
|
+
@pulumi.getter(name="deleteAssociatedResources")
|
|
167
|
+
def delete_associated_resources(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
168
|
+
"""
|
|
169
|
+
If set to true deletes associated OCI resources. Default false.
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "delete_associated_resources")
|
|
172
|
+
|
|
173
|
+
@delete_associated_resources.setter
|
|
174
|
+
def delete_associated_resources(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
175
|
+
pulumi.set(self, "delete_associated_resources", value)
|
|
176
|
+
|
|
161
177
|
@_builtins.property
|
|
162
178
|
@pulumi.getter
|
|
163
179
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -215,6 +231,7 @@ class _NetworkState:
|
|
|
215
231
|
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
216
232
|
custom_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
217
233
|
default_dns_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
|
+
delete_associated_resources: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
218
235
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
219
236
|
managed_services: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkManagedServiceArgs']]]] = None,
|
|
220
237
|
oci_dns_forwarding_configs: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkOciDnsForwardingConfigArgs']]]] = None,
|
|
@@ -239,6 +256,7 @@ class _NetworkState:
|
|
|
239
256
|
:param pulumi.Input[_builtins.str] arn: Amazon Resource Name (ARN) of the odb network resource.
|
|
240
257
|
:param pulumi.Input[_builtins.str] created_at: The date and time when the ODB network was created.
|
|
241
258
|
:param pulumi.Input[_builtins.str] custom_domain_name: The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
|
|
259
|
+
:param pulumi.Input[_builtins.bool] delete_associated_resources: If set to true deletes associated OCI resources. Default false.
|
|
242
260
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkManagedServiceArgs']]] managed_services: The name of the OCI resource anchor for the Exadata infrastructure.
|
|
243
261
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkOciDnsForwardingConfigArgs']]] oci_dns_forwarding_configs: The number of storage servers requested for the Exadata infrastructure.
|
|
244
262
|
:param pulumi.Input[_builtins.str] oci_network_anchor_id: The unique identifier of the OCI network anchor for the ODB network.
|
|
@@ -274,6 +292,8 @@ class _NetworkState:
|
|
|
274
292
|
pulumi.set(__self__, "custom_domain_name", custom_domain_name)
|
|
275
293
|
if default_dns_prefix is not None:
|
|
276
294
|
pulumi.set(__self__, "default_dns_prefix", default_dns_prefix)
|
|
295
|
+
if delete_associated_resources is not None:
|
|
296
|
+
pulumi.set(__self__, "delete_associated_resources", delete_associated_resources)
|
|
277
297
|
if display_name is not None:
|
|
278
298
|
pulumi.set(__self__, "display_name", display_name)
|
|
279
299
|
if managed_services is not None:
|
|
@@ -394,6 +414,18 @@ class _NetworkState:
|
|
|
394
414
|
def default_dns_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
395
415
|
pulumi.set(self, "default_dns_prefix", value)
|
|
396
416
|
|
|
417
|
+
@_builtins.property
|
|
418
|
+
@pulumi.getter(name="deleteAssociatedResources")
|
|
419
|
+
def delete_associated_resources(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
420
|
+
"""
|
|
421
|
+
If set to true deletes associated OCI resources. Default false.
|
|
422
|
+
"""
|
|
423
|
+
return pulumi.get(self, "delete_associated_resources")
|
|
424
|
+
|
|
425
|
+
@delete_associated_resources.setter
|
|
426
|
+
def delete_associated_resources(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
427
|
+
pulumi.set(self, "delete_associated_resources", value)
|
|
428
|
+
|
|
397
429
|
@_builtins.property
|
|
398
430
|
@pulumi.getter(name="displayName")
|
|
399
431
|
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -628,6 +660,7 @@ class Network(pulumi.CustomResource):
|
|
|
628
660
|
client_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
|
|
629
661
|
custom_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
630
662
|
default_dns_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
663
|
+
delete_associated_resources: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
631
664
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
632
665
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
633
666
|
s3_access: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -652,6 +685,7 @@ class Network(pulumi.CustomResource):
|
|
|
652
685
|
:param str resource_name: The name of the resource.
|
|
653
686
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
654
687
|
:param pulumi.Input[_builtins.str] custom_domain_name: The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
|
|
688
|
+
:param pulumi.Input[_builtins.bool] delete_associated_resources: If set to true deletes associated OCI resources. Default false.
|
|
655
689
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
656
690
|
:param pulumi.Input[_builtins.str] s3_access: Specifies the configuration for Amazon S3 access from the ODB network.
|
|
657
691
|
:param pulumi.Input[_builtins.str] s3_policy_document: Specifies the endpoint policy for Amazon S3 access from the ODB network.
|
|
@@ -700,6 +734,7 @@ class Network(pulumi.CustomResource):
|
|
|
700
734
|
client_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
|
|
701
735
|
custom_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
702
736
|
default_dns_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
737
|
+
delete_associated_resources: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
703
738
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
704
739
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
705
740
|
s3_access: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -728,6 +763,7 @@ class Network(pulumi.CustomResource):
|
|
|
728
763
|
__props__.__dict__["client_subnet_cidr"] = client_subnet_cidr
|
|
729
764
|
__props__.__dict__["custom_domain_name"] = custom_domain_name
|
|
730
765
|
__props__.__dict__["default_dns_prefix"] = default_dns_prefix
|
|
766
|
+
__props__.__dict__["delete_associated_resources"] = delete_associated_resources
|
|
731
767
|
if display_name is None and not opts.urn:
|
|
732
768
|
raise TypeError("Missing required property 'display_name'")
|
|
733
769
|
__props__.__dict__["display_name"] = display_name
|
|
@@ -773,6 +809,7 @@ class Network(pulumi.CustomResource):
|
|
|
773
809
|
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
774
810
|
custom_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
775
811
|
default_dns_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
812
|
+
delete_associated_resources: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
776
813
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
777
814
|
managed_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkManagedServiceArgs', 'NetworkManagedServiceArgsDict']]]]] = None,
|
|
778
815
|
oci_dns_forwarding_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkOciDnsForwardingConfigArgs', 'NetworkOciDnsForwardingConfigArgsDict']]]]] = None,
|
|
@@ -802,6 +839,7 @@ class Network(pulumi.CustomResource):
|
|
|
802
839
|
:param pulumi.Input[_builtins.str] arn: Amazon Resource Name (ARN) of the odb network resource.
|
|
803
840
|
:param pulumi.Input[_builtins.str] created_at: The date and time when the ODB network was created.
|
|
804
841
|
:param pulumi.Input[_builtins.str] custom_domain_name: The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
|
|
842
|
+
:param pulumi.Input[_builtins.bool] delete_associated_resources: If set to true deletes associated OCI resources. Default false.
|
|
805
843
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkManagedServiceArgs', 'NetworkManagedServiceArgsDict']]]] managed_services: The name of the OCI resource anchor for the Exadata infrastructure.
|
|
806
844
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkOciDnsForwardingConfigArgs', 'NetworkOciDnsForwardingConfigArgsDict']]]] oci_dns_forwarding_configs: The number of storage servers requested for the Exadata infrastructure.
|
|
807
845
|
:param pulumi.Input[_builtins.str] oci_network_anchor_id: The unique identifier of the OCI network anchor for the ODB network.
|
|
@@ -833,6 +871,7 @@ class Network(pulumi.CustomResource):
|
|
|
833
871
|
__props__.__dict__["created_at"] = created_at
|
|
834
872
|
__props__.__dict__["custom_domain_name"] = custom_domain_name
|
|
835
873
|
__props__.__dict__["default_dns_prefix"] = default_dns_prefix
|
|
874
|
+
__props__.__dict__["delete_associated_resources"] = delete_associated_resources
|
|
836
875
|
__props__.__dict__["display_name"] = display_name
|
|
837
876
|
__props__.__dict__["managed_services"] = managed_services
|
|
838
877
|
__props__.__dict__["oci_dns_forwarding_configs"] = oci_dns_forwarding_configs
|
|
@@ -903,6 +942,14 @@ class Network(pulumi.CustomResource):
|
|
|
903
942
|
def default_dns_prefix(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
904
943
|
return pulumi.get(self, "default_dns_prefix")
|
|
905
944
|
|
|
945
|
+
@_builtins.property
|
|
946
|
+
@pulumi.getter(name="deleteAssociatedResources")
|
|
947
|
+
def delete_associated_resources(self) -> pulumi.Output[_builtins.bool]:
|
|
948
|
+
"""
|
|
949
|
+
If set to true deletes associated OCI resources. Default false.
|
|
950
|
+
"""
|
|
951
|
+
return pulumi.get(self, "delete_associated_resources")
|
|
952
|
+
|
|
906
953
|
@_builtins.property
|
|
907
954
|
@pulumi.getter(name="displayName")
|
|
908
955
|
def display_name(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -33,23 +33,35 @@ if not MYPY:
|
|
|
33
33
|
class OrganizationAccountArgsDict(TypedDict):
|
|
34
34
|
arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
35
35
|
"""
|
|
36
|
-
ARN of the root
|
|
36
|
+
ARN of the root.
|
|
37
37
|
"""
|
|
38
38
|
email: NotRequired[pulumi.Input[_builtins.str]]
|
|
39
39
|
"""
|
|
40
|
-
Email of the account
|
|
40
|
+
Email of the account.
|
|
41
41
|
"""
|
|
42
42
|
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
43
43
|
"""
|
|
44
|
-
Identifier of the root
|
|
44
|
+
Identifier of the root.
|
|
45
|
+
"""
|
|
46
|
+
joined_method: NotRequired[pulumi.Input[_builtins.str]]
|
|
47
|
+
"""
|
|
48
|
+
Method by which the account joined the organization.
|
|
49
|
+
"""
|
|
50
|
+
joined_timestamp: NotRequired[pulumi.Input[_builtins.str]]
|
|
51
|
+
"""
|
|
52
|
+
Date the account became a part of the organization.
|
|
45
53
|
"""
|
|
46
54
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
47
55
|
"""
|
|
48
|
-
|
|
56
|
+
Name of the policy type.
|
|
57
|
+
"""
|
|
58
|
+
state: NotRequired[pulumi.Input[_builtins.str]]
|
|
59
|
+
"""
|
|
60
|
+
State of the account.
|
|
49
61
|
"""
|
|
50
62
|
status: NotRequired[pulumi.Input[_builtins.str]]
|
|
51
63
|
"""
|
|
52
|
-
|
|
64
|
+
Status of the policy type as it relates to the associated root.
|
|
53
65
|
"""
|
|
54
66
|
elif False:
|
|
55
67
|
OrganizationAccountArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -60,14 +72,20 @@ class OrganizationAccountArgs:
|
|
|
60
72
|
arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
61
73
|
email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
62
74
|
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
75
|
+
joined_method: Optional[pulumi.Input[_builtins.str]] = None,
|
|
76
|
+
joined_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
|
|
63
77
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
64
79
|
status: Optional[pulumi.Input[_builtins.str]] = None):
|
|
65
80
|
"""
|
|
66
|
-
:param pulumi.Input[_builtins.str] arn: ARN of the root
|
|
67
|
-
:param pulumi.Input[_builtins.str] email: Email of the account
|
|
68
|
-
:param pulumi.Input[_builtins.str] id: Identifier of the root
|
|
69
|
-
:param pulumi.Input[_builtins.str]
|
|
70
|
-
:param pulumi.Input[_builtins.str]
|
|
81
|
+
:param pulumi.Input[_builtins.str] arn: ARN of the root.
|
|
82
|
+
:param pulumi.Input[_builtins.str] email: Email of the account.
|
|
83
|
+
:param pulumi.Input[_builtins.str] id: Identifier of the root.
|
|
84
|
+
:param pulumi.Input[_builtins.str] joined_method: Method by which the account joined the organization.
|
|
85
|
+
:param pulumi.Input[_builtins.str] joined_timestamp: Date the account became a part of the organization.
|
|
86
|
+
:param pulumi.Input[_builtins.str] name: Name of the policy type.
|
|
87
|
+
:param pulumi.Input[_builtins.str] state: State of the account.
|
|
88
|
+
:param pulumi.Input[_builtins.str] status: Status of the policy type as it relates to the associated root.
|
|
71
89
|
"""
|
|
72
90
|
if arn is not None:
|
|
73
91
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -75,8 +93,17 @@ class OrganizationAccountArgs:
|
|
|
75
93
|
pulumi.set(__self__, "email", email)
|
|
76
94
|
if id is not None:
|
|
77
95
|
pulumi.set(__self__, "id", id)
|
|
96
|
+
if joined_method is not None:
|
|
97
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
98
|
+
if joined_timestamp is not None:
|
|
99
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
78
100
|
if name is not None:
|
|
79
101
|
pulumi.set(__self__, "name", name)
|
|
102
|
+
if state is not None:
|
|
103
|
+
pulumi.set(__self__, "state", state)
|
|
104
|
+
if status is not None:
|
|
105
|
+
warnings.warn("""status is deprecated. Use state instead.""", DeprecationWarning)
|
|
106
|
+
pulumi.log.warn("""status is deprecated: status is deprecated. Use state instead.""")
|
|
80
107
|
if status is not None:
|
|
81
108
|
pulumi.set(__self__, "status", status)
|
|
82
109
|
|
|
@@ -84,7 +111,7 @@ class OrganizationAccountArgs:
|
|
|
84
111
|
@pulumi.getter
|
|
85
112
|
def arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
86
113
|
"""
|
|
87
|
-
ARN of the root
|
|
114
|
+
ARN of the root.
|
|
88
115
|
"""
|
|
89
116
|
return pulumi.get(self, "arn")
|
|
90
117
|
|
|
@@ -96,7 +123,7 @@ class OrganizationAccountArgs:
|
|
|
96
123
|
@pulumi.getter
|
|
97
124
|
def email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
98
125
|
"""
|
|
99
|
-
Email of the account
|
|
126
|
+
Email of the account.
|
|
100
127
|
"""
|
|
101
128
|
return pulumi.get(self, "email")
|
|
102
129
|
|
|
@@ -108,7 +135,7 @@ class OrganizationAccountArgs:
|
|
|
108
135
|
@pulumi.getter
|
|
109
136
|
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
110
137
|
"""
|
|
111
|
-
Identifier of the root
|
|
138
|
+
Identifier of the root.
|
|
112
139
|
"""
|
|
113
140
|
return pulumi.get(self, "id")
|
|
114
141
|
|
|
@@ -116,11 +143,35 @@ class OrganizationAccountArgs:
|
|
|
116
143
|
def id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
117
144
|
pulumi.set(self, "id", value)
|
|
118
145
|
|
|
146
|
+
@_builtins.property
|
|
147
|
+
@pulumi.getter(name="joinedMethod")
|
|
148
|
+
def joined_method(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
149
|
+
"""
|
|
150
|
+
Method by which the account joined the organization.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "joined_method")
|
|
153
|
+
|
|
154
|
+
@joined_method.setter
|
|
155
|
+
def joined_method(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
156
|
+
pulumi.set(self, "joined_method", value)
|
|
157
|
+
|
|
158
|
+
@_builtins.property
|
|
159
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
160
|
+
def joined_timestamp(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
161
|
+
"""
|
|
162
|
+
Date the account became a part of the organization.
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "joined_timestamp")
|
|
165
|
+
|
|
166
|
+
@joined_timestamp.setter
|
|
167
|
+
def joined_timestamp(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
168
|
+
pulumi.set(self, "joined_timestamp", value)
|
|
169
|
+
|
|
119
170
|
@_builtins.property
|
|
120
171
|
@pulumi.getter
|
|
121
172
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
122
173
|
"""
|
|
123
|
-
|
|
174
|
+
Name of the policy type.
|
|
124
175
|
"""
|
|
125
176
|
return pulumi.get(self, "name")
|
|
126
177
|
|
|
@@ -130,9 +181,22 @@ class OrganizationAccountArgs:
|
|
|
130
181
|
|
|
131
182
|
@_builtins.property
|
|
132
183
|
@pulumi.getter
|
|
184
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
185
|
+
"""
|
|
186
|
+
State of the account.
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "state")
|
|
189
|
+
|
|
190
|
+
@state.setter
|
|
191
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
192
|
+
pulumi.set(self, "state", value)
|
|
193
|
+
|
|
194
|
+
@_builtins.property
|
|
195
|
+
@pulumi.getter
|
|
196
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
133
197
|
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
134
198
|
"""
|
|
135
|
-
|
|
199
|
+
Status of the policy type as it relates to the associated root.
|
|
136
200
|
"""
|
|
137
201
|
return pulumi.get(self, "status")
|
|
138
202
|
|
|
@@ -145,23 +209,35 @@ if not MYPY:
|
|
|
145
209
|
class OrganizationNonMasterAccountArgsDict(TypedDict):
|
|
146
210
|
arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
147
211
|
"""
|
|
148
|
-
ARN of the root
|
|
212
|
+
ARN of the root.
|
|
149
213
|
"""
|
|
150
214
|
email: NotRequired[pulumi.Input[_builtins.str]]
|
|
151
215
|
"""
|
|
152
|
-
Email of the account
|
|
216
|
+
Email of the account.
|
|
153
217
|
"""
|
|
154
218
|
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
155
219
|
"""
|
|
156
|
-
Identifier of the root
|
|
220
|
+
Identifier of the root.
|
|
221
|
+
"""
|
|
222
|
+
joined_method: NotRequired[pulumi.Input[_builtins.str]]
|
|
223
|
+
"""
|
|
224
|
+
Method by which the account joined the organization.
|
|
225
|
+
"""
|
|
226
|
+
joined_timestamp: NotRequired[pulumi.Input[_builtins.str]]
|
|
227
|
+
"""
|
|
228
|
+
Date the account became a part of the organization.
|
|
157
229
|
"""
|
|
158
230
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
159
231
|
"""
|
|
160
|
-
|
|
232
|
+
Name of the policy type.
|
|
233
|
+
"""
|
|
234
|
+
state: NotRequired[pulumi.Input[_builtins.str]]
|
|
235
|
+
"""
|
|
236
|
+
State of the account.
|
|
161
237
|
"""
|
|
162
238
|
status: NotRequired[pulumi.Input[_builtins.str]]
|
|
163
239
|
"""
|
|
164
|
-
|
|
240
|
+
Status of the policy type as it relates to the associated root.
|
|
165
241
|
"""
|
|
166
242
|
elif False:
|
|
167
243
|
OrganizationNonMasterAccountArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -172,14 +248,20 @@ class OrganizationNonMasterAccountArgs:
|
|
|
172
248
|
arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
173
249
|
email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
174
250
|
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
251
|
+
joined_method: Optional[pulumi.Input[_builtins.str]] = None,
|
|
252
|
+
joined_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
|
|
175
253
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
254
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
176
255
|
status: Optional[pulumi.Input[_builtins.str]] = None):
|
|
177
256
|
"""
|
|
178
|
-
:param pulumi.Input[_builtins.str] arn: ARN of the root
|
|
179
|
-
:param pulumi.Input[_builtins.str] email: Email of the account
|
|
180
|
-
:param pulumi.Input[_builtins.str] id: Identifier of the root
|
|
181
|
-
:param pulumi.Input[_builtins.str]
|
|
182
|
-
:param pulumi.Input[_builtins.str]
|
|
257
|
+
:param pulumi.Input[_builtins.str] arn: ARN of the root.
|
|
258
|
+
:param pulumi.Input[_builtins.str] email: Email of the account.
|
|
259
|
+
:param pulumi.Input[_builtins.str] id: Identifier of the root.
|
|
260
|
+
:param pulumi.Input[_builtins.str] joined_method: Method by which the account joined the organization.
|
|
261
|
+
:param pulumi.Input[_builtins.str] joined_timestamp: Date the account became a part of the organization.
|
|
262
|
+
:param pulumi.Input[_builtins.str] name: Name of the policy type.
|
|
263
|
+
:param pulumi.Input[_builtins.str] state: State of the account.
|
|
264
|
+
:param pulumi.Input[_builtins.str] status: Status of the policy type as it relates to the associated root.
|
|
183
265
|
"""
|
|
184
266
|
if arn is not None:
|
|
185
267
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -187,8 +269,17 @@ class OrganizationNonMasterAccountArgs:
|
|
|
187
269
|
pulumi.set(__self__, "email", email)
|
|
188
270
|
if id is not None:
|
|
189
271
|
pulumi.set(__self__, "id", id)
|
|
272
|
+
if joined_method is not None:
|
|
273
|
+
pulumi.set(__self__, "joined_method", joined_method)
|
|
274
|
+
if joined_timestamp is not None:
|
|
275
|
+
pulumi.set(__self__, "joined_timestamp", joined_timestamp)
|
|
190
276
|
if name is not None:
|
|
191
277
|
pulumi.set(__self__, "name", name)
|
|
278
|
+
if state is not None:
|
|
279
|
+
pulumi.set(__self__, "state", state)
|
|
280
|
+
if status is not None:
|
|
281
|
+
warnings.warn("""status is deprecated. Use state instead.""", DeprecationWarning)
|
|
282
|
+
pulumi.log.warn("""status is deprecated: status is deprecated. Use state instead.""")
|
|
192
283
|
if status is not None:
|
|
193
284
|
pulumi.set(__self__, "status", status)
|
|
194
285
|
|
|
@@ -196,7 +287,7 @@ class OrganizationNonMasterAccountArgs:
|
|
|
196
287
|
@pulumi.getter
|
|
197
288
|
def arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
198
289
|
"""
|
|
199
|
-
ARN of the root
|
|
290
|
+
ARN of the root.
|
|
200
291
|
"""
|
|
201
292
|
return pulumi.get(self, "arn")
|
|
202
293
|
|
|
@@ -208,7 +299,7 @@ class OrganizationNonMasterAccountArgs:
|
|
|
208
299
|
@pulumi.getter
|
|
209
300
|
def email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
210
301
|
"""
|
|
211
|
-
Email of the account
|
|
302
|
+
Email of the account.
|
|
212
303
|
"""
|
|
213
304
|
return pulumi.get(self, "email")
|
|
214
305
|
|
|
@@ -220,7 +311,7 @@ class OrganizationNonMasterAccountArgs:
|
|
|
220
311
|
@pulumi.getter
|
|
221
312
|
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
222
313
|
"""
|
|
223
|
-
Identifier of the root
|
|
314
|
+
Identifier of the root.
|
|
224
315
|
"""
|
|
225
316
|
return pulumi.get(self, "id")
|
|
226
317
|
|
|
@@ -228,11 +319,35 @@ class OrganizationNonMasterAccountArgs:
|
|
|
228
319
|
def id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
229
320
|
pulumi.set(self, "id", value)
|
|
230
321
|
|
|
322
|
+
@_builtins.property
|
|
323
|
+
@pulumi.getter(name="joinedMethod")
|
|
324
|
+
def joined_method(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
325
|
+
"""
|
|
326
|
+
Method by which the account joined the organization.
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "joined_method")
|
|
329
|
+
|
|
330
|
+
@joined_method.setter
|
|
331
|
+
def joined_method(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
332
|
+
pulumi.set(self, "joined_method", value)
|
|
333
|
+
|
|
334
|
+
@_builtins.property
|
|
335
|
+
@pulumi.getter(name="joinedTimestamp")
|
|
336
|
+
def joined_timestamp(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
337
|
+
"""
|
|
338
|
+
Date the account became a part of the organization.
|
|
339
|
+
"""
|
|
340
|
+
return pulumi.get(self, "joined_timestamp")
|
|
341
|
+
|
|
342
|
+
@joined_timestamp.setter
|
|
343
|
+
def joined_timestamp(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
344
|
+
pulumi.set(self, "joined_timestamp", value)
|
|
345
|
+
|
|
231
346
|
@_builtins.property
|
|
232
347
|
@pulumi.getter
|
|
233
348
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
234
349
|
"""
|
|
235
|
-
|
|
350
|
+
Name of the policy type.
|
|
236
351
|
"""
|
|
237
352
|
return pulumi.get(self, "name")
|
|
238
353
|
|
|
@@ -242,9 +357,22 @@ class OrganizationNonMasterAccountArgs:
|
|
|
242
357
|
|
|
243
358
|
@_builtins.property
|
|
244
359
|
@pulumi.getter
|
|
360
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
361
|
+
"""
|
|
362
|
+
State of the account.
|
|
363
|
+
"""
|
|
364
|
+
return pulumi.get(self, "state")
|
|
365
|
+
|
|
366
|
+
@state.setter
|
|
367
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
368
|
+
pulumi.set(self, "state", value)
|
|
369
|
+
|
|
370
|
+
@_builtins.property
|
|
371
|
+
@pulumi.getter
|
|
372
|
+
@_utilities.deprecated("""status is deprecated. Use state instead.""")
|
|
245
373
|
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
246
374
|
"""
|
|
247
|
-
|
|
375
|
+
Status of the policy type as it relates to the associated root.
|
|
248
376
|
"""
|
|
249
377
|
return pulumi.get(self, "status")
|
|
250
378
|
|
|
@@ -257,15 +385,15 @@ if not MYPY:
|
|
|
257
385
|
class OrganizationRootArgsDict(TypedDict):
|
|
258
386
|
arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
259
387
|
"""
|
|
260
|
-
ARN of the root
|
|
388
|
+
ARN of the root.
|
|
261
389
|
"""
|
|
262
390
|
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
263
391
|
"""
|
|
264
|
-
Identifier of the root
|
|
392
|
+
Identifier of the root.
|
|
265
393
|
"""
|
|
266
394
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
267
395
|
"""
|
|
268
|
-
|
|
396
|
+
Name of the policy type.
|
|
269
397
|
"""
|
|
270
398
|
policy_types: NotRequired[pulumi.Input[Sequence[pulumi.Input['OrganizationRootPolicyTypeArgsDict']]]]
|
|
271
399
|
"""
|
|
@@ -282,9 +410,9 @@ class OrganizationRootArgs:
|
|
|
282
410
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
283
411
|
policy_types: Optional[pulumi.Input[Sequence[pulumi.Input['OrganizationRootPolicyTypeArgs']]]] = None):
|
|
284
412
|
"""
|
|
285
|
-
:param pulumi.Input[_builtins.str] arn: ARN of the root
|
|
286
|
-
:param pulumi.Input[_builtins.str] id: Identifier of the root
|
|
287
|
-
:param pulumi.Input[_builtins.str] name:
|
|
413
|
+
:param pulumi.Input[_builtins.str] arn: ARN of the root.
|
|
414
|
+
:param pulumi.Input[_builtins.str] id: Identifier of the root.
|
|
415
|
+
:param pulumi.Input[_builtins.str] name: Name of the policy type.
|
|
288
416
|
:param pulumi.Input[Sequence[pulumi.Input['OrganizationRootPolicyTypeArgs']]] policy_types: List of policy types enabled for this root. All elements have these attributes:
|
|
289
417
|
"""
|
|
290
418
|
if arn is not None:
|
|
@@ -300,7 +428,7 @@ class OrganizationRootArgs:
|
|
|
300
428
|
@pulumi.getter
|
|
301
429
|
def arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
302
430
|
"""
|
|
303
|
-
ARN of the root
|
|
431
|
+
ARN of the root.
|
|
304
432
|
"""
|
|
305
433
|
return pulumi.get(self, "arn")
|
|
306
434
|
|
|
@@ -312,7 +440,7 @@ class OrganizationRootArgs:
|
|
|
312
440
|
@pulumi.getter
|
|
313
441
|
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
314
442
|
"""
|
|
315
|
-
Identifier of the root
|
|
443
|
+
Identifier of the root.
|
|
316
444
|
"""
|
|
317
445
|
return pulumi.get(self, "id")
|
|
318
446
|
|
|
@@ -324,7 +452,7 @@ class OrganizationRootArgs:
|
|
|
324
452
|
@pulumi.getter
|
|
325
453
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
326
454
|
"""
|
|
327
|
-
|
|
455
|
+
Name of the policy type.
|
|
328
456
|
"""
|
|
329
457
|
return pulumi.get(self, "name")
|
|
330
458
|
|
|
@@ -349,7 +477,7 @@ if not MYPY:
|
|
|
349
477
|
class OrganizationRootPolicyTypeArgsDict(TypedDict):
|
|
350
478
|
status: NotRequired[pulumi.Input[_builtins.str]]
|
|
351
479
|
"""
|
|
352
|
-
|
|
480
|
+
Status of the policy type as it relates to the associated root.
|
|
353
481
|
"""
|
|
354
482
|
type: NotRequired[pulumi.Input[_builtins.str]]
|
|
355
483
|
elif False:
|
|
@@ -361,7 +489,7 @@ class OrganizationRootPolicyTypeArgs:
|
|
|
361
489
|
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
362
490
|
type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
363
491
|
"""
|
|
364
|
-
:param pulumi.Input[_builtins.str] status:
|
|
492
|
+
:param pulumi.Input[_builtins.str] status: Status of the policy type as it relates to the associated root.
|
|
365
493
|
"""
|
|
366
494
|
if status is not None:
|
|
367
495
|
pulumi.set(__self__, "status", status)
|
|
@@ -372,7 +500,7 @@ class OrganizationRootPolicyTypeArgs:
|
|
|
372
500
|
@pulumi.getter
|
|
373
501
|
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
374
502
|
"""
|
|
375
|
-
|
|
503
|
+
Status of the policy type as it relates to the associated root.
|
|
376
504
|
"""
|
|
377
505
|
return pulumi.get(self, "status")
|
|
378
506
|
|