pulumi-aws-native 1.38.0a1762236751__py3-none-any.whl → 1.38.0a1762321314__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 +4 -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/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/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/ecs/_enums.py +1 -0
- 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/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/s3vectors/get_index.py +20 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +20 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +9 -0
- pulumi_aws_native/s3vectors/index.py +102 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +42 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +24 -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.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/RECORD +42 -36
- {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/top_level.txt +0 -0
|
@@ -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.0a1762321314
|
|
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
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_aws_native/__init__.py,sha256
|
|
1
|
+
pulumi_aws_native/__init__.py,sha256=-ERV-69VRPVtwAsy-1h6zI8KISrNFnrfakQXcMmMftU,138872
|
|
2
2
|
pulumi_aws_native/_enums.py,sha256=K4chZ8_yPjqjZzrW6C8F5Q2HuvNTBbvMhV631kdDcFA,3756
|
|
3
3
|
pulumi_aws_native/_inputs.py,sha256=_274EYE-TTJ8B0jhhIVKe7YWZVgPDc1M2UCLngessbs,28630
|
|
4
4
|
pulumi_aws_native/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
@@ -14,7 +14,7 @@ pulumi_aws_native/get_url_suffix.py,sha256=gb4Mcl2yHqWXJ2hBqzHrXi1Ml_GNGSxko_R4c
|
|
|
14
14
|
pulumi_aws_native/import_value.py,sha256=DB4ww2vbLq12VE92bhBvzmoUksOLgREAJnsGAxd48fk,2495
|
|
15
15
|
pulumi_aws_native/outputs.py,sha256=jdmEBf1KZRTvvs_ywyiLtfW_TfG-EkZBBpQITZwuEfA,2256
|
|
16
16
|
pulumi_aws_native/provider.py,sha256=8QXP8kxApXOHD70xfbtMEc2XUbsBtuunq2RmZGN_Dtw,40595
|
|
17
|
-
pulumi_aws_native/pulumi-plugin.json,sha256=
|
|
17
|
+
pulumi_aws_native/pulumi-plugin.json,sha256=2xYO3C-jrCo6ut5K8q_rgbBXUgeaWGorHYhxquR6jmY,87
|
|
18
18
|
pulumi_aws_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
pulumi_aws_native/accessanalyzer/__init__.py,sha256=wKXep9Kxzbi8KtYREorA32PXL6TJx68NE8CqGHMSKIs,377
|
|
20
20
|
pulumi_aws_native/accessanalyzer/_inputs.py,sha256=45tMWryI7eelt6ZcCwEfIrSy4N2q4uEHO6kGl16J8Tg,32699
|
|
@@ -231,8 +231,8 @@ pulumi_aws_native/appstream/get_app_block_builder.py,sha256=JW3xyX4wv8aOH_5lWhH0
|
|
|
231
231
|
pulumi_aws_native/appstream/get_application.py,sha256=-VGxOiAfWnC04-0pfOctHWNoaJJkS4MRzE2T6stA4vg,8436
|
|
232
232
|
pulumi_aws_native/appstream/get_directory_config.py,sha256=MMkECWUgAWZimRPsCSdEOPSW6aQmMgxxWSLrQ-obSPA,6055
|
|
233
233
|
pulumi_aws_native/appstream/get_entitlement.py,sha256=JRFvaQhqTO-iCcI2LhUhmFUTMHBOR6vpuetYVB9yZgo,5801
|
|
234
|
-
pulumi_aws_native/appstream/get_image_builder.py,sha256=
|
|
235
|
-
pulumi_aws_native/appstream/image_builder.py,sha256=
|
|
234
|
+
pulumi_aws_native/appstream/get_image_builder.py,sha256=mxyCmCRbBqPYyFvZU6aPrN6u8Qugs_Ajnp_cWvs4AJ0,14298
|
|
235
|
+
pulumi_aws_native/appstream/image_builder.py,sha256=3BYNcKDHZZYGpD0MGzZhdNimVDtMu4Iay4ncB939P8c,35230
|
|
236
236
|
pulumi_aws_native/appstream/outputs.py,sha256=DVRNR-8ruj4TOycLhx-cguOkhwxJ7METPKcUrOMqvr0,27012
|
|
237
237
|
pulumi_aws_native/appsync/__init__.py,sha256=QRCN370-B1bIgtg5lTmwveg2OQQgvzEXQ4hTwVVegko,937
|
|
238
238
|
pulumi_aws_native/appsync/_enums.py,sha256=j_KpnFzsHxzGL8NkSuyotbBvUuHGHYkgVDcnNXKAms0,4082
|
|
@@ -258,14 +258,14 @@ pulumi_aws_native/appsync/resolver.py,sha256=3ohApan01l-q18RH5Us3C53Ebb94gUarAsu
|
|
|
258
258
|
pulumi_aws_native/appsync/source_api_association.py,sha256=PBe7PQVJ7mU1eKZwo0ww07ezb-bstAnbHk85Wb_20RU,14253
|
|
259
259
|
pulumi_aws_native/aps/__init__.py,sha256=ACobcaAtuQnihFX_INo-www0m2oqPxEzdt8vY1Jw5rU,663
|
|
260
260
|
pulumi_aws_native/aps/_enums.py,sha256=CNxacun9mHiwPHcyDaJaanH42tXoT6S8qIRm5ubHAuA,528
|
|
261
|
-
pulumi_aws_native/aps/_inputs.py,sha256=
|
|
261
|
+
pulumi_aws_native/aps/_inputs.py,sha256=PejEw1kCHd4aAS7zlMjkglAT3sPD29Cy2Lv5GrPbG1Q,48482
|
|
262
262
|
pulumi_aws_native/aps/anomaly_detector.py,sha256=8S8b25nC0rcaMOAPRSzaoeNjni48mVCM3fiB9VIxE1g,15363
|
|
263
263
|
pulumi_aws_native/aps/get_anomaly_detector.py,sha256=-DGlYAnLCa2bIDhba5SYoU_f3GBIb_OwWC0R1BNdHuU,6231
|
|
264
264
|
pulumi_aws_native/aps/get_resource_policy.py,sha256=FJ8Kyg8Nf4CSjn_3vgljN6klp2Bsk2o6PHDfd5GfECQ,3115
|
|
265
265
|
pulumi_aws_native/aps/get_rule_groups_namespace.py,sha256=SRIX_Ggaizl2HpaWxFqCn7eBVdGJLpdtxt7iqxtbSGE,3874
|
|
266
266
|
pulumi_aws_native/aps/get_scraper.py,sha256=BxrjyzVFks66UVgoqX8xqXZPPlA8RW0ZA9bMPQOFio8,7899
|
|
267
267
|
pulumi_aws_native/aps/get_workspace.py,sha256=8XiHIDARGYJRCfuLCnWmmBdZcAiV1qTzfEbGfnepZxM,8481
|
|
268
|
-
pulumi_aws_native/aps/outputs.py,sha256=
|
|
268
|
+
pulumi_aws_native/aps/outputs.py,sha256=4t0JBDPfL6JtleV26WsuQjCQIu7k__20TQR8WxxdI1E,40417
|
|
269
269
|
pulumi_aws_native/aps/resource_policy.py,sha256=uyhN34j6xst0j3Yy3wCBrSFUuTFJe90EDuGeGpDzd9w,6866
|
|
270
270
|
pulumi_aws_native/aps/rule_groups_namespace.py,sha256=bkGHZffPSPqK8fQui_z8ZAyZkxnX9j8W1kINE01NQJk,9508
|
|
271
271
|
pulumi_aws_native/aps/scraper.py,sha256=6D1jZ-XV9AfYCcnJ3Xge2zbRELtih9vlofL5JzOtZvI,16270
|
|
@@ -273,9 +273,9 @@ pulumi_aws_native/aps/workspace.py,sha256=5oPl_obhfUaEg_2urecBpUzBqvMMWuaGXVGbex
|
|
|
273
273
|
pulumi_aws_native/arcregionswitch/__init__.py,sha256=78l2UkAlYDC9OUNL-55S1eMnPlxEqm7_TWXrn_U8a8k,391
|
|
274
274
|
pulumi_aws_native/arcregionswitch/_enums.py,sha256=pWRkRFa_N43BUHAi0URXgIT1_2d00EoLHobPfVserbA,2313
|
|
275
275
|
pulumi_aws_native/arcregionswitch/_inputs.py,sha256=-Z_0AZoYuVKV2FZ0rvTSY674uxjElcp8YsmN9OMHiUU,77748
|
|
276
|
-
pulumi_aws_native/arcregionswitch/get_plan.py,sha256=
|
|
276
|
+
pulumi_aws_native/arcregionswitch/get_plan.py,sha256=NWECgqytLe18Czp-FkItRI2FuhP1rjZqdaBJRi0jRDQ,10355
|
|
277
277
|
pulumi_aws_native/arcregionswitch/outputs.py,sha256=YW89ysZW0pWaRtre2E_dNawj1q5bob1yJ5_YLIGjFrQ,68997
|
|
278
|
-
pulumi_aws_native/arcregionswitch/plan.py,sha256=
|
|
278
|
+
pulumi_aws_native/arcregionswitch/plan.py,sha256=Dpb_BtmIfZG04PW4TJBo71WvBL2h8S1HwHUZ-3XpSiM,21433
|
|
279
279
|
pulumi_aws_native/arczonalshift/__init__.py,sha256=Gi08HmAlHqawPzLl-33ix7PbNHQoJUf5WZWnueka2Y0,553
|
|
280
280
|
pulumi_aws_native/arczonalshift/_enums.py,sha256=hFbNerSu6z6VQxdAC0GfEzvH7gw2CHKW6F-jbN_g--8,727
|
|
281
281
|
pulumi_aws_native/arczonalshift/_inputs.py,sha256=tQWBefjNiYIq_K36HXj2hWOtW6u6Iez61-qPbfuoTcA,10315
|
|
@@ -408,7 +408,7 @@ pulumi_aws_native/bedrock/knowledge_base.py,sha256=DZb_3Ibhfa4bOYBWcpQxf_8hfwPtz
|
|
|
408
408
|
pulumi_aws_native/bedrock/outputs.py,sha256=0TZ-rQtC2ZyPKOzVuZzvFW3m9Hpl9VZwx8197BXfIxw,625464
|
|
409
409
|
pulumi_aws_native/bedrock/prompt.py,sha256=tmlp9-YQO99ID4LyFHFs1HPdrG-yoPFoxzxY4bxVB-o,14381
|
|
410
410
|
pulumi_aws_native/bedrock/prompt_version.py,sha256=oBspb8Sr9IlISFeikiXT9jNKYIZqL89NJmoQxXkBpkg,10852
|
|
411
|
-
pulumi_aws_native/bedrockagentcore/__init__.py,sha256=
|
|
411
|
+
pulumi_aws_native/bedrockagentcore/__init__.py,sha256=dcKKVNoYVuhjL0oOrX8Eee9SYa6iBsHoVPrf41clp1k,843
|
|
412
412
|
pulumi_aws_native/bedrockagentcore/_enums.py,sha256=UTgaIG0A9xaF0Gx8qh7lQIv0HNZMy7gblRazGNJkDFg,8075
|
|
413
413
|
pulumi_aws_native/bedrockagentcore/_inputs.py,sha256=LNBPzn_xr65EcEKXAn-8H--ZBcyHaS72-RIft_mxG4Q,108915
|
|
414
414
|
pulumi_aws_native/bedrockagentcore/browser_custom.py,sha256=tuAsYnWsnvTmhbPNnucVGHDpai9mibviPP_HRBj2njI,14922
|
|
@@ -422,10 +422,12 @@ pulumi_aws_native/bedrockagentcore/get_gateway_target.py,sha256=BvDvQexm6GrqhWN2
|
|
|
422
422
|
pulumi_aws_native/bedrockagentcore/get_memory.py,sha256=zwelW5abzdSf6_tD97pQ43pBLkbVHlFKLFY2KthihRc,8639
|
|
423
423
|
pulumi_aws_native/bedrockagentcore/get_runtime.py,sha256=djNTi1GuuHsLrOtMnXrXqP6Rb935vZcO37o8U1JrG5c,12629
|
|
424
424
|
pulumi_aws_native/bedrockagentcore/get_runtime_endpoint.py,sha256=bKJg5nXwsuf5nzVQ5UgEItreTWmC7DxPjcFxX8bG55k,9521
|
|
425
|
+
pulumi_aws_native/bedrockagentcore/get_workload_identity.py,sha256=xeMhsQZx7nm5UVdJIYN8VeA_lzf2MPLJRwE3GcC2buY,6204
|
|
425
426
|
pulumi_aws_native/bedrockagentcore/memory.py,sha256=EHK-SAAShhX3W3h4pjBFuAHb8yT_Y9rGZD1g36w1VWc,14997
|
|
426
427
|
pulumi_aws_native/bedrockagentcore/outputs.py,sha256=AVJ9J_D9XQUwUR6_3h5nrzuDV_zFPMSYJrqHyD42Hjw,91210
|
|
427
428
|
pulumi_aws_native/bedrockagentcore/runtime.py,sha256=qi6Sat5gGAl5UzPZs8BJygEI8cN3BKuHRiG3ynyLkbs,20432
|
|
428
429
|
pulumi_aws_native/bedrockagentcore/runtime_endpoint.py,sha256=AMh_wSnGeTlDyHJyohHmfXcHpBGLstVzSH3DzIbgupk,14144
|
|
430
|
+
pulumi_aws_native/bedrockagentcore/workload_identity.py,sha256=il8ElNHCnKCt95SlVvkJOKsNh_F33jaS_JqsyVLyOI0,10216
|
|
429
431
|
pulumi_aws_native/billing/__init__.py,sha256=KKxRGhgmzcN5T0WblQOUaYxcqGyarZy2rdm1ufvoU5M,407
|
|
430
432
|
pulumi_aws_native/billing/_enums.py,sha256=Kc9oH9LZa692Ih6FzQCgk0KlVNH9-O9gIc_igxBbeao,643
|
|
431
433
|
pulumi_aws_native/billing/_inputs.py,sha256=4UTyxuQbdV2ar_z1rg9VaTB7kkH3KzzZS8gLnmqwlOw,6560
|
|
@@ -651,14 +653,15 @@ pulumi_aws_native/codestarnotifications/_inputs.py,sha256=6sWWlpbFFQFR7M3woK0dzv
|
|
|
651
653
|
pulumi_aws_native/codestarnotifications/get_notification_rule.py,sha256=isqHss8kKM4gfI78Va6TtZ6bL5QT1gu6cKW2gITmQO4,7787
|
|
652
654
|
pulumi_aws_native/codestarnotifications/notification_rule.py,sha256=fixUi35A-33D8opogwf9EVv9JloYp0IY8eKi-Ky6KYI,22875
|
|
653
655
|
pulumi_aws_native/codestarnotifications/outputs.py,sha256=k-h4FsYHFnIchVBXFujnVoRmBFCSadF_-iQdp0ic9W0,2785
|
|
654
|
-
pulumi_aws_native/cognito/__init__.py,sha256=
|
|
655
|
-
pulumi_aws_native/cognito/_enums.py,sha256=
|
|
656
|
+
pulumi_aws_native/cognito/__init__.py,sha256=KcGWzCDuKurQO8i1fImPVD-UaubY2hY9eADFmlUWBg8,1543
|
|
657
|
+
pulumi_aws_native/cognito/_enums.py,sha256=wMAsbsb4isF3K-v5zNNB7B8SCkEmtHX_kTWz1JffQj8,2674
|
|
656
658
|
pulumi_aws_native/cognito/_inputs.py,sha256=XiLNf5cqJC2QOq5lFiWyVhoDLvio9rMTKaXzzgRx2jA,213472
|
|
657
659
|
pulumi_aws_native/cognito/get_identity_pool.py,sha256=Qc70xKQcu19LFuVC5BIBI4l0yqh5qmpZ9Asqg-rejis,11022
|
|
658
660
|
pulumi_aws_native/cognito/get_identity_pool_principal_tag.py,sha256=KHQ8hsKhxyFrIPURnuva9Q-9Za7JT6C5-pEnQCoHsTs,5040
|
|
659
661
|
pulumi_aws_native/cognito/get_identity_pool_role_attachment.py,sha256=0ZVt3vwoH-DDX9FKnDoriqAiODT21onb4taOFqAbuCM,4858
|
|
660
662
|
pulumi_aws_native/cognito/get_log_delivery_configuration.py,sha256=U2TXvkODGpl38ugwWww8htKq5zYM4Z5wHu3FzuRFvRg,3899
|
|
661
663
|
pulumi_aws_native/cognito/get_managed_login_branding.py,sha256=zID2N-_4FcdGbn_6PQU_BizWuqjJDx6bBgQeETaUjl0,6928
|
|
664
|
+
pulumi_aws_native/cognito/get_terms.py,sha256=6WHPhH4xg1GmpEU_FHfYhqy43Di_DZkvgI6BYBaOVKc,4774
|
|
662
665
|
pulumi_aws_native/cognito/get_user_pool.py,sha256=D-iI-gOhxm_G1glIp2SgWGJLoZ-cMYRdd6g_EVtA3iM,33927
|
|
663
666
|
pulumi_aws_native/cognito/get_user_pool_client.py,sha256=1lsRw-qjZd33rswotY5UtH5dmSVn1xSmMflgmoIyIUQ,34249
|
|
664
667
|
pulumi_aws_native/cognito/get_user_pool_domain.py,sha256=1HqnSvOFsg4Q41ulnYOb4oXzGkyPGNkQoHEq-MuU9Dg,5316
|
|
@@ -673,6 +676,7 @@ pulumi_aws_native/cognito/identity_pool_role_attachment.py,sha256=Q2Srtl9adfsfCx
|
|
|
673
676
|
pulumi_aws_native/cognito/log_delivery_configuration.py,sha256=9iFRWIZXU51DtKSbZYtyk71IFd6EIxkrg1GSSH_I0gM,8340
|
|
674
677
|
pulumi_aws_native/cognito/managed_login_branding.py,sha256=QHH5f2uYSEmONf64FghgcqvyS5tTk34CouEegqFkYhM,18398
|
|
675
678
|
pulumi_aws_native/cognito/outputs.py,sha256=fNHcHv3mfDFEtvhbo4f8rKxMKybYLYAibq_-xtiWyaI,163894
|
|
679
|
+
pulumi_aws_native/cognito/terms.py,sha256=WRIajugRKSdFGRfWMjAv_8tjJkSNFVBIGaH91pgt-ZY,9888
|
|
676
680
|
pulumi_aws_native/cognito/user_pool.py,sha256=Mo5QEEYhjYQwiNHo6E4RMIK2kxlLS22E3qgtqZP47MA,87153
|
|
677
681
|
pulumi_aws_native/cognito/user_pool_client.py,sha256=4hgvIPT5L7vdE9OX67XgebrHtU1lLxjRF-UItJGnoIE,98611
|
|
678
682
|
pulumi_aws_native/cognito/user_pool_domain.py,sha256=tyPVAGBV-BP3WtMkJg47AzihY0JkhPzFTktoZ91OfWI,14200
|
|
@@ -1198,7 +1202,7 @@ pulumi_aws_native/ecr/replication_configuration.py,sha256=DdqehlP3YNxdHS5XBdreWV
|
|
|
1198
1202
|
pulumi_aws_native/ecr/repository.py,sha256=dD-bd2d0ArWrrVTQfVRsFLuQggroWF51KRZUvsiSJfs,32460
|
|
1199
1203
|
pulumi_aws_native/ecr/repository_creation_template.py,sha256=dPzpYRdeeGWFOPXb9cA0nxPrRy5cY2NtAIiPqho25iw,26773
|
|
1200
1204
|
pulumi_aws_native/ecs/__init__.py,sha256=fg8g9vIMQMAK1e1Tm1Hn5l_wpieeqhWu3Hk8xL6K2Wo,815
|
|
1201
|
-
pulumi_aws_native/ecs/_enums.py,sha256=
|
|
1205
|
+
pulumi_aws_native/ecs/_enums.py,sha256=lIN-cuPVi2ueoCjhFJzZXaXtSY8mxwMepy4y9OoNPxA,27753
|
|
1202
1206
|
pulumi_aws_native/ecs/_inputs.py,sha256=9ARLvGI76lk5rtyUyu5MHQRNOAcaae9LLxoma5xOH9I,814904
|
|
1203
1207
|
pulumi_aws_native/ecs/capacity_provider.py,sha256=H7u2D8kzNe-rfrU5fUO8sXGyrrq5-XNFtAap6qM3WwI,30530
|
|
1204
1208
|
pulumi_aws_native/ecs/cluster.py,sha256=mczWex9uvpnfLAl2NCc2-NKZVs0MqXS_Aq1Lxi3reMg,35183
|
|
@@ -1472,21 +1476,23 @@ pulumi_aws_native/globalaccelerator/get_endpoint_group.py,sha256=4H6WS7e8pDiQO2V
|
|
|
1472
1476
|
pulumi_aws_native/globalaccelerator/get_listener.py,sha256=c36FwVRbak_gOmJg42ZW_k1rnNt2-Uf2NnBlVFAp8f0,4902
|
|
1473
1477
|
pulumi_aws_native/globalaccelerator/listener.py,sha256=KjnbPyyCfUSPW4Md757-Tbht5683oG3TShu3K-CP0eU,10409
|
|
1474
1478
|
pulumi_aws_native/globalaccelerator/outputs.py,sha256=vIeKUK1ubnEH57v11REB4TcLqSs2ak5YYu3kLLD42wA,11452
|
|
1475
|
-
pulumi_aws_native/glue/__init__.py,sha256=
|
|
1479
|
+
pulumi_aws_native/glue/__init__.py,sha256=csMbc94tj4Jzv51i3ht8OW284J1sBSYY4QSVYddPZnU,900
|
|
1476
1480
|
pulumi_aws_native/glue/_enums.py,sha256=CJAOkEAU8sBT5-IBFhWC7HvcVPFAn3x2VmRQljgzUYM,1377
|
|
1477
|
-
pulumi_aws_native/glue/_inputs.py,sha256=
|
|
1481
|
+
pulumi_aws_native/glue/_inputs.py,sha256=NcoVQk7cx_n8G9shcOkkpkCx0NBUDaBpDAQn5d29-HQ,119267
|
|
1478
1482
|
pulumi_aws_native/glue/crawler.py,sha256=2-AjeAr1MrXwSs8321uKrJ5cz12kdTcPxdLXvWB_t5Y,27922
|
|
1479
1483
|
pulumi_aws_native/glue/database.py,sha256=5_flMBVRvKCJbrt4zxmb2oIG6N3KUJeZbRJ7x3O49V4,8339
|
|
1480
1484
|
pulumi_aws_native/glue/get_crawler.py,sha256=ddufCqYJj1z-dJJ8vLLU4gBLDRmQnvDY12F6UMTnznc,11668
|
|
1481
1485
|
pulumi_aws_native/glue/get_database.py,sha256=VnLv38aUOvys7UGmc-Q8razJehUnwWkJIC_BreORKJI,3656
|
|
1486
|
+
pulumi_aws_native/glue/get_integration_resource_property.py,sha256=-6nG3wQ44CqmSTePUJzZNRxuqlDuyOLA7AHN_b-2x5U,6400
|
|
1482
1487
|
pulumi_aws_native/glue/get_job.py,sha256=kMC1J3WRmxXiqWMX6PYD0pD6l8DdTiE-gGl55ClCT0w,17259
|
|
1483
1488
|
pulumi_aws_native/glue/get_registry.py,sha256=ksJMPXOdiswvkaRNM0xma_hgqIpsDoMDOxB-eTV7JAQ,3935
|
|
1484
1489
|
pulumi_aws_native/glue/get_schema.py,sha256=t8Q6i_cty7wXMGgdxznGjwxyJl4Mbcovk0hVUAYkxUk,6133
|
|
1485
1490
|
pulumi_aws_native/glue/get_schema_version.py,sha256=g6_khNiee_ufOEideJyaWO5ILhOkwTfF9iUzinTMXhM,3082
|
|
1486
1491
|
pulumi_aws_native/glue/get_trigger.py,sha256=3HfX36euKnCGmhfa66_O5mXctkOjTLH7kreNLhGYC_I,6012
|
|
1487
1492
|
pulumi_aws_native/glue/get_usage_profile.py,sha256=yXn0Ml3j1KNAguP5jMGo79RPiIyCyaKI9Bn89U2Kdec,4635
|
|
1493
|
+
pulumi_aws_native/glue/integration_resource_property.py,sha256=bvKQTmc-UyKbVfjZLcQ1YBxkDsZU0hFRF_c7Gr39AVU,11920
|
|
1488
1494
|
pulumi_aws_native/glue/job.py,sha256=QU2emFTr3DEKtJZSceMY4PiaJgTTbWUTeTT3FPTiGE8,38355
|
|
1489
|
-
pulumi_aws_native/glue/outputs.py,sha256=
|
|
1495
|
+
pulumi_aws_native/glue/outputs.py,sha256=vGm2OwVy-aEKa3KureNacfMb9qvi-zrPo2HwJh69wb0,93052
|
|
1490
1496
|
pulumi_aws_native/glue/registry.py,sha256=PPYcaPkSaPAG-VsiYqLcMF2kHjKM8t_lretEZ_Venkw,8823
|
|
1491
1497
|
pulumi_aws_native/glue/schema.py,sha256=33EBYCuMZA-lMoooxrrLT27SQc5SdWTNieMvkH-OJEk,16329
|
|
1492
1498
|
pulumi_aws_native/glue/schema_version.py,sha256=ytpdTkwsYOlqYTIZO_43dguEJs0INkZWs9PqB5wPLSg,7376
|
|
@@ -1831,14 +1837,14 @@ pulumi_aws_native/kafkaconnect/outputs.py,sha256=KXejRN6uYaXcjWRaS_qsigpRxwkGjn3
|
|
|
1831
1837
|
pulumi_aws_native/kafkaconnect/worker_configuration.py,sha256=-ZI_AkyNL_Y4Nq2OnZHuUInoWPX-6ES2TkzBh6iQ8vE,10522
|
|
1832
1838
|
pulumi_aws_native/kendra/__init__.py,sha256=EOSBW51qQPitTNLyQMXf6tLHAjFQrrUaAYJio-h53y4,493
|
|
1833
1839
|
pulumi_aws_native/kendra/_enums.py,sha256=ZeRxfZfCBPhhqpbcu-KwsQhDRmvGP0b8yXckVRXyxQE,8124
|
|
1834
|
-
pulumi_aws_native/kendra/_inputs.py,sha256=
|
|
1840
|
+
pulumi_aws_native/kendra/_inputs.py,sha256=E_-EIgd1s-hioEFJbWy6FbdZnRqN40p8qxKRQsF8V0A,324965
|
|
1835
1841
|
pulumi_aws_native/kendra/data_source.py,sha256=uGzbqi7nAv8RLOUSrA8nCfNrDOQTmsslwA6FoYiVwNo,23321
|
|
1836
1842
|
pulumi_aws_native/kendra/faq.py,sha256=jvygoYDzo_CJaVFSWlZwd8eBz-5cmzNhAhnm7kQRyz0,15401
|
|
1837
1843
|
pulumi_aws_native/kendra/get_data_source.py,sha256=ibsI7GsON3PGrDv_0E6qiL714HPPKrx60BEvB7USqr4,10257
|
|
1838
1844
|
pulumi_aws_native/kendra/get_faq.py,sha256=B47AiVoMHlf2XaBJQAfd_ZTjrnKSPPzjoK-1nNTW42w,4970
|
|
1839
1845
|
pulumi_aws_native/kendra/get_index.py,sha256=C3G6AoQS97WZnu6fkbyItE2EPPYVyEk8FWcOCTr4ytI,9325
|
|
1840
1846
|
pulumi_aws_native/kendra/index.py,sha256=QSDjKlvY_UJkUm7Q3dScEoLw42XzmdXI9P42AGaKxpI,23776
|
|
1841
|
-
pulumi_aws_native/kendra/outputs.py,sha256=
|
|
1847
|
+
pulumi_aws_native/kendra/outputs.py,sha256=jzXj0B3tlfuZ6i0roNdHyZouKYHfNnaUKJctIS-zmLg,241162
|
|
1842
1848
|
pulumi_aws_native/kendraranking/__init__.py,sha256=txFGUBZVryIz-ZpJtRAVK_Q0OS_tQDwcgaVSb454Lrk,389
|
|
1843
1849
|
pulumi_aws_native/kendraranking/_inputs.py,sha256=IIZ6FlpMmEH1UGVVu93CzM6KwNkg_I365UP7gjkwPY4,2340
|
|
1844
1850
|
pulumi_aws_native/kendraranking/execution_plan.py,sha256=mG4wl0cjbuFjvRVUWSmWd6gChr7IOxDHwhm5GDi3Ntc,9980
|
|
@@ -2438,8 +2444,8 @@ pulumi_aws_native/proton/get_service_template.py,sha256=RTo3YtUfyzWF8J4NmZeYZ-0e
|
|
|
2438
2444
|
pulumi_aws_native/proton/service_template.py,sha256=CjO976TEZ8qqDcaI_C7ozvbmrQINLn8uiSgTmcAOGaE,14480
|
|
2439
2445
|
pulumi_aws_native/qbusiness/__init__.py,sha256=_usZlrSwyh2aaPF__ZB7xzFpaJhxD2BKWGg420LNSqs,763
|
|
2440
2446
|
pulumi_aws_native/qbusiness/_enums.py,sha256=C_rRi-zqojAS2CGnlNwu81919LGYCweMKAcpiSztRZ0,7825
|
|
2441
|
-
pulumi_aws_native/qbusiness/_inputs.py,sha256=
|
|
2442
|
-
pulumi_aws_native/qbusiness/application.py,sha256=
|
|
2447
|
+
pulumi_aws_native/qbusiness/_inputs.py,sha256=rh0Q8-XvBlnnCcw3B8aawUD7Wx-6P0rzT2WUcjgCcSc,121558
|
|
2448
|
+
pulumi_aws_native/qbusiness/application.py,sha256=2lJLhobyOcFpLdw1D1V9qEMbtB2rf9mbE-B_Sgf0hiY,34976
|
|
2443
2449
|
pulumi_aws_native/qbusiness/data_accessor.py,sha256=dYYKEmV8TJ5lU3R1QRq3FF7KI8OfRBvTLwjUYGh9fZA,16244
|
|
2444
2450
|
pulumi_aws_native/qbusiness/data_source.py,sha256=1pCJfmJWe9XmTIZiRKVMv2HfWSMOCIGjqoqUXMC3VZY,33722
|
|
2445
2451
|
pulumi_aws_native/qbusiness/get_application.py,sha256=Xafe52ulCMcLRObM3Eva0mNUhi5QyqZgXl08-PWeupQ,13250
|
|
@@ -2450,7 +2456,7 @@ pulumi_aws_native/qbusiness/get_plugin.py,sha256=42XcZNZa7AlDXE40BMzmAXq8NSpwdAY
|
|
|
2450
2456
|
pulumi_aws_native/qbusiness/get_retriever.py,sha256=dT8LcdTvtZYDgMQ1R3O5sx2eDmvmhXQUrqzZM4_rl7g,8610
|
|
2451
2457
|
pulumi_aws_native/qbusiness/get_web_experience.py,sha256=413Ko6BtNY1_NGQb9CsROC_dx77RmoGYUXFeIguGvPg,15054
|
|
2452
2458
|
pulumi_aws_native/qbusiness/index.py,sha256=aPw1yNocr4vOu7PLqYq72RcEsIu9f3-FhKhIMiiQFVM,19755
|
|
2453
|
-
pulumi_aws_native/qbusiness/outputs.py,sha256=
|
|
2459
|
+
pulumi_aws_native/qbusiness/outputs.py,sha256=lYjmx0Ati-MEjVpZwCMq_NGbNwtJxf-DVcFN-XXq31g,103398
|
|
2454
2460
|
pulumi_aws_native/qbusiness/permission.py,sha256=hjnwg5qEsffGOq6XBQx8G7YBqIoEOCc8lwPjzfrUH8I,11111
|
|
2455
2461
|
pulumi_aws_native/qbusiness/plugin.py,sha256=OJkt52NIJyTYkM_96IoTFMv9lEFHMj94aZF8d0_STJM,19197
|
|
2456
2462
|
pulumi_aws_native/qbusiness/retriever.py,sha256=0ZZ6MV29H4OIIE4vRmnl6QNg8DEUoN60ko3IqJ3sOME,15996
|
|
@@ -2462,7 +2468,7 @@ pulumi_aws_native/qldb/outputs.py,sha256=cJ_CNhApG4r49N8j6oFVeicTDIEA8KS_k0US6E0
|
|
|
2462
2468
|
pulumi_aws_native/qldb/stream.py,sha256=Rq6vrQiuGu8uLr5WX2kYIyPFoqUF8JEh4wg1J19o_QQ,24019
|
|
2463
2469
|
pulumi_aws_native/quicksight/__init__.py,sha256=zAVaxK7ZlyCkKyKkBydFsZs32tGWjHShE5Kct4ZVak8,923
|
|
2464
2470
|
pulumi_aws_native/quicksight/_enums.py,sha256=PapoCmoKh9L5VJpKAww7Kh_FBjRk1NyCHy9Sa7_z3HY,115319
|
|
2465
|
-
pulumi_aws_native/quicksight/_inputs.py,sha256=
|
|
2471
|
+
pulumi_aws_native/quicksight/_inputs.py,sha256=9MAXSpBamYuY6_pEZ3V6R5v5smvUIXMpVyArVaTFTaE,6514515
|
|
2466
2472
|
pulumi_aws_native/quicksight/analysis.py,sha256=2-1miewl1suzpovKve1O_xOBNJ54CJB48ufbOWbv7Fw,28718
|
|
2467
2473
|
pulumi_aws_native/quicksight/custom_permissions.py,sha256=YngerKgvJeS1IezWbxej3Jx3XhXj-tG71-QLN2MYbVM,10837
|
|
2468
2474
|
pulumi_aws_native/quicksight/dashboard.py,sha256=uUULjAggMf7dd7FfooX8C2EnnN0r--L58GNLHa6ypyU,40282
|
|
@@ -2479,7 +2485,7 @@ pulumi_aws_native/quicksight/get_template.py,sha256=ycprP9HGec6MYYcnbk06RAEEjqal
|
|
|
2479
2485
|
pulumi_aws_native/quicksight/get_theme.py,sha256=bGq4qMGpfh1dbPub4qFLFxzwiUcGUkWV9HuBYanGTBo,9688
|
|
2480
2486
|
pulumi_aws_native/quicksight/get_topic.py,sha256=wjZNT3w00fchlphTKMNAjiOdQrpdGUnxiLes6RDdZqs,7017
|
|
2481
2487
|
pulumi_aws_native/quicksight/get_vpc_connection.py,sha256=EQy4OANLLJeWQdzOMi-8PWXWBiXxuQ2MImw2HSlnmJg,10676
|
|
2482
|
-
pulumi_aws_native/quicksight/outputs.py,sha256=
|
|
2488
|
+
pulumi_aws_native/quicksight/outputs.py,sha256=ub8EpnxU7Y0Wx1WhmUH7e32fbYrsspKQlUERTQ4oyVs,4989417
|
|
2483
2489
|
pulumi_aws_native/quicksight/refresh_schedule.py,sha256=Vrk_19z8I5o9HD00ff2dZVkSo9sGDAWLvz_fyVDM9QM,8643
|
|
2484
2490
|
pulumi_aws_native/quicksight/template.py,sha256=71jyr0GPQ127-3U7l7KzLPN3sBHDWTNQOE9sH1cB4Jg,23844
|
|
2485
2491
|
pulumi_aws_native/quicksight/theme.py,sha256=kdfpnEBKV_pa1lZ4L_ZDQCiprk3N8cgyB82ZIm-pQf0,18994
|
|
@@ -2784,13 +2790,13 @@ pulumi_aws_native/s3tables/table_policy.py,sha256=QRFAUuk5v0UWzr9SdL-nTriWphEG4M
|
|
|
2784
2790
|
pulumi_aws_native/s3vectors/__init__.py,sha256=3V_79p5hoT_eeAQYPCAQb3l2yRiKqmGV1iz0usOisqQ,531
|
|
2785
2791
|
pulumi_aws_native/s3vectors/_enums.py,sha256=A71Z_GsimNpytwkGmaQv6FJSS3esvRafJ0iiO_0WCOk,1276
|
|
2786
2792
|
pulumi_aws_native/s3vectors/_inputs.py,sha256=P-UK2nRAxAHCaeXKqp6dgALo3synSdZiFg-AMcIPE9k,7403
|
|
2787
|
-
pulumi_aws_native/s3vectors/get_index.py,sha256=
|
|
2788
|
-
pulumi_aws_native/s3vectors/get_vector_bucket.py,sha256=
|
|
2789
|
-
pulumi_aws_native/s3vectors/get_vector_bucket_policy.py,sha256=
|
|
2790
|
-
pulumi_aws_native/s3vectors/index.py,sha256=
|
|
2793
|
+
pulumi_aws_native/s3vectors/get_index.py,sha256=HqttPlg7clsVRkP02Ex1-J-JZeaqfeApLcyYFgnCmTo,3866
|
|
2794
|
+
pulumi_aws_native/s3vectors/get_vector_bucket.py,sha256=m8-i85oJiiHkKR6GqOjLqtuOVcwY0vSu_PgXKJdBEyc,4187
|
|
2795
|
+
pulumi_aws_native/s3vectors/get_vector_bucket_policy.py,sha256=HVz1OlgA5MoeKxcc7J8_KdVaQuy1TzHMx85rR5Jiv20,3426
|
|
2796
|
+
pulumi_aws_native/s3vectors/index.py,sha256=1FJF-jiLnhqjm6IMwoE0aQNEbuCaFgyth13DXyDagt4,20008
|
|
2791
2797
|
pulumi_aws_native/s3vectors/outputs.py,sha256=6pX_kIHHlRcQa-2W5sKf-QPWLwOhl0EK1uQyR5YtwLk,6211
|
|
2792
|
-
pulumi_aws_native/s3vectors/vector_bucket.py,sha256=
|
|
2793
|
-
pulumi_aws_native/s3vectors/vector_bucket_policy.py,sha256=
|
|
2798
|
+
pulumi_aws_native/s3vectors/vector_bucket.py,sha256=UjoKRmMfme-TlaBaVdSZtAGOMekZrxz0ujRYzzzXKpw,10835
|
|
2799
|
+
pulumi_aws_native/s3vectors/vector_bucket_policy.py,sha256=yM3VC_dS1sSiqvDzHdGQv53odjb_3eS6bvWwZn7avC0,9647
|
|
2794
2800
|
pulumi_aws_native/sagemaker/__init__.py,sha256=gY61KdpUmmr_d4C8rmtN1rWjyaVxUcBduyLRBKwpq4w,2141
|
|
2795
2801
|
pulumi_aws_native/sagemaker/_enums.py,sha256=-z_UC6qqbAFcE6drhqrqrVHWuygGFJ686eIVaLNvxhg,78211
|
|
2796
2802
|
pulumi_aws_native/sagemaker/_inputs.py,sha256=-Vn16fs4iW5Ftnz65z2SKllUoY0zSxBRK_MD7PcU5K0,1100436
|
|
@@ -3215,18 +3221,18 @@ pulumi_aws_native/vpclattice/service_network_vpc_association.py,sha256=fgBpW8N_x
|
|
|
3215
3221
|
pulumi_aws_native/vpclattice/target_group.py,sha256=jIvLaD1l5XjFyk17ek1wCx6JbqF1gxtsw-wbfQBfMWE,14112
|
|
3216
3222
|
pulumi_aws_native/wafv2/__init__.py,sha256=1y7LFs32fbcRSrgqoCYRATkOktUNuEovWClsFPxITOw,684
|
|
3217
3223
|
pulumi_aws_native/wafv2/_enums.py,sha256=g5A5ZkzYlGURUdD8qqaFDuR2uApItenwNDun3njTC0s,31758
|
|
3218
|
-
pulumi_aws_native/wafv2/_inputs.py,sha256=
|
|
3224
|
+
pulumi_aws_native/wafv2/_inputs.py,sha256=8dEE6ePU5pfNA7Y9jy6dM79_dyStxSljwfqkndAnUaY,827817
|
|
3219
3225
|
pulumi_aws_native/wafv2/get_ip_set.py,sha256=uGC_vz5ooqDOMZdRjgxhmFLgeSC494woJ9vVp-weTTU,7678
|
|
3220
3226
|
pulumi_aws_native/wafv2/get_logging_configuration.py,sha256=75fgWtDwVf5Lac63mDpPKmvHkjPZpESU8bDeFjGku4g,6183
|
|
3221
3227
|
pulumi_aws_native/wafv2/get_regex_pattern_set.py,sha256=afh3sIN5V_CY8M1bBcGzMz1ZMXJR0EI35sfaJwgoXtE,6740
|
|
3222
3228
|
pulumi_aws_native/wafv2/get_rule_group.py,sha256=OsoT1jYEsUvNq2kjRQZwxQJ4-PCAQHaZyKIpm505roU,14173
|
|
3223
|
-
pulumi_aws_native/wafv2/get_web_acl.py,sha256=
|
|
3229
|
+
pulumi_aws_native/wafv2/get_web_acl.py,sha256=AhmeE06fBogiBgcFzqcuHiHWLeCqG7425oamD-PLDgw,20221
|
|
3224
3230
|
pulumi_aws_native/wafv2/ip_set.py,sha256=R3oyK4N20rMV83xWyupPUZ2ffBT8EZ1EIfQztYmQZ00,16516
|
|
3225
3231
|
pulumi_aws_native/wafv2/logging_configuration.py,sha256=iv7twbbwn9PAIN6m0myljweOq7nGI2gXhx3zpkQ9FY0,12922
|
|
3226
|
-
pulumi_aws_native/wafv2/outputs.py,sha256=
|
|
3232
|
+
pulumi_aws_native/wafv2/outputs.py,sha256=69hycRL5D7gdBZ4Aq2MY-IAynDcxQKA9q0uQIfGNNvg,605092
|
|
3227
3233
|
pulumi_aws_native/wafv2/regex_pattern_set.py,sha256=MXEnzzYiDLbAOsl1ohoUOkFY2DyVJ5P_3YPmGAdxa6s,13863
|
|
3228
3234
|
pulumi_aws_native/wafv2/rule_group.py,sha256=TkfAnLtRT9MgecAFdlfj533nlcP75RZdvRQnme-i8XA,31479
|
|
3229
|
-
pulumi_aws_native/wafv2/web_acl.py,sha256=
|
|
3235
|
+
pulumi_aws_native/wafv2/web_acl.py,sha256=B6ZOJaCi0uueqIu81UuTFfiRC2mXryVq7h_ee1ezFAQ,44855
|
|
3230
3236
|
pulumi_aws_native/wafv2/web_acl_association.py,sha256=J1bwBLGx4c_u0c0ueB9ZwdoU71gCAiTqDT6ibkVHaOk,11267
|
|
3231
3237
|
pulumi_aws_native/wisdom/__init__.py,sha256=x-ZO-XOUMJ1MYgD-OdKZad_voHYDdk4hb9ah3aCNlqY,1139
|
|
3232
3238
|
pulumi_aws_native/wisdom/_enums.py,sha256=4ZAIMaMnvWO5VGMjBG-HiAu0ZGCy4M6077H0PnhpLF4,8302
|
|
@@ -3314,7 +3320,7 @@ pulumi_aws_native/xray/outputs.py,sha256=oqzC1EpykiBoKn1lPu7gvNJHKug_YLhN8DF2IPN
|
|
|
3314
3320
|
pulumi_aws_native/xray/resource_policy.py,sha256=f7RWsGjAxnGcuLHdC2i-ocymdO-t4PCilb9CWPkuubA,12133
|
|
3315
3321
|
pulumi_aws_native/xray/sampling_rule.py,sha256=vEI_TA5SrzJNNng4l1_2r1iM5DxstOzF8Bb9zGP-Ymw,10946
|
|
3316
3322
|
pulumi_aws_native/xray/transaction_search_config.py,sha256=chCNkX-P73e6K2lYclqkTg4vtiPsOFss-tatl1prq8o,5450
|
|
3317
|
-
pulumi_aws_native-1.38.
|
|
3318
|
-
pulumi_aws_native-1.38.
|
|
3319
|
-
pulumi_aws_native-1.38.
|
|
3320
|
-
pulumi_aws_native-1.38.
|
|
3323
|
+
pulumi_aws_native-1.38.0a1762321314.dist-info/METADATA,sha256=HIKOL__NxPDa2pyPouYmRNRVPBSnVt6OWd8TdBVRSUc,4654
|
|
3324
|
+
pulumi_aws_native-1.38.0a1762321314.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
3325
|
+
pulumi_aws_native-1.38.0a1762321314.dist-info/top_level.txt,sha256=ipUwuUqjh4BpUoWB-RUcIZ5LsR72E0k33PfvR1OKcM0,18
|
|
3326
|
+
pulumi_aws_native-1.38.0a1762321314.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|