pulumi-aws 7.9.0a1760704543__py3-none-any.whl → 7.9.1__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.
Files changed (73) hide show
  1. pulumi_aws/__init__.py +91 -0
  2. pulumi_aws/amp/__init__.py +1 -0
  3. pulumi_aws/amp/_inputs.py +74 -0
  4. pulumi_aws/amp/outputs.py +44 -0
  5. pulumi_aws/amp/resource_policy.py +558 -0
  6. pulumi_aws/bedrock/__init__.py +7 -0
  7. pulumi_aws/bedrock/_inputs.py +4218 -0
  8. pulumi_aws/bedrock/agentcore_agent_runtime.py +1056 -0
  9. pulumi_aws/bedrock/agentcore_agent_runtime_endpoint.py +557 -0
  10. pulumi_aws/bedrock/agentcore_api_key_credential_provider.py +389 -0
  11. pulumi_aws/bedrock/agentcore_browser.py +683 -0
  12. pulumi_aws/bedrock/agentcore_code_interpreter.py +620 -0
  13. pulumi_aws/bedrock/agentcore_gateway.py +974 -0
  14. pulumi_aws/bedrock/agentcore_gateway_target.py +789 -0
  15. pulumi_aws/bedrock/outputs.py +3254 -0
  16. pulumi_aws/cloudwatch/_inputs.py +9 -3
  17. pulumi_aws/cloudwatch/metric_alarm.py +77 -15
  18. pulumi_aws/cloudwatch/outputs.py +6 -2
  19. pulumi_aws/codebuild/project.py +54 -0
  20. pulumi_aws/datazone/environment.py +23 -13
  21. pulumi_aws/dms/endpoint.py +7 -7
  22. pulumi_aws/ec2/__init__.py +1 -0
  23. pulumi_aws/ec2/_inputs.py +55 -3
  24. pulumi_aws/ec2/get_vpn_connection.py +373 -0
  25. pulumi_aws/ec2/outputs.py +106 -2
  26. pulumi_aws/ec2/route.py +0 -16
  27. pulumi_aws/ec2/route_table.py +14 -12
  28. pulumi_aws/ec2transitgateway/get_direct_connect_gateway_attachment.py +4 -0
  29. pulumi_aws/ec2transitgateway/get_vpc_attachment.py +4 -0
  30. pulumi_aws/ec2transitgateway/route_table_association.py +102 -0
  31. pulumi_aws/ec2transitgateway/route_table_propagation.py +102 -0
  32. pulumi_aws/emrserverless/_inputs.py +54 -0
  33. pulumi_aws/emrserverless/application.py +47 -0
  34. pulumi_aws/emrserverless/outputs.py +51 -0
  35. pulumi_aws/lakeformation/permissions.py +24 -18
  36. pulumi_aws/lambda_/_inputs.py +406 -2
  37. pulumi_aws/lambda_/outputs.py +292 -2
  38. pulumi_aws/odb/__init__.py +5 -0
  39. pulumi_aws/odb/_inputs.py +109 -0
  40. pulumi_aws/odb/cloud_autonomous_vm_cluster.py +12 -12
  41. pulumi_aws/odb/cloud_exadata_infrastructure.py +4 -4
  42. pulumi_aws/odb/cloud_vm_cluster.py +12 -12
  43. pulumi_aws/odb/get_cloud_autonomous_vm_clusters.py +132 -0
  44. pulumi_aws/odb/get_cloud_exadata_infrastructures.py +132 -0
  45. pulumi_aws/odb/get_cloud_vm_clusters.py +132 -0
  46. pulumi_aws/odb/get_db_system_shapes.py +1 -1
  47. pulumi_aws/odb/get_network_peering_connection.py +3 -3
  48. pulumi_aws/odb/get_network_peering_connections.py +139 -0
  49. pulumi_aws/odb/get_networks.py +128 -0
  50. pulumi_aws/odb/outputs.py +499 -0
  51. pulumi_aws/pulumi-plugin.json +1 -1
  52. pulumi_aws/quicksight/account_subscription.py +143 -2
  53. pulumi_aws/rds/__init__.py +1 -0
  54. pulumi_aws/rds/get_global_cluster.py +289 -0
  55. pulumi_aws/rds/outputs.py +30 -0
  56. pulumi_aws/servicediscovery/service.py +9 -9
  57. pulumi_aws/ssm/default_patch_baseline.py +7 -0
  58. pulumi_aws/ssmcontacts/contact.py +18 -6
  59. pulumi_aws/transfer/__init__.py +3 -0
  60. pulumi_aws/transfer/_inputs.py +125 -0
  61. pulumi_aws/transfer/host_key.py +474 -0
  62. pulumi_aws/transfer/outputs.py +109 -0
  63. pulumi_aws/transfer/web_app.py +649 -0
  64. pulumi_aws/transfer/web_app_customization.py +348 -0
  65. pulumi_aws/vpclattice/resource_gateway.py +47 -0
  66. pulumi_aws/vpn/__init__.py +11 -0
  67. pulumi_aws/vpn/_inputs.py +73 -0
  68. pulumi_aws/vpn/get_connection.py +377 -0
  69. pulumi_aws/vpn/outputs.py +123 -0
  70. {pulumi_aws-7.9.0a1760704543.dist-info → pulumi_aws-7.9.1.dist-info}/METADATA +1 -1
  71. {pulumi_aws-7.9.0a1760704543.dist-info → pulumi_aws-7.9.1.dist-info}/RECORD +73 -51
  72. {pulumi_aws-7.9.0a1760704543.dist-info → pulumi_aws-7.9.1.dist-info}/WHEEL +0 -0
  73. {pulumi_aws-7.9.0a1760704543.dist-info → pulumi_aws-7.9.1.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py CHANGED
@@ -459,6 +459,8 @@ if typing.TYPE_CHECKING:
459
459
  vpc = __vpc
460
460
  import pulumi_aws.vpclattice as __vpclattice
461
461
  vpclattice = __vpclattice
462
+ import pulumi_aws.vpn as __vpn
463
+ vpn = __vpn
462
464
  import pulumi_aws.waf as __waf
463
465
  waf = __waf
464
466
  import pulumi_aws.wafregional as __wafregional
@@ -689,6 +691,7 @@ else:
689
691
  verifiedpermissions = _utilities.lazy_import('pulumi_aws.verifiedpermissions')
690
692
  vpc = _utilities.lazy_import('pulumi_aws.vpc')
691
693
  vpclattice = _utilities.lazy_import('pulumi_aws.vpclattice')
694
+ vpn = _utilities.lazy_import('pulumi_aws.vpn')
692
695
  waf = _utilities.lazy_import('pulumi_aws.waf')
693
696
  wafregional = _utilities.lazy_import('pulumi_aws.wafregional')
694
697
  wafv2 = _utilities.lazy_import('pulumi_aws.wafv2')
@@ -859,6 +862,14 @@ _utilities.register(
859
862
  "aws:amp/queryLoggingConfiguration:QueryLoggingConfiguration": "QueryLoggingConfiguration"
860
863
  }
861
864
  },
