pulumi-aws-native 1.38.0a1761803003__py3-none-any.whl → 1.38.0a1762272920__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.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +17 -1
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +9 -0
- pulumi_aws_native/batch/job_definition.py +8 -0
- pulumi_aws_native/batch/outputs.py +6 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/connection.py +30 -1
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +9 -0
- pulumi_aws_native/ecs/_inputs.py +96 -15
- pulumi_aws_native/ecs/outputs.py +60 -10
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/networkfirewall/_inputs.py +7 -0
- pulumi_aws_native/networkfirewall/firewall.py +3 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +3 -0
- pulumi_aws_native/networkfirewall/outputs.py +4 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/_enums.py +3 -0
- pulumi_aws_native/rtbfabric/_inputs.py +70 -0
- pulumi_aws_native/rtbfabric/get_link.py +18 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +51 -0
- pulumi_aws_native/rtbfabric/outputs.py +46 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_inputs.py +9 -0
- pulumi_aws_native/transfer/connector.py +3 -0
- pulumi_aws_native/transfer/get_connector.py +3 -0
- pulumi_aws_native/transfer/outputs.py +6 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +88 -72
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
|
@@ -26,7 +26,10 @@ __all__ = [
|
|
|
26
26
|
|
|
27
27
|
@pulumi.output_type
|
|
28
28
|
class GetWebAclResult:
|
|
29
|
-
def __init__(__self__, arn=None, association_config=None, capacity=None, captcha_config=None, challenge_config=None, custom_response_bodies=None, data_protection_config=None, default_action=None, description=None, id=None, label_namespace=None, on_source_d_do_s_protection_config=None, rules=None, tags=None, token_domains=None, visibility_config=None):
|
|
29
|
+
def __init__(__self__, application_config=None, arn=None, association_config=None, capacity=None, captcha_config=None, challenge_config=None, custom_response_bodies=None, data_protection_config=None, default_action=None, description=None, id=None, label_namespace=None, on_source_d_do_s_protection_config=None, rules=None, tags=None, token_domains=None, visibility_config=None):
|
|
30
|
+
if application_config and not isinstance(application_config, dict):
|
|
31
|
+
raise TypeError("Expected argument 'application_config' to be a dict")
|
|
32
|
+
pulumi.set(__self__, "application_config", application_config)
|
|
30
33
|
if arn and not isinstance(arn, str):
|
|
31
34
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
32
35
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -76,6 +79,14 @@ class GetWebAclResult:
|
|
|
76
79
|
raise TypeError("Expected argument 'visibility_config' to be a dict")
|
|
77
80
|
pulumi.set(__self__, "visibility_config", visibility_config)
|
|
78
81
|
|
|
82
|
+
@_builtins.property
|
|
83
|
+
@pulumi.getter(name="applicationConfig")
|
|
84
|
+
def application_config(self) -> Optional['outputs.WebAclApplicationConfig']:
|
|
85
|
+
"""
|
|
86
|
+
Collection of application attributes.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "application_config")
|
|
89
|
+
|
|
79
90
|
@_builtins.property
|
|
80
91
|
@pulumi.getter
|
|
81
92
|
def arn(self) -> Optional[_builtins.str]:
|
|
@@ -229,6 +240,7 @@ class AwaitableGetWebAclResult(GetWebAclResult):
|
|
|
229
240
|
if False:
|
|
230
241
|
yield self
|
|
231
242
|
return GetWebAclResult(
|
|
243
|
+
application_config=self.application_config,
|
|
232
244
|
arn=self.arn,
|
|
233
245
|
association_config=self.association_config,
|
|
234
246
|
capacity=self.capacity,
|
|
@@ -271,6 +283,7 @@ def get_web_acl(id: Optional[_builtins.str] = None,
|
|
|
271
283
|
__ret__ = pulumi.runtime.invoke('aws-native:wafv2:getWebAcl', __args__, opts=opts, typ=GetWebAclResult).value
|
|
272
284
|
|
|
273
285
|
return AwaitableGetWebAclResult(
|
|
286
|
+
application_config=pulumi.get(__ret__, 'application_config'),
|
|
274
287
|
arn=pulumi.get(__ret__, 'arn'),
|
|
275
288
|
association_config=pulumi.get(__ret__, 'association_config'),
|
|
276
289
|
capacity=pulumi.get(__ret__, 'capacity'),
|
|
@@ -310,6 +323,7 @@ def get_web_acl_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
310
323
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
311
324
|
__ret__ = pulumi.runtime.invoke_output('aws-native:wafv2:getWebAcl', __args__, opts=opts, typ=GetWebAclResult)
|
|
312
325
|
return __ret__.apply(lambda __response__: GetWebAclResult(
|
|
326
|
+
application_config=pulumi.get(__response__, 'application_config'),
|
|
313
327
|
arn=pulumi.get(__response__, 'arn'),
|
|
314
328
|
association_config=pulumi.get(__response__, 'association_config'),
|
|
315
329
|
capacity=pulumi.get(__response__, 'capacity'),
|
|
@@ -87,6 +87,8 @@ __all__ = [
|
|
|
87
87
|
'RuleGroupXssMatchStatement',
|
|
88
88
|
'WebAclAllowAction',
|
|
89
89
|
'WebAclAndStatement',
|
|
90
|
+
'WebAclApplicationAttribute',
|
|
91
|
+
'WebAclApplicationConfig',
|
|
90
92
|
'WebAclAsnMatchStatement',
|
|
91
93
|
'WebAclAssociationConfig',
|
|
92
94
|
'WebAclAwsManagedRulesAcfpRuleSet',
|
|
@@ -4518,6 +4520,49 @@ class WebAclAndStatement(dict):
|
|
|
4518
4520
|
return pulumi.get(self, "statements")
|
|
4519
4521
|
|
|
4520
4522
|
|
|
4523
|
+
@pulumi.output_type
|
|
4524
|
+
class WebAclApplicationAttribute(dict):
|
|
4525
|
+
"""
|
|
4526
|
+
Application details defined during the &webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
4527
|
+
"""
|
|
4528
|
+
def __init__(__self__, *,
|
|
4529
|
+
name: _builtins.str,
|
|
4530
|
+
values: Sequence[_builtins.str]):
|
|
4531
|
+
"""
|
|
4532
|
+
Application details defined during the &webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
4533
|
+
"""
|
|
4534
|
+
pulumi.set(__self__, "name", name)
|
|
4535
|
+
pulumi.set(__self__, "values", values)
|
|
4536
|
+
|
|
4537
|
+
@_builtins.property
|
|
4538
|
+
@pulumi.getter
|
|
4539
|
+
def name(self) -> _builtins.str:
|
|
4540
|
+
return pulumi.get(self, "name")
|
|
4541
|
+
|
|
4542
|
+
@_builtins.property
|
|
4543
|
+
@pulumi.getter
|
|
4544
|
+
def values(self) -> Sequence[_builtins.str]:
|
|
4545
|
+
return pulumi.get(self, "values")
|
|
4546
|
+
|
|
4547
|
+
|
|
4548
|
+
@pulumi.output_type
|
|
4549
|
+
class WebAclApplicationConfig(dict):
|
|
4550
|
+
"""
|
|
4551
|
+
Configures the ability for the WAF; console to store and retrieve application attributes during the webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
4552
|
+
"""
|
|
4553
|
+
def __init__(__self__, *,
|
|
4554
|
+
attributes: Sequence['outputs.WebAclApplicationAttribute']):
|
|
4555
|
+
"""
|
|
4556
|
+
Configures the ability for the WAF; console to store and retrieve application attributes during the webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
4557
|
+
"""
|
|
4558
|
+
pulumi.set(__self__, "attributes", attributes)
|
|
4559
|
+
|
|
4560
|
+
@_builtins.property
|
|
4561
|
+
@pulumi.getter
|
|
4562
|
+
def attributes(self) -> Sequence['outputs.WebAclApplicationAttribute']:
|
|
4563
|
+
return pulumi.get(self, "attributes")
|
|
4564
|
+
|
|
4565
|
+
|
|
4521
4566
|
@pulumi.output_type
|
|
4522
4567
|
class WebAclAsnMatchStatement(dict):
|
|
4523
4568
|
@staticmethod
|
|
@@ -27,6 +27,7 @@ class WebAclArgs:
|
|
|
27
27
|
default_action: pulumi.Input['WebAclDefaultActionArgs'],
|
|
28
28
|
scope: pulumi.Input['WebAclScope'],
|
|
29
29
|
visibility_config: pulumi.Input['WebAclVisibilityConfigArgs'],
|
|
30
|
+
application_config: Optional[pulumi.Input['WebAclApplicationConfigArgs']] = None,
|
|
30
31
|
association_config: Optional[pulumi.Input['WebAclAssociationConfigArgs']] = None,
|
|
31
32
|
captcha_config: Optional[pulumi.Input['WebAclCaptchaConfigArgs']] = None,
|
|
32
33
|
challenge_config: Optional[pulumi.Input['WebAclChallengeConfigArgs']] = None,
|
|
@@ -47,6 +48,7 @@ class WebAclArgs:
|
|
|
47
48
|
|
|
48
49
|
For information about how to define the association of the web ACL with your resource, see `WebACLAssociation` .
|
|
49
50
|
:param pulumi.Input['WebAclVisibilityConfigArgs'] visibility_config: Defines and enables Amazon CloudWatch metrics and web request sample collection.
|
|
51
|
+
:param pulumi.Input['WebAclApplicationConfigArgs'] application_config: Collection of application attributes.
|
|
50
52
|
:param pulumi.Input['WebAclAssociationConfigArgs'] association_config: Specifies custom configurations for the associations between the web ACL and protected resources.
|
|
51
53
|
|
|
52
54
|
Use this to customize the maximum size of the request body that your protected resources forward to AWS WAF for inspection. You can customize this setting for CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resources. The default setting is 16 KB (16,384 bytes).
|
|
@@ -74,6 +76,8 @@ class WebAclArgs:
|
|
|
74
76
|
pulumi.set(__self__, "default_action", default_action)
|
|
75
77
|
pulumi.set(__self__, "scope", scope)
|
|
76
78
|
pulumi.set(__self__, "visibility_config", visibility_config)
|
|
79
|
+
if application_config is not None:
|
|
80
|
+
pulumi.set(__self__, "application_config", application_config)
|
|
77
81
|
if association_config is not None:
|
|
78
82
|
pulumi.set(__self__, "association_config", association_config)
|
|
79
83
|
if captcha_config is not None:
|
|
@@ -137,6 +141,18 @@ class WebAclArgs:
|
|
|
137
141
|
def visibility_config(self, value: pulumi.Input['WebAclVisibilityConfigArgs']):
|
|
138
142
|
pulumi.set(self, "visibility_config", value)
|
|
139
143
|
|
|
144
|
+
@_builtins.property
|
|
145
|
+
@pulumi.getter(name="applicationConfig")
|
|
146
|
+
def application_config(self) -> Optional[pulumi.Input['WebAclApplicationConfigArgs']]:
|
|
147
|
+
"""
|
|
148
|
+
Collection of application attributes.
|
|
149
|
+
"""
|
|
150
|
+
return pulumi.get(self, "application_config")
|
|
151
|
+
|
|
152
|
+
@application_config.setter
|
|
153
|
+
def application_config(self, value: Optional[pulumi.Input['WebAclApplicationConfigArgs']]):
|
|
154
|
+
pulumi.set(self, "application_config", value)
|
|
155
|
+
|
|
140
156
|
@_builtins.property
|
|
141
157
|
@pulumi.getter(name="associationConfig")
|
|
142
158
|
def association_config(self) -> Optional[pulumi.Input['WebAclAssociationConfigArgs']]:
|
|
@@ -288,6 +304,7 @@ class WebAcl(pulumi.CustomResource):
|
|
|
288
304
|
def __init__(__self__,
|
|
289
305
|
resource_name: str,
|
|
290
306
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
307
|
+
application_config: Optional[pulumi.Input[Union['WebAclApplicationConfigArgs', 'WebAclApplicationConfigArgsDict']]] = None,
|
|
291
308
|
association_config: Optional[pulumi.Input[Union['WebAclAssociationConfigArgs', 'WebAclAssociationConfigArgsDict']]] = None,
|
|
292
309
|
captcha_config: Optional[pulumi.Input[Union['WebAclCaptchaConfigArgs', 'WebAclCaptchaConfigArgsDict']]] = None,
|
|
293
310
|
challenge_config: Optional[pulumi.Input[Union['WebAclChallengeConfigArgs', 'WebAclChallengeConfigArgsDict']]] = None,
|
|
@@ -308,6 +325,7 @@ class WebAcl(pulumi.CustomResource):
|
|
|
308
325
|
|
|
309
326
|
:param str resource_name: The name of the resource.
|
|
310
327
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
328
|
+
:param pulumi.Input[Union['WebAclApplicationConfigArgs', 'WebAclApplicationConfigArgsDict']] application_config: Collection of application attributes.
|
|
311
329
|
:param pulumi.Input[Union['WebAclAssociationConfigArgs', 'WebAclAssociationConfigArgsDict']] association_config: Specifies custom configurations for the associations between the web ACL and protected resources.
|
|
312
330
|
|
|
313
331
|
Use this to customize the maximum size of the request body that your protected resources forward to AWS WAF for inspection. You can customize this setting for CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resources. The default setting is 16 KB (16,384 bytes).
|
|
@@ -363,6 +381,7 @@ class WebAcl(pulumi.CustomResource):
|
|
|
363
381
|
def _internal_init(__self__,
|
|
364
382
|
resource_name: str,
|
|
365
383
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
384
|
+
application_config: Optional[pulumi.Input[Union['WebAclApplicationConfigArgs', 'WebAclApplicationConfigArgsDict']]] = None,
|
|
366
385
|
association_config: Optional[pulumi.Input[Union['WebAclAssociationConfigArgs', 'WebAclAssociationConfigArgsDict']]] = None,
|
|
367
386
|
captcha_config: Optional[pulumi.Input[Union['WebAclCaptchaConfigArgs', 'WebAclCaptchaConfigArgsDict']]] = None,
|
|
368
387
|
challenge_config: Optional[pulumi.Input[Union['WebAclChallengeConfigArgs', 'WebAclChallengeConfigArgsDict']]] = None,
|
|
@@ -386,6 +405,7 @@ class WebAcl(pulumi.CustomResource):
|
|
|
386
405
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
387
406
|
__props__ = WebAclArgs.__new__(WebAclArgs)
|
|
388
407
|
|
|
408
|
+
__props__.__dict__["application_config"] = application_config
|
|
389
409
|
__props__.__dict__["association_config"] = association_config
|
|
390
410
|
__props__.__dict__["captcha_config"] = captcha_config
|
|
391
411
|
__props__.__dict__["challenge_config"] = challenge_config
|
|
@@ -434,6 +454,7 @@ class WebAcl(pulumi.CustomResource):
|
|
|
434
454
|
|
|
435
455
|
__props__ = WebAclArgs.__new__(WebAclArgs)
|
|
436
456
|
|
|
457
|
+
__props__.__dict__["application_config"] = None
|
|
437
458
|
__props__.__dict__["arn"] = None
|
|
438
459
|
__props__.__dict__["association_config"] = None
|
|
439
460
|
__props__.__dict__["aws_id"] = None
|
|
@@ -454,6 +475,14 @@ class WebAcl(pulumi.CustomResource):
|
|
|
454
475
|
__props__.__dict__["visibility_config"] = None
|
|
455
476
|
return WebAcl(resource_name, opts=opts, __props__=__props__)
|
|
456
477
|
|
|
478
|
+
@_builtins.property
|
|
479
|
+
@pulumi.getter(name="applicationConfig")
|
|
480
|
+
def application_config(self) -> pulumi.Output[Optional['outputs.WebAclApplicationConfig']]:
|
|
481
|
+
"""
|
|
482
|
+
Collection of application attributes.
|
|
483
|
+
"""
|
|
484
|
+
return pulumi.get(self, "application_config")
|
|
485
|
+
|
|
457
486
|
@_builtins.property
|
|
458
487
|
@pulumi.getter
|
|
459
488
|
def arn(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_aws_native
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.0a1762272920
|
|
4
4
|
Summary: A native Pulumi package for creating and managing Amazon Web Services (AWS) resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|