865
+ {
866
+ "pkg": "aws",
867
+ "mod": "amp/resourcePolicy",
868
+ "fqn": "pulumi_aws.amp",
869
+ "classes": {
870
+ "aws:amp/resourcePolicy:ResourcePolicy": "ResourcePolicy"
871
+ }
872
+ },
862
873
  {
863
874
  "pkg": "aws",
864
875
  "mod": "amp/ruleGroupNamespace",
@@ -2083,6 +2094,62 @@ _utilities.register(
2083
2094
  "aws:bedrock/agentPrompt:AgentPrompt": "AgentPrompt"
2084
2095
  }
2085
2096
  },
2097
+ {
2098
+ "pkg": "aws",
2099
+ "mod": "bedrock/agentcoreAgentRuntime",
2100
+ "fqn": "pulumi_aws.bedrock",
2101
+ "classes": {
2102
+ "aws:bedrock/agentcoreAgentRuntime:AgentcoreAgentRuntime": "AgentcoreAgentRuntime"
2103
+ }
2104
+ },
2105
+ {
2106
+ "pkg": "aws",
2107
+ "mod": "bedrock/agentcoreAgentRuntimeEndpoint",
2108
+ "fqn": "pulumi_aws.bedrock",
2109
+ "classes": {
2110
+ "aws:bedrock/agentcoreAgentRuntimeEndpoint:AgentcoreAgentRuntimeEndpoint": "AgentcoreAgentRuntimeEndpoint"
2111
+ }
2112
+ },
2113
+ {
2114
+ "pkg": "aws",
2115
+ "mod": "bedrock/agentcoreApiKeyCredentialProvider",
2116
+ "fqn": "pulumi_aws.bedrock",
2117
+ "classes": {
2118
+ "aws:bedrock/agentcoreApiKeyCredentialProvider:AgentcoreApiKeyCredentialProvider": "AgentcoreApiKeyCredentialProvider"
2119
+ }
2120
+ },
2121
+ {
2122
+ "pkg": "aws",
2123
+ "mod": "bedrock/agentcoreBrowser",
2124
+ "fqn": "pulumi_aws.bedrock",
2125
+ "classes": {
2126
+ "aws:bedrock/agentcoreBrowser:AgentcoreBrowser": "AgentcoreBrowser"
2127
+ }
2128
+ },
2129
+ {
2130
+ "pkg": "aws",
2131
+ "mod": "bedrock/agentcoreCodeInterpreter",
2132
+ "fqn": "pulumi_aws.bedrock",
2133
+ "classes": {
2134
+ "aws:bedrock/agentcoreCodeInterpreter:AgentcoreCodeInterpreter": "AgentcoreCodeInterpreter"
2135
+ }
2136
+ },
2137
+ {
2138
+ "pkg": "aws",
2139
+ "mod": "bedrock/agentcoreGateway",
2140
+ "fqn": "pulumi_aws.bedrock",
2141
+ "classes": {
2142
+ "aws:bedrock/agentcoreGateway:AgentcoreGateway": "AgentcoreGateway"
2143
+ }
2144
+ },
2145
+ {
2146
+ "pkg": "aws",
2147
+ "mod": "bedrock/agentcoreGatewayTarget",
2148
+ "fqn": "pulumi_aws.bedrock",
2149
+ "classes": {
2150
+ "aws:bedrock/agentcoreGatewayTarget:AgentcoreGatewayTarget": "AgentcoreGatewayTarget"
2151
+ }
2152
+ },
2086
2153
  {
2087
2154
  "pkg": "aws",
2088
2155
  "mod": "bedrock/customModel",
@@ -12339,6 +12406,14 @@ _utilities.register(
12339
12406
  "aws:transfer/connector:Connector": "Connector"
12340
12407
  }
12341
12408
  },
12409
+ {
12410
+ "pkg": "aws",
12411
+ "mod": "transfer/hostKey",
12412
+ "fqn": "pulumi_aws.transfer",
12413
+ "classes": {
12414
+ "aws:transfer/hostKey:HostKey": "HostKey"
12415
+ }
12416
+ },
12342
12417
  {
12343
12418
  "pkg": "aws",
12344
12419
  "mod": "transfer/profile",
@@ -12379,6 +12454,22 @@ _utilities.register(
12379
12454
  "aws:transfer/user:User": "User"
12380
12455
  }
12381
12456
  },
12457
+ {
12458
+ "pkg": "aws",
12459
+ "mod": "transfer/webApp",
12460
+ "fqn": "pulumi_aws.transfer",
12461
+ "classes": {
12462
+ "aws:transfer/webApp:WebApp": "WebApp"
12463
+ }
12464
+ },
12465
+ {
12466
+ "pkg": "aws",
12467
+ "mod": "transfer/webAppCustomization",
12468
+ "fqn": "pulumi_aws.transfer",
12469
+ "classes": {
12470
+ "aws:transfer/webAppCustomization:WebAppCustomization": "WebAppCustomization"
12471
+ }
12472
+ },
12382
12473
  {
12383
12474
  "pkg": "aws",
12384
12475
  "mod": "transfer/workflow",
@@ -11,6 +11,7 @@ from .get_default_scraper_configuration import *
11
11
  from .get_workspace import *
12
12
  from .get_workspaces import *
13
13
  from .query_logging_configuration import *
14
+ from .resource_policy import *
14
15
  from .rule_group_namespace import *
15
16
  from .scraper import *
16
17
  from .workspace import *
pulumi_aws/amp/_inputs.py CHANGED
@@ -23,6 +23,8 @@ __all__ = [
23
23
  'QueryLoggingConfigurationDestinationFiltersArgsDict',
24
24
  'QueryLoggingConfigurationTimeoutsArgs',
25
25
  'QueryLoggingConfigurationTimeoutsArgsDict',
26
+ 'ResourcePolicyTimeoutsArgs',
27
+ 'ResourcePolicyTimeoutsArgsDict',
26
28
  'ScraperDestinationArgs',
27
29
  'ScraperDestinationArgsDict',
28
30
  'ScraperDestinationAmpArgs',
@@ -233,6 +235,78 @@ class QueryLoggingConfigurationTimeoutsArgs:
233
235
  pulumi.set(self, "update", value)
234
236
 
235
237
 
238
+ if not MYPY:
239
+ class ResourcePolicyTimeoutsArgsDict(TypedDict):
240
+ create: NotRequired[pulumi.Input[_builtins.str]]
241
+ """
242
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
243
+ """
244
+ delete: NotRequired[pulumi.Input[_builtins.str]]
245
+ """
246
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
247
+ """
248
+ update: NotRequired[pulumi.Input[_builtins.str]]
249
+ """
250
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
251
+ """
252
+ elif False:
253
+ ResourcePolicyTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
254
+
255
+ @pulumi.input_type
256
+ class ResourcePolicyTimeoutsArgs:
257
+ def __init__(__self__, *,
258
+ create: Optional[pulumi.Input[_builtins.str]] = None,
259
+ delete: Optional[pulumi.Input[_builtins.str]] = None,
260
+ update: Optional[pulumi.Input[_builtins.str]] = None):
261
+ """
262
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
263
+ :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
264
+ :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
265
+ """
266
+ if create is not None:
267
+ pulumi.set(__self__, "create", create)
268
+ if delete is not None:
269
+ pulumi.set(__self__, "delete", delete)
270
+ if update is not None:
271
+ pulumi.set(__self__, "update", update)
272
+
273
+ @_builtins.property
274
+ @pulumi.getter
275
+ def create(self) -> Optional[pulumi.Input[_builtins.str]]:
276
+ """
277
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
278
+ """
279
+ return pulumi.get(self, "create")
280
+
281
+ @create.setter
282
+ def create(self, value: Optional[pulumi.Input[_builtins.str]]):
283
+ pulumi.set(self, "create", value)
284
+
285
+ @_builtins.property
286
+ @pulumi.getter
287
+ def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
288
+ """
289
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
290
+ """
291
+ return pulumi.get(self, "delete")
292
+
293
+ @delete.setter
294
+ def delete(self, value: Optional[pulumi.Input[_builtins.str]]):
295
+ pulumi.set(self, "delete", value)
296
+
297
+ @_builtins.property
298
+ @pulumi.getter
299
+ def update(self) -> Optional[pulumi.Input[_builtins.str]]:
300
+ """
301
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
302
+ """
303
+ return pulumi.get(self, "update")
304
+
305
+ @update.setter
306
+ def update(self, value: Optional[pulumi.Input[_builtins.str]]):
307
+ pulumi.set(self, "update", value)
308
+
309
+
236
310
  if not MYPY:
237
311
  class ScraperDestinationArgsDict(TypedDict):
238
312
  amp: NotRequired[pulumi.Input['ScraperDestinationAmpArgsDict']]
pulumi_aws/amp/outputs.py CHANGED
@@ -20,6 +20,7 @@ __all__ = [
20
20
  'QueryLoggingConfigurationDestinationCloudwatchLogs',
21
21
  'QueryLoggingConfigurationDestinationFilters',
22
22
  'QueryLoggingConfigurationTimeouts',
23
+ 'ResourcePolicyTimeouts',
23
24
  'ScraperDestination',
24
25
  'ScraperDestinationAmp',
25
26
  'ScraperRoleConfiguration',
@@ -193,6 +194,49 @@ class QueryLoggingConfigurationTimeouts(dict):
193
194
  return pulumi.get(self, "update")
194
195
 
195
196
 
197
+ @pulumi.output_type
198
+ class ResourcePolicyTimeouts(dict):
199
+ def __init__(__self__, *,
200
+ create: Optional[_builtins.str] = None,
201
+ delete: Optional[_builtins.str] = None,
202
+ update: Optional[_builtins.str] = None):
203
+ """
204
+ :param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
205
+ :param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
206
+ :param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
207
+ """
208
+ if create is not None:
209
+ pulumi.set(__self__, "create", create)
210
+ if delete is not None:
211
+ pulumi.set(__self__, "delete", delete)
212
+ if update is not None:
213
+ pulumi.set(__self__, "update", update)
214
+
215
+ @_builtins.property
216
+ @pulumi.getter
217
+ def create(self) -> Optional[_builtins.str]:
218
+ """
219
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
220
+ """
221
+ return pulumi.get(self, "create")
222
+
223
+ @_builtins.property
224
+ @pulumi.getter
225
+ def delete(self) -> Optional[_builtins.str]:
226
+ """
227
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
228
+ """
229
+ return pulumi.get(self, "delete")
230
+
231
+ @_builtins.property
232
+ @pulumi.getter
233
+ def update(self) -> Optional[_builtins.str]:
234
+ """
235
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
236
+ """
237
+ return pulumi.get(self, "update")
238
+
239
+
196
240
  @pulumi.output_type
197
241
  class ScraperDestination(dict):
198
242
  def __init__(__self__, *,