mypy-boto3-waf-regional 1.34.0__py3-none-any.whl → 1.34.153__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 mypy-boto3-waf-regional might be problematic. Click here for more details.
- mypy_boto3_waf_regional/__init__.py +0 -1
- mypy_boto3_waf_regional/__main__.py +8 -7
- mypy_boto3_waf_regional/client.py +11 -12
- mypy_boto3_waf_regional/client.pyi +11 -11
- mypy_boto3_waf_regional/literals.py +17 -7
- mypy_boto3_waf_regional/literals.pyi +17 -5
- mypy_boto3_waf_regional/type_defs.py +85 -37
- mypy_boto3_waf_regional/type_defs.pyi +85 -36
- mypy_boto3_waf_regional/version.py +1 -1
- {mypy_boto3_waf_regional-1.34.0.dist-info → mypy_boto3_waf_regional-1.34.153.dist-info}/LICENSE +1 -1
- {mypy_boto3_waf_regional-1.34.0.dist-info → mypy_boto3_waf_regional-1.34.153.dist-info}/METADATA +6 -7
- mypy_boto3_waf_regional-1.34.153.dist-info/RECORD +16 -0
- {mypy_boto3_waf_regional-1.34.0.dist-info → mypy_boto3_waf_regional-1.34.153.dist-info}/WHEEL +1 -1
- mypy_boto3_waf_regional-1.34.0.dist-info/RECORD +0 -16
- {mypy_boto3_waf_regional-1.34.0.dist-info → mypy_boto3_waf_regional-1.34.153.dist-info}/top_level.txt +0 -0
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.WAFRegional 1.34.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.WAFRegional 1.34.153\n"
|
|
14
|
+
"Version: 1.34.153\n"
|
|
15
|
+
"Builder version: 7.25.0\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/waf-regional.html#WAFRegional\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.34.
|
|
27
|
+
print("1.34.153")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
|
@@ -85,7 +85,7 @@ from .type_defs import (
|
|
|
85
85
|
ListTagsForResourceResponseTypeDef,
|
|
86
86
|
ListWebACLsResponseTypeDef,
|
|
87
87
|
ListXssMatchSetsResponseTypeDef,
|
|
88
|
-
|
|
88
|
+
LoggingConfigurationUnionTypeDef,
|
|
89
89
|
PutLoggingConfigurationResponseTypeDef,
|
|
90
90
|
RegexMatchSetUpdateTypeDef,
|
|
91
91
|
RegexPatternSetUpdateTypeDef,
|
|
@@ -94,7 +94,7 @@ from .type_defs import (
|
|
|
94
94
|
SizeConstraintSetUpdateTypeDef,
|
|
95
95
|
SqlInjectionMatchSetUpdateTypeDef,
|
|
96
96
|
TagTypeDef,
|
|
97
|
-
|
|
97
|
+
TimeWindowUnionTypeDef,
|
|
98
98
|
UpdateByteMatchSetResponseTypeDef,
|
|
99
99
|
UpdateGeoMatchSetResponseTypeDef,
|
|
100
100
|
UpdateIPSetResponseTypeDef,
|
|
@@ -117,7 +117,6 @@ if sys.version_info >= (3, 12):
|
|
|
117
117
|
else:
|
|
118
118
|
from typing_extensions import Literal
|
|
119
119
|
|
|
120
|
-
|
|
121
120
|
__all__ = ("WAFRegionalClient",)
|
|
122
121
|
|
|
123
122
|
|
|
@@ -230,7 +229,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
230
229
|
RateKey: Literal["IP"],
|
|
231
230
|
RateLimit: int,
|
|
232
231
|
ChangeToken: str,
|
|
233
|
-
Tags: Sequence[TagTypeDef] =
|
|
232
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
234
233
|
) -> CreateRateBasedRuleResponseTypeDef:
|
|
235
234
|
"""
|
|
236
235
|
.
|
|
@@ -306,7 +305,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
306
305
|
MetricName: str,
|
|
307
306
|
DefaultAction: WafActionTypeDef,
|
|
308
307
|
ChangeToken: str,
|
|
309
|
-
Tags: Sequence[TagTypeDef] =
|
|
308
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
310
309
|
) -> CreateWebACLResponseTypeDef:
|
|
311
310
|
"""
|
|
312
311
|
.
|
|
@@ -598,7 +597,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
598
597
|
"""
|
|
599
598
|
|
|
600
599
|
def get_sampled_requests(
|
|
601
|
-
self, *, WebAclId: str, RuleId: str, TimeWindow:
|
|
600
|
+
self, *, WebAclId: str, RuleId: str, TimeWindow: TimeWindowUnionTypeDef, MaxItems: int
|
|
602
601
|
) -> GetSampledRequestsResponseTypeDef:
|
|
603
602
|
"""
|
|
604
603
|
.
|
|
@@ -818,7 +817,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
818
817
|
"""
|
|
819
818
|
|
|
820
819
|
def put_logging_configuration(
|
|
821
|
-
self, *, LoggingConfiguration:
|
|
820
|
+
self, *, LoggingConfiguration: LoggingConfigurationUnionTypeDef
|
|
822
821
|
) -> PutLoggingConfigurationResponseTypeDef:
|
|
823
822
|
"""
|
|
824
823
|
.
|
|
@@ -896,7 +895,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
896
895
|
*,
|
|
897
896
|
RegexMatchSetId: str,
|
|
898
897
|
Updates: Sequence[RegexMatchSetUpdateTypeDef],
|
|
899
|
-
ChangeToken: str
|
|
898
|
+
ChangeToken: str,
|
|
900
899
|
) -> UpdateRegexMatchSetResponseTypeDef:
|
|
901
900
|
"""
|
|
902
901
|
.
|
|
@@ -910,7 +909,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
910
909
|
*,
|
|
911
910
|
RegexPatternSetId: str,
|
|
912
911
|
Updates: Sequence[RegexPatternSetUpdateTypeDef],
|
|
913
|
-
ChangeToken: str
|
|
912
|
+
ChangeToken: str,
|
|
914
913
|
) -> UpdateRegexPatternSetResponseTypeDef:
|
|
915
914
|
"""
|
|
916
915
|
.
|
|
@@ -944,7 +943,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
944
943
|
*,
|
|
945
944
|
SizeConstraintSetId: str,
|
|
946
945
|
ChangeToken: str,
|
|
947
|
-
Updates: Sequence[SizeConstraintSetUpdateTypeDef]
|
|
946
|
+
Updates: Sequence[SizeConstraintSetUpdateTypeDef],
|
|
948
947
|
) -> UpdateSizeConstraintSetResponseTypeDef:
|
|
949
948
|
"""
|
|
950
949
|
.
|
|
@@ -958,7 +957,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
958
957
|
*,
|
|
959
958
|
SqlInjectionMatchSetId: str,
|
|
960
959
|
ChangeToken: str,
|
|
961
|
-
Updates: Sequence[SqlInjectionMatchSetUpdateTypeDef]
|
|
960
|
+
Updates: Sequence[SqlInjectionMatchSetUpdateTypeDef],
|
|
962
961
|
) -> UpdateSqlInjectionMatchSetResponseTypeDef:
|
|
963
962
|
"""
|
|
964
963
|
.
|
|
@@ -973,7 +972,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
973
972
|
WebACLId: str,
|
|
974
973
|
ChangeToken: str,
|
|
975
974
|
Updates: Sequence[WebACLUpdateTypeDef] = ...,
|
|
976
|
-
DefaultAction: WafActionTypeDef =
|
|
975
|
+
DefaultAction: WafActionTypeDef = ...,
|
|
977
976
|
) -> UpdateWebACLResponseTypeDef:
|
|
978
977
|
"""
|
|
979
978
|
.
|
|
@@ -85,7 +85,7 @@ from .type_defs import (
|
|
|
85
85
|
ListTagsForResourceResponseTypeDef,
|
|
86
86
|
ListWebACLsResponseTypeDef,
|
|
87
87
|
ListXssMatchSetsResponseTypeDef,
|
|
88
|
-
|
|
88
|
+
LoggingConfigurationUnionTypeDef,
|
|
89
89
|
PutLoggingConfigurationResponseTypeDef,
|
|
90
90
|
RegexMatchSetUpdateTypeDef,
|
|
91
91
|
RegexPatternSetUpdateTypeDef,
|
|
@@ -94,7 +94,7 @@ from .type_defs import (
|
|
|
94
94
|
SizeConstraintSetUpdateTypeDef,
|
|
95
95
|
SqlInjectionMatchSetUpdateTypeDef,
|
|
96
96
|
TagTypeDef,
|
|
97
|
-
|
|
97
|
+
TimeWindowUnionTypeDef,
|
|
98
98
|
UpdateByteMatchSetResponseTypeDef,
|
|
99
99
|
UpdateGeoMatchSetResponseTypeDef,
|
|
100
100
|
UpdateIPSetResponseTypeDef,
|
|
@@ -226,7 +226,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
226
226
|
RateKey: Literal["IP"],
|
|
227
227
|
RateLimit: int,
|
|
228
228
|
ChangeToken: str,
|
|
229
|
-
Tags: Sequence[TagTypeDef] =
|
|
229
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
230
230
|
) -> CreateRateBasedRuleResponseTypeDef:
|
|
231
231
|
"""
|
|
232
232
|
.
|
|
@@ -302,7 +302,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
302
302
|
MetricName: str,
|
|
303
303
|
DefaultAction: WafActionTypeDef,
|
|
304
304
|
ChangeToken: str,
|
|
305
|
-
Tags: Sequence[TagTypeDef] =
|
|
305
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
306
306
|
) -> CreateWebACLResponseTypeDef:
|
|
307
307
|
"""
|
|
308
308
|
.
|
|
@@ -594,7 +594,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
594
594
|
"""
|
|
595
595
|
|
|
596
596
|
def get_sampled_requests(
|
|
597
|
-
self, *, WebAclId: str, RuleId: str, TimeWindow:
|
|
597
|
+
self, *, WebAclId: str, RuleId: str, TimeWindow: TimeWindowUnionTypeDef, MaxItems: int
|
|
598
598
|
) -> GetSampledRequestsResponseTypeDef:
|
|
599
599
|
"""
|
|
600
600
|
.
|
|
@@ -814,7 +814,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
814
814
|
"""
|
|
815
815
|
|
|
816
816
|
def put_logging_configuration(
|
|
817
|
-
self, *, LoggingConfiguration:
|
|
817
|
+
self, *, LoggingConfiguration: LoggingConfigurationUnionTypeDef
|
|
818
818
|
) -> PutLoggingConfigurationResponseTypeDef:
|
|
819
819
|
"""
|
|
820
820
|
.
|
|
@@ -892,7 +892,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
892
892
|
*,
|
|
893
893
|
RegexMatchSetId: str,
|
|
894
894
|
Updates: Sequence[RegexMatchSetUpdateTypeDef],
|
|
895
|
-
ChangeToken: str
|
|
895
|
+
ChangeToken: str,
|
|
896
896
|
) -> UpdateRegexMatchSetResponseTypeDef:
|
|
897
897
|
"""
|
|
898
898
|
.
|
|
@@ -906,7 +906,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
906
906
|
*,
|
|
907
907
|
RegexPatternSetId: str,
|
|
908
908
|
Updates: Sequence[RegexPatternSetUpdateTypeDef],
|
|
909
|
-
ChangeToken: str
|
|
909
|
+
ChangeToken: str,
|
|
910
910
|
) -> UpdateRegexPatternSetResponseTypeDef:
|
|
911
911
|
"""
|
|
912
912
|
.
|
|
@@ -940,7 +940,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
940
940
|
*,
|
|
941
941
|
SizeConstraintSetId: str,
|
|
942
942
|
ChangeToken: str,
|
|
943
|
-
Updates: Sequence[SizeConstraintSetUpdateTypeDef]
|
|
943
|
+
Updates: Sequence[SizeConstraintSetUpdateTypeDef],
|
|
944
944
|
) -> UpdateSizeConstraintSetResponseTypeDef:
|
|
945
945
|
"""
|
|
946
946
|
.
|
|
@@ -954,7 +954,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
954
954
|
*,
|
|
955
955
|
SqlInjectionMatchSetId: str,
|
|
956
956
|
ChangeToken: str,
|
|
957
|
-
Updates: Sequence[SqlInjectionMatchSetUpdateTypeDef]
|
|
957
|
+
Updates: Sequence[SqlInjectionMatchSetUpdateTypeDef],
|
|
958
958
|
) -> UpdateSqlInjectionMatchSetResponseTypeDef:
|
|
959
959
|
"""
|
|
960
960
|
.
|
|
@@ -969,7 +969,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
969
969
|
WebACLId: str,
|
|
970
970
|
ChangeToken: str,
|
|
971
971
|
Updates: Sequence[WebACLUpdateTypeDef] = ...,
|
|
972
|
-
DefaultAction: WafActionTypeDef =
|
|
972
|
+
DefaultAction: WafActionTypeDef = ...,
|
|
973
973
|
) -> UpdateWebACLResponseTypeDef:
|
|
974
974
|
"""
|
|
975
975
|
.
|
|
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"ChangeActionType",
|
|
25
24
|
"ChangeTokenStatusType",
|
|
@@ -42,7 +41,6 @@ __all__ = (
|
|
|
42
41
|
"RegionName",
|
|
43
42
|
)
|
|
44
43
|
|
|
45
|
-
|
|
46
44
|
ChangeActionType = Literal["DELETE", "INSERT"]
|
|
47
45
|
ChangeTokenStatusType = Literal["INSYNC", "PENDING", "PROVISIONED"]
|
|
48
46
|
ComparisonOperatorType = Literal["EQ", "GE", "GT", "LE", "LT", "NE"]
|
|
@@ -328,7 +326,6 @@ ServiceName = Literal[
|
|
|
328
326
|
"account",
|
|
329
327
|
"acm",
|
|
330
328
|
"acm-pca",
|
|
331
|
-
"alexaforbusiness",
|
|
332
329
|
"amp",
|
|
333
330
|
"amplify",
|
|
334
331
|
"amplifybackend",
|
|
@@ -343,12 +340,15 @@ ServiceName = Literal[
|
|
|
343
340
|
"appintegrations",
|
|
344
341
|
"application-autoscaling",
|
|
345
342
|
"application-insights",
|
|
343
|
+
"application-signals",
|
|
346
344
|
"applicationcostprofiler",
|
|
347
345
|
"appmesh",
|
|
348
346
|
"apprunner",
|
|
349
347
|
"appstream",
|
|
350
348
|
"appsync",
|
|
349
|
+
"apptest",
|
|
351
350
|
"arc-zonal-shift",
|
|
351
|
+
"artifact",
|
|
352
352
|
"athena",
|
|
353
353
|
"auditmanager",
|
|
354
354
|
"autoscaling",
|
|
@@ -356,7 +356,6 @@ ServiceName = Literal[
|
|
|
356
356
|
"b2bi",
|
|
357
357
|
"backup",
|
|
358
358
|
"backup-gateway",
|
|
359
|
-
"backupstorage",
|
|
360
359
|
"batch",
|
|
361
360
|
"bcm-data-exports",
|
|
362
361
|
"bedrock",
|
|
@@ -367,6 +366,7 @@ ServiceName = Literal[
|
|
|
367
366
|
"braket",
|
|
368
367
|
"budgets",
|
|
369
368
|
"ce",
|
|
369
|
+
"chatbot",
|
|
370
370
|
"chime",
|
|
371
371
|
"chime-sdk-identity",
|
|
372
372
|
"chime-sdk-media-pipelines",
|
|
@@ -392,6 +392,7 @@ ServiceName = Literal[
|
|
|
392
392
|
"codebuild",
|
|
393
393
|
"codecatalyst",
|
|
394
394
|
"codecommit",
|
|
395
|
+
"codeconnections",
|
|
395
396
|
"codedeploy",
|
|
396
397
|
"codeguru-reviewer",
|
|
397
398
|
"codeguru-security",
|
|
@@ -412,6 +413,7 @@ ServiceName = Literal[
|
|
|
412
413
|
"connectcampaigns",
|
|
413
414
|
"connectcases",
|
|
414
415
|
"connectparticipant",
|
|
416
|
+
"controlcatalog",
|
|
415
417
|
"controltower",
|
|
416
418
|
"cost-optimization-hub",
|
|
417
419
|
"cur",
|
|
@@ -422,6 +424,7 @@ ServiceName = Literal[
|
|
|
422
424
|
"datasync",
|
|
423
425
|
"datazone",
|
|
424
426
|
"dax",
|
|
427
|
+
"deadline",
|
|
425
428
|
"detective",
|
|
426
429
|
"devicefarm",
|
|
427
430
|
"devops-guru",
|
|
@@ -478,7 +481,6 @@ ServiceName = Literal[
|
|
|
478
481
|
"guardduty",
|
|
479
482
|
"health",
|
|
480
483
|
"healthlake",
|
|
481
|
-
"honeycode",
|
|
482
484
|
"iam",
|
|
483
485
|
"identitystore",
|
|
484
486
|
"imagebuilder",
|
|
@@ -490,7 +492,6 @@ ServiceName = Literal[
|
|
|
490
492
|
"iot",
|
|
491
493
|
"iot-data",
|
|
492
494
|
"iot-jobs-data",
|
|
493
|
-
"iot-roborunner",
|
|
494
495
|
"iot1click-devices",
|
|
495
496
|
"iot1click-projects",
|
|
496
497
|
"iotanalytics",
|
|
@@ -540,6 +541,7 @@ ServiceName = Literal[
|
|
|
540
541
|
"m2",
|
|
541
542
|
"machinelearning",
|
|
542
543
|
"macie2",
|
|
544
|
+
"mailmanager",
|
|
543
545
|
"managedblockchain",
|
|
544
546
|
"managedblockchain-query",
|
|
545
547
|
"marketplace-agreement",
|
|
@@ -565,14 +567,15 @@ ServiceName = Literal[
|
|
|
565
567
|
"migrationhub-config",
|
|
566
568
|
"migrationhuborchestrator",
|
|
567
569
|
"migrationhubstrategy",
|
|
568
|
-
"mobile",
|
|
569
570
|
"mq",
|
|
570
571
|
"mturk",
|
|
571
572
|
"mwaa",
|
|
572
573
|
"neptune",
|
|
574
|
+
"neptune-graph",
|
|
573
575
|
"neptunedata",
|
|
574
576
|
"network-firewall",
|
|
575
577
|
"networkmanager",
|
|
578
|
+
"networkmonitor",
|
|
576
579
|
"nimble",
|
|
577
580
|
"oam",
|
|
578
581
|
"omics",
|
|
@@ -587,6 +590,7 @@ ServiceName = Literal[
|
|
|
587
590
|
"payment-cryptography",
|
|
588
591
|
"payment-cryptography-data",
|
|
589
592
|
"pca-connector-ad",
|
|
593
|
+
"pca-connector-scep",
|
|
590
594
|
"personalize",
|
|
591
595
|
"personalize-events",
|
|
592
596
|
"personalize-runtime",
|
|
@@ -600,6 +604,7 @@ ServiceName = Literal[
|
|
|
600
604
|
"pricing",
|
|
601
605
|
"privatenetworks",
|
|
602
606
|
"proton",
|
|
607
|
+
"qapps",
|
|
603
608
|
"qbusiness",
|
|
604
609
|
"qconnect",
|
|
605
610
|
"qldb",
|
|
@@ -625,6 +630,7 @@ ServiceName = Literal[
|
|
|
625
630
|
"route53-recovery-control-config",
|
|
626
631
|
"route53-recovery-readiness",
|
|
627
632
|
"route53domains",
|
|
633
|
+
"route53profiles",
|
|
628
634
|
"route53resolver",
|
|
629
635
|
"rum",
|
|
630
636
|
"s3",
|
|
@@ -663,6 +669,7 @@ ServiceName = Literal[
|
|
|
663
669
|
"ssm",
|
|
664
670
|
"ssm-contacts",
|
|
665
671
|
"ssm-incidents",
|
|
672
|
+
"ssm-quicksetup",
|
|
666
673
|
"ssm-sap",
|
|
667
674
|
"sso",
|
|
668
675
|
"sso-admin",
|
|
@@ -670,11 +677,14 @@ ServiceName = Literal[
|
|
|
670
677
|
"stepfunctions",
|
|
671
678
|
"storagegateway",
|
|
672
679
|
"sts",
|
|
680
|
+
"supplychain",
|
|
673
681
|
"support",
|
|
674
682
|
"support-app",
|
|
675
683
|
"swf",
|
|
676
684
|
"synthetics",
|
|
685
|
+
"taxsettings",
|
|
677
686
|
"textract",
|
|
687
|
+
"timestream-influxdb",
|
|
678
688
|
"timestream-query",
|
|
679
689
|
"timestream-write",
|
|
680
690
|
"tnb",
|
|
@@ -326,7 +326,6 @@ ServiceName = Literal[
|
|
|
326
326
|
"account",
|
|
327
327
|
"acm",
|
|
328
328
|
"acm-pca",
|
|
329
|
-
"alexaforbusiness",
|
|
330
329
|
"amp",
|
|
331
330
|
"amplify",
|
|
332
331
|
"amplifybackend",
|
|
@@ -341,12 +340,15 @@ ServiceName = Literal[
|
|
|
341
340
|
"appintegrations",
|
|
342
341
|
"application-autoscaling",
|
|
343
342
|
"application-insights",
|
|
343
|
+
"application-signals",
|
|
344
344
|
"applicationcostprofiler",
|
|
345
345
|
"appmesh",
|
|
346
346
|
"apprunner",
|
|
347
347
|
"appstream",
|
|
348
348
|
"appsync",
|
|
349
|
+
"apptest",
|
|
349
350
|
"arc-zonal-shift",
|
|
351
|
+
"artifact",
|
|
350
352
|
"athena",
|
|
351
353
|
"auditmanager",
|
|
352
354
|
"autoscaling",
|
|
@@ -354,7 +356,6 @@ ServiceName = Literal[
|
|
|
354
356
|
"b2bi",
|
|
355
357
|
"backup",
|
|
356
358
|
"backup-gateway",
|
|
357
|
-
"backupstorage",
|
|
358
359
|
"batch",
|
|
359
360
|
"bcm-data-exports",
|
|
360
361
|
"bedrock",
|
|
@@ -365,6 +366,7 @@ ServiceName = Literal[
|
|
|
365
366
|
"braket",
|
|
366
367
|
"budgets",
|
|
367
368
|
"ce",
|
|
369
|
+
"chatbot",
|
|
368
370
|
"chime",
|
|
369
371
|
"chime-sdk-identity",
|
|
370
372
|
"chime-sdk-media-pipelines",
|
|
@@ -390,6 +392,7 @@ ServiceName = Literal[
|
|
|
390
392
|
"codebuild",
|
|
391
393
|
"codecatalyst",
|
|
392
394
|
"codecommit",
|
|
395
|
+
"codeconnections",
|
|
393
396
|
"codedeploy",
|
|
394
397
|
"codeguru-reviewer",
|
|
395
398
|
"codeguru-security",
|
|
@@ -410,6 +413,7 @@ ServiceName = Literal[
|
|
|
410
413
|
"connectcampaigns",
|
|
411
414
|
"connectcases",
|
|
412
415
|
"connectparticipant",
|
|
416
|
+
"controlcatalog",
|
|
413
417
|
"controltower",
|
|
414
418
|
"cost-optimization-hub",
|
|
415
419
|
"cur",
|
|
@@ -420,6 +424,7 @@ ServiceName = Literal[
|
|
|
420
424
|
"datasync",
|
|
421
425
|
"datazone",
|
|
422
426
|
"dax",
|
|
427
|
+
"deadline",
|
|
423
428
|
"detective",
|
|
424
429
|
"devicefarm",
|
|
425
430
|
"devops-guru",
|
|
@@ -476,7 +481,6 @@ ServiceName = Literal[
|
|
|
476
481
|
"guardduty",
|
|
477
482
|
"health",
|
|
478
483
|
"healthlake",
|
|
479
|
-
"honeycode",
|
|
480
484
|
"iam",
|
|
481
485
|
"identitystore",
|
|
482
486
|
"imagebuilder",
|
|
@@ -488,7 +492,6 @@ ServiceName = Literal[
|
|
|
488
492
|
"iot",
|
|
489
493
|
"iot-data",
|
|
490
494
|
"iot-jobs-data",
|
|
491
|
-
"iot-roborunner",
|
|
492
495
|
"iot1click-devices",
|
|
493
496
|
"iot1click-projects",
|
|
494
497
|
"iotanalytics",
|
|
@@ -538,6 +541,7 @@ ServiceName = Literal[
|
|
|
538
541
|
"m2",
|
|
539
542
|
"machinelearning",
|
|
540
543
|
"macie2",
|
|
544
|
+
"mailmanager",
|
|
541
545
|
"managedblockchain",
|
|
542
546
|
"managedblockchain-query",
|
|
543
547
|
"marketplace-agreement",
|
|
@@ -563,14 +567,15 @@ ServiceName = Literal[
|
|
|
563
567
|
"migrationhub-config",
|
|
564
568
|
"migrationhuborchestrator",
|
|
565
569
|
"migrationhubstrategy",
|
|
566
|
-
"mobile",
|
|
567
570
|
"mq",
|
|
568
571
|
"mturk",
|
|
569
572
|
"mwaa",
|
|
570
573
|
"neptune",
|
|
574
|
+
"neptune-graph",
|
|
571
575
|
"neptunedata",
|
|
572
576
|
"network-firewall",
|
|
573
577
|
"networkmanager",
|
|
578
|
+
"networkmonitor",
|
|
574
579
|
"nimble",
|
|
575
580
|
"oam",
|
|
576
581
|
"omics",
|
|
@@ -585,6 +590,7 @@ ServiceName = Literal[
|
|
|
585
590
|
"payment-cryptography",
|
|
586
591
|
"payment-cryptography-data",
|
|
587
592
|
"pca-connector-ad",
|
|
593
|
+
"pca-connector-scep",
|
|
588
594
|
"personalize",
|
|
589
595
|
"personalize-events",
|
|
590
596
|
"personalize-runtime",
|
|
@@ -598,6 +604,7 @@ ServiceName = Literal[
|
|
|
598
604
|
"pricing",
|
|
599
605
|
"privatenetworks",
|
|
600
606
|
"proton",
|
|
607
|
+
"qapps",
|
|
601
608
|
"qbusiness",
|
|
602
609
|
"qconnect",
|
|
603
610
|
"qldb",
|
|
@@ -623,6 +630,7 @@ ServiceName = Literal[
|
|
|
623
630
|
"route53-recovery-control-config",
|
|
624
631
|
"route53-recovery-readiness",
|
|
625
632
|
"route53domains",
|
|
633
|
+
"route53profiles",
|
|
626
634
|
"route53resolver",
|
|
627
635
|
"rum",
|
|
628
636
|
"s3",
|
|
@@ -661,6 +669,7 @@ ServiceName = Literal[
|
|
|
661
669
|
"ssm",
|
|
662
670
|
"ssm-contacts",
|
|
663
671
|
"ssm-incidents",
|
|
672
|
+
"ssm-quicksetup",
|
|
664
673
|
"ssm-sap",
|
|
665
674
|
"sso",
|
|
666
675
|
"sso-admin",
|
|
@@ -668,11 +677,14 @@ ServiceName = Literal[
|
|
|
668
677
|
"stepfunctions",
|
|
669
678
|
"storagegateway",
|
|
670
679
|
"sts",
|
|
680
|
+
"supplychain",
|
|
671
681
|
"support",
|
|
672
682
|
"support-app",
|
|
673
683
|
"swf",
|
|
674
684
|
"synthetics",
|
|
685
|
+
"taxsettings",
|
|
675
686
|
"textract",
|
|
687
|
+
"timestream-influxdb",
|
|
676
688
|
"timestream-query",
|
|
677
689
|
"timestream-write",
|
|
678
690
|
"tnb",
|
|
@@ -14,7 +14,9 @@ Usage::
|
|
|
14
14
|
|
|
15
15
|
import sys
|
|
16
16
|
from datetime import datetime
|
|
17
|
-
from typing import Dict, List, Sequence, Union
|
|
17
|
+
from typing import IO, Any, Dict, List, Sequence, Union
|
|
18
|
+
|
|
19
|
+
from botocore.response import StreamingBody
|
|
18
20
|
|
|
19
21
|
from .literals import (
|
|
20
22
|
ChangeActionType,
|
|
@@ -45,12 +47,12 @@ if sys.version_info >= (3, 12):
|
|
|
45
47
|
else:
|
|
46
48
|
from typing_extensions import TypedDict
|
|
47
49
|
|
|
48
|
-
|
|
49
50
|
__all__ = (
|
|
50
51
|
"ExcludedRuleTypeDef",
|
|
51
52
|
"WafActionTypeDef",
|
|
52
53
|
"WafOverrideActionTypeDef",
|
|
53
54
|
"AssociateWebACLRequestRequestTypeDef",
|
|
55
|
+
"BlobTypeDef",
|
|
54
56
|
"ByteMatchSetSummaryTypeDef",
|
|
55
57
|
"FieldToMatchTypeDef",
|
|
56
58
|
"CreateByteMatchSetRequestRequestTypeDef",
|
|
@@ -95,6 +97,7 @@ __all__ = (
|
|
|
95
97
|
"GetRegexPatternSetRequestRequestTypeDef",
|
|
96
98
|
"GetRuleGroupRequestRequestTypeDef",
|
|
97
99
|
"GetRuleRequestRequestTypeDef",
|
|
100
|
+
"TimeWindowOutputTypeDef",
|
|
98
101
|
"GetSizeConstraintSetRequestRequestTypeDef",
|
|
99
102
|
"GetSqlInjectionMatchSetRequestRequestTypeDef",
|
|
100
103
|
"GetWebACLForResourceRequestRequestTypeDef",
|
|
@@ -134,8 +137,11 @@ __all__ = (
|
|
|
134
137
|
"RegexPatternSetUpdateTypeDef",
|
|
135
138
|
"TimestampTypeDef",
|
|
136
139
|
"UntagResourceRequestRequestTypeDef",
|
|
140
|
+
"ActivatedRuleOutputTypeDef",
|
|
137
141
|
"ActivatedRuleTypeDef",
|
|
142
|
+
"ByteMatchTupleOutputTypeDef",
|
|
138
143
|
"ByteMatchTupleTypeDef",
|
|
144
|
+
"LoggingConfigurationOutputTypeDef",
|
|
139
145
|
"LoggingConfigurationTypeDef",
|
|
140
146
|
"RegexMatchTupleTypeDef",
|
|
141
147
|
"SizeConstraintTypeDef",
|
|
@@ -206,15 +212,16 @@ __all__ = (
|
|
|
206
212
|
"UpdateRegexPatternSetRequestRequestTypeDef",
|
|
207
213
|
"TimeWindowTypeDef",
|
|
208
214
|
"ListActivatedRulesInRuleGroupResponseTypeDef",
|
|
209
|
-
"RuleGroupUpdateTypeDef",
|
|
210
215
|
"WebACLTypeDef",
|
|
216
|
+
"RuleGroupUpdateTypeDef",
|
|
211
217
|
"WebACLUpdateTypeDef",
|
|
212
218
|
"ByteMatchSetTypeDef",
|
|
213
219
|
"ByteMatchSetUpdateTypeDef",
|
|
214
220
|
"GetLoggingConfigurationResponseTypeDef",
|
|
215
221
|
"ListLoggingConfigurationsResponseTypeDef",
|
|
216
|
-
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
217
222
|
"PutLoggingConfigurationResponseTypeDef",
|
|
223
|
+
"LoggingConfigurationUnionTypeDef",
|
|
224
|
+
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
218
225
|
"RegexMatchSetTypeDef",
|
|
219
226
|
"RegexMatchSetUpdateTypeDef",
|
|
220
227
|
"SizeConstraintSetTypeDef",
|
|
@@ -238,9 +245,10 @@ __all__ = (
|
|
|
238
245
|
"UpdateRateBasedRuleRequestRequestTypeDef",
|
|
239
246
|
"UpdateRuleRequestRequestTypeDef",
|
|
240
247
|
"GetSampledRequestsRequestRequestTypeDef",
|
|
241
|
-
"
|
|
248
|
+
"TimeWindowUnionTypeDef",
|
|
242
249
|
"CreateWebACLResponseTypeDef",
|
|
243
250
|
"GetWebACLResponseTypeDef",
|
|
251
|
+
"UpdateRuleGroupRequestRequestTypeDef",
|
|
244
252
|
"UpdateWebACLRequestRequestTypeDef",
|
|
245
253
|
"CreateByteMatchSetResponseTypeDef",
|
|
246
254
|
"GetByteMatchSetResponseTypeDef",
|
|
@@ -285,6 +293,7 @@ AssociateWebACLRequestRequestTypeDef = TypedDict(
|
|
|
285
293
|
"ResourceArn": str,
|
|
286
294
|
},
|
|
287
295
|
)
|
|
296
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
288
297
|
ByteMatchSetSummaryTypeDef = TypedDict(
|
|
289
298
|
"ByteMatchSetSummaryTypeDef",
|
|
290
299
|
{
|
|
@@ -310,10 +319,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
310
319
|
"ResponseMetadataTypeDef",
|
|
311
320
|
{
|
|
312
321
|
"RequestId": str,
|
|
313
|
-
"HostId": str,
|
|
314
322
|
"HTTPStatusCode": int,
|
|
315
323
|
"HTTPHeaders": Dict[str, str],
|
|
316
324
|
"RetryAttempts": int,
|
|
325
|
+
"HostId": NotRequired[str],
|
|
317
326
|
},
|
|
318
327
|
)
|
|
319
328
|
CreateGeoMatchSetRequestRequestTypeDef = TypedDict(
|
|
@@ -585,6 +594,13 @@ GetRuleRequestRequestTypeDef = TypedDict(
|
|
|
585
594
|
"RuleId": str,
|
|
586
595
|
},
|
|
587
596
|
)
|
|
597
|
+
TimeWindowOutputTypeDef = TypedDict(
|
|
598
|
+
"TimeWindowOutputTypeDef",
|
|
599
|
+
{
|
|
600
|
+
"StartTime": datetime,
|
|
601
|
+
"EndTime": datetime,
|
|
602
|
+
},
|
|
603
|
+
)
|
|
588
604
|
GetSizeConstraintSetRequestRequestTypeDef = TypedDict(
|
|
589
605
|
"GetSizeConstraintSetRequestRequestTypeDef",
|
|
590
606
|
{
|
|
@@ -851,6 +867,17 @@ UntagResourceRequestRequestTypeDef = TypedDict(
|
|
|
851
867
|
"TagKeys": Sequence[str],
|
|
852
868
|
},
|
|
853
869
|
)
|
|
870
|
+
ActivatedRuleOutputTypeDef = TypedDict(
|
|
871
|
+
"ActivatedRuleOutputTypeDef",
|
|
872
|
+
{
|
|
873
|
+
"Priority": int,
|
|
874
|
+
"RuleId": str,
|
|
875
|
+
"Action": NotRequired[WafActionTypeDef],
|
|
876
|
+
"OverrideAction": NotRequired[WafOverrideActionTypeDef],
|
|
877
|
+
"Type": NotRequired[WafRuleTypeType],
|
|
878
|
+
"ExcludedRules": NotRequired[List[ExcludedRuleTypeDef]],
|
|
879
|
+
},
|
|
880
|
+
)
|
|
854
881
|
ActivatedRuleTypeDef = TypedDict(
|
|
855
882
|
"ActivatedRuleTypeDef",
|
|
856
883
|
{
|
|
@@ -859,26 +886,43 @@ ActivatedRuleTypeDef = TypedDict(
|
|
|
859
886
|
"Action": NotRequired[WafActionTypeDef],
|
|
860
887
|
"OverrideAction": NotRequired[WafOverrideActionTypeDef],
|
|
861
888
|
"Type": NotRequired[WafRuleTypeType],
|
|
862
|
-
"ExcludedRules": NotRequired[
|
|
889
|
+
"ExcludedRules": NotRequired[Sequence[ExcludedRuleTypeDef]],
|
|
890
|
+
},
|
|
891
|
+
)
|
|
892
|
+
ByteMatchTupleOutputTypeDef = TypedDict(
|
|
893
|
+
"ByteMatchTupleOutputTypeDef",
|
|
894
|
+
{
|
|
895
|
+
"FieldToMatch": FieldToMatchTypeDef,
|
|
896
|
+
"TargetString": bytes,
|
|
897
|
+
"TextTransformation": TextTransformationType,
|
|
898
|
+
"PositionalConstraint": PositionalConstraintType,
|
|
863
899
|
},
|
|
864
900
|
)
|
|
865
901
|
ByteMatchTupleTypeDef = TypedDict(
|
|
866
902
|
"ByteMatchTupleTypeDef",
|
|
867
903
|
{
|
|
868
904
|
"FieldToMatch": FieldToMatchTypeDef,
|
|
869
|
-
"TargetString":
|
|
905
|
+
"TargetString": BlobTypeDef,
|
|
870
906
|
"TextTransformation": TextTransformationType,
|
|
871
907
|
"PositionalConstraint": PositionalConstraintType,
|
|
872
908
|
},
|
|
873
909
|
)
|
|
874
|
-
|
|
875
|
-
"
|
|
910
|
+
LoggingConfigurationOutputTypeDef = TypedDict(
|
|
911
|
+
"LoggingConfigurationOutputTypeDef",
|
|
876
912
|
{
|
|
877
913
|
"ResourceArn": str,
|
|
878
914
|
"LogDestinationConfigs": List[str],
|
|
879
915
|
"RedactedFields": NotRequired[List[FieldToMatchTypeDef]],
|
|
880
916
|
},
|
|
881
917
|
)
|
|
918
|
+
LoggingConfigurationTypeDef = TypedDict(
|
|
919
|
+
"LoggingConfigurationTypeDef",
|
|
920
|
+
{
|
|
921
|
+
"ResourceArn": str,
|
|
922
|
+
"LogDestinationConfigs": Sequence[str],
|
|
923
|
+
"RedactedFields": NotRequired[Sequence[FieldToMatchTypeDef]],
|
|
924
|
+
},
|
|
925
|
+
)
|
|
882
926
|
RegexMatchTupleTypeDef = TypedDict(
|
|
883
927
|
"RegexMatchTupleTypeDef",
|
|
884
928
|
{
|
|
@@ -1402,28 +1446,28 @@ ListActivatedRulesInRuleGroupResponseTypeDef = TypedDict(
|
|
|
1402
1446
|
"ListActivatedRulesInRuleGroupResponseTypeDef",
|
|
1403
1447
|
{
|
|
1404
1448
|
"NextMarker": str,
|
|
1405
|
-
"ActivatedRules": List[
|
|
1449
|
+
"ActivatedRules": List[ActivatedRuleOutputTypeDef],
|
|
1406
1450
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1407
1451
|
},
|
|
1408
1452
|
)
|
|
1409
|
-
RuleGroupUpdateTypeDef = TypedDict(
|
|
1410
|
-
"RuleGroupUpdateTypeDef",
|
|
1411
|
-
{
|
|
1412
|
-
"Action": ChangeActionType,
|
|
1413
|
-
"ActivatedRule": ActivatedRuleTypeDef,
|
|
1414
|
-
},
|
|
1415
|
-
)
|
|
1416
1453
|
WebACLTypeDef = TypedDict(
|
|
1417
1454
|
"WebACLTypeDef",
|
|
1418
1455
|
{
|
|
1419
1456
|
"WebACLId": str,
|
|
1420
1457
|
"DefaultAction": WafActionTypeDef,
|
|
1421
|
-
"Rules": List[
|
|
1458
|
+
"Rules": List[ActivatedRuleOutputTypeDef],
|
|
1422
1459
|
"Name": NotRequired[str],
|
|
1423
1460
|
"MetricName": NotRequired[str],
|
|
1424
1461
|
"WebACLArn": NotRequired[str],
|
|
1425
1462
|
},
|
|
1426
1463
|
)
|
|
1464
|
+
RuleGroupUpdateTypeDef = TypedDict(
|
|
1465
|
+
"RuleGroupUpdateTypeDef",
|
|
1466
|
+
{
|
|
1467
|
+
"Action": ChangeActionType,
|
|
1468
|
+
"ActivatedRule": ActivatedRuleTypeDef,
|
|
1469
|
+
},
|
|
1470
|
+
)
|
|
1427
1471
|
WebACLUpdateTypeDef = TypedDict(
|
|
1428
1472
|
"WebACLUpdateTypeDef",
|
|
1429
1473
|
{
|
|
@@ -1435,7 +1479,7 @@ ByteMatchSetTypeDef = TypedDict(
|
|
|
1435
1479
|
"ByteMatchSetTypeDef",
|
|
1436
1480
|
{
|
|
1437
1481
|
"ByteMatchSetId": str,
|
|
1438
|
-
"ByteMatchTuples": List[
|
|
1482
|
+
"ByteMatchTuples": List[ByteMatchTupleOutputTypeDef],
|
|
1439
1483
|
"Name": NotRequired[str],
|
|
1440
1484
|
},
|
|
1441
1485
|
)
|
|
@@ -1449,29 +1493,32 @@ ByteMatchSetUpdateTypeDef = TypedDict(
|
|
|
1449
1493
|
GetLoggingConfigurationResponseTypeDef = TypedDict(
|
|
1450
1494
|
"GetLoggingConfigurationResponseTypeDef",
|
|
1451
1495
|
{
|
|
1452
|
-
"LoggingConfiguration":
|
|
1496
|
+
"LoggingConfiguration": LoggingConfigurationOutputTypeDef,
|
|
1453
1497
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1454
1498
|
},
|
|
1455
1499
|
)
|
|
1456
1500
|
ListLoggingConfigurationsResponseTypeDef = TypedDict(
|
|
1457
1501
|
"ListLoggingConfigurationsResponseTypeDef",
|
|
1458
1502
|
{
|
|
1459
|
-
"LoggingConfigurations": List[
|
|
1503
|
+
"LoggingConfigurations": List[LoggingConfigurationOutputTypeDef],
|
|
1460
1504
|
"NextMarker": str,
|
|
1461
1505
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1462
1506
|
},
|
|
1463
1507
|
)
|
|
1464
|
-
|
|
1465
|
-
"
|
|
1508
|
+
PutLoggingConfigurationResponseTypeDef = TypedDict(
|
|
1509
|
+
"PutLoggingConfigurationResponseTypeDef",
|
|
1466
1510
|
{
|
|
1467
|
-
"LoggingConfiguration":
|
|
1511
|
+
"LoggingConfiguration": LoggingConfigurationOutputTypeDef,
|
|
1512
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1468
1513
|
},
|
|
1469
1514
|
)
|
|
1470
|
-
|
|
1471
|
-
|
|
1515
|
+
LoggingConfigurationUnionTypeDef = Union[
|
|
1516
|
+
LoggingConfigurationTypeDef, LoggingConfigurationOutputTypeDef
|
|
1517
|
+
]
|
|
1518
|
+
PutLoggingConfigurationRequestRequestTypeDef = TypedDict(
|
|
1519
|
+
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
1472
1520
|
{
|
|
1473
1521
|
"LoggingConfiguration": LoggingConfigurationTypeDef,
|
|
1474
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1475
1522
|
},
|
|
1476
1523
|
)
|
|
1477
1524
|
RegexMatchSetTypeDef = TypedDict(
|
|
@@ -1654,14 +1701,7 @@ GetSampledRequestsRequestRequestTypeDef = TypedDict(
|
|
|
1654
1701
|
"MaxItems": int,
|
|
1655
1702
|
},
|
|
1656
1703
|
)
|
|
1657
|
-
|
|
1658
|
-
"UpdateRuleGroupRequestRequestTypeDef",
|
|
1659
|
-
{
|
|
1660
|
-
"RuleGroupId": str,
|
|
1661
|
-
"Updates": Sequence[RuleGroupUpdateTypeDef],
|
|
1662
|
-
"ChangeToken": str,
|
|
1663
|
-
},
|
|
1664
|
-
)
|
|
1704
|
+
TimeWindowUnionTypeDef = Union[TimeWindowTypeDef, TimeWindowOutputTypeDef]
|
|
1665
1705
|
CreateWebACLResponseTypeDef = TypedDict(
|
|
1666
1706
|
"CreateWebACLResponseTypeDef",
|
|
1667
1707
|
{
|
|
@@ -1677,6 +1717,14 @@ GetWebACLResponseTypeDef = TypedDict(
|
|
|
1677
1717
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1678
1718
|
},
|
|
1679
1719
|
)
|
|
1720
|
+
UpdateRuleGroupRequestRequestTypeDef = TypedDict(
|
|
1721
|
+
"UpdateRuleGroupRequestRequestTypeDef",
|
|
1722
|
+
{
|
|
1723
|
+
"RuleGroupId": str,
|
|
1724
|
+
"Updates": Sequence[RuleGroupUpdateTypeDef],
|
|
1725
|
+
"ChangeToken": str,
|
|
1726
|
+
},
|
|
1727
|
+
)
|
|
1680
1728
|
UpdateWebACLRequestRequestTypeDef = TypedDict(
|
|
1681
1729
|
"UpdateWebACLRequestRequestTypeDef",
|
|
1682
1730
|
{
|
|
@@ -1806,7 +1854,7 @@ GetSampledRequestsResponseTypeDef = TypedDict(
|
|
|
1806
1854
|
{
|
|
1807
1855
|
"SampledRequests": List[SampledHTTPRequestTypeDef],
|
|
1808
1856
|
"PopulationSize": int,
|
|
1809
|
-
"TimeWindow":
|
|
1857
|
+
"TimeWindow": TimeWindowOutputTypeDef,
|
|
1810
1858
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1811
1859
|
},
|
|
1812
1860
|
)
|
|
@@ -14,7 +14,9 @@ Usage::
|
|
|
14
14
|
|
|
15
15
|
import sys
|
|
16
16
|
from datetime import datetime
|
|
17
|
-
from typing import Dict, List, Sequence, Union
|
|
17
|
+
from typing import IO, Any, Dict, List, Sequence, Union
|
|
18
|
+
|
|
19
|
+
from botocore.response import StreamingBody
|
|
18
20
|
|
|
19
21
|
from .literals import (
|
|
20
22
|
ChangeActionType,
|
|
@@ -50,6 +52,7 @@ __all__ = (
|
|
|
50
52
|
"WafActionTypeDef",
|
|
51
53
|
"WafOverrideActionTypeDef",
|
|
52
54
|
"AssociateWebACLRequestRequestTypeDef",
|
|
55
|
+
"BlobTypeDef",
|
|
53
56
|
"ByteMatchSetSummaryTypeDef",
|
|
54
57
|
"FieldToMatchTypeDef",
|
|
55
58
|
"CreateByteMatchSetRequestRequestTypeDef",
|
|
@@ -94,6 +97,7 @@ __all__ = (
|
|
|
94
97
|
"GetRegexPatternSetRequestRequestTypeDef",
|
|
95
98
|
"GetRuleGroupRequestRequestTypeDef",
|
|
96
99
|
"GetRuleRequestRequestTypeDef",
|
|
100
|
+
"TimeWindowOutputTypeDef",
|
|
97
101
|
"GetSizeConstraintSetRequestRequestTypeDef",
|
|
98
102
|
"GetSqlInjectionMatchSetRequestRequestTypeDef",
|
|
99
103
|
"GetWebACLForResourceRequestRequestTypeDef",
|
|
@@ -133,8 +137,11 @@ __all__ = (
|
|
|
133
137
|
"RegexPatternSetUpdateTypeDef",
|
|
134
138
|
"TimestampTypeDef",
|
|
135
139
|
"UntagResourceRequestRequestTypeDef",
|
|
140
|
+
"ActivatedRuleOutputTypeDef",
|
|
136
141
|
"ActivatedRuleTypeDef",
|
|
142
|
+
"ByteMatchTupleOutputTypeDef",
|
|
137
143
|
"ByteMatchTupleTypeDef",
|
|
144
|
+
"LoggingConfigurationOutputTypeDef",
|
|
138
145
|
"LoggingConfigurationTypeDef",
|
|
139
146
|
"RegexMatchTupleTypeDef",
|
|
140
147
|
"SizeConstraintTypeDef",
|
|
@@ -205,15 +212,16 @@ __all__ = (
|
|
|
205
212
|
"UpdateRegexPatternSetRequestRequestTypeDef",
|
|
206
213
|
"TimeWindowTypeDef",
|
|
207
214
|
"ListActivatedRulesInRuleGroupResponseTypeDef",
|
|
208
|
-
"RuleGroupUpdateTypeDef",
|
|
209
215
|
"WebACLTypeDef",
|
|
216
|
+
"RuleGroupUpdateTypeDef",
|
|
210
217
|
"WebACLUpdateTypeDef",
|
|
211
218
|
"ByteMatchSetTypeDef",
|
|
212
219
|
"ByteMatchSetUpdateTypeDef",
|
|
213
220
|
"GetLoggingConfigurationResponseTypeDef",
|
|
214
221
|
"ListLoggingConfigurationsResponseTypeDef",
|
|
215
|
-
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
216
222
|
"PutLoggingConfigurationResponseTypeDef",
|
|
223
|
+
"LoggingConfigurationUnionTypeDef",
|
|
224
|
+
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
217
225
|
"RegexMatchSetTypeDef",
|
|
218
226
|
"RegexMatchSetUpdateTypeDef",
|
|
219
227
|
"SizeConstraintSetTypeDef",
|
|
@@ -237,9 +245,10 @@ __all__ = (
|
|
|
237
245
|
"UpdateRateBasedRuleRequestRequestTypeDef",
|
|
238
246
|
"UpdateRuleRequestRequestTypeDef",
|
|
239
247
|
"GetSampledRequestsRequestRequestTypeDef",
|
|
240
|
-
"
|
|
248
|
+
"TimeWindowUnionTypeDef",
|
|
241
249
|
"CreateWebACLResponseTypeDef",
|
|
242
250
|
"GetWebACLResponseTypeDef",
|
|
251
|
+
"UpdateRuleGroupRequestRequestTypeDef",
|
|
243
252
|
"UpdateWebACLRequestRequestTypeDef",
|
|
244
253
|
"CreateByteMatchSetResponseTypeDef",
|
|
245
254
|
"GetByteMatchSetResponseTypeDef",
|
|
@@ -284,6 +293,7 @@ AssociateWebACLRequestRequestTypeDef = TypedDict(
|
|
|
284
293
|
"ResourceArn": str,
|
|
285
294
|
},
|
|
286
295
|
)
|
|
296
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
287
297
|
ByteMatchSetSummaryTypeDef = TypedDict(
|
|
288
298
|
"ByteMatchSetSummaryTypeDef",
|
|
289
299
|
{
|
|
@@ -309,10 +319,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
309
319
|
"ResponseMetadataTypeDef",
|
|
310
320
|
{
|
|
311
321
|
"RequestId": str,
|
|
312
|
-
"HostId": str,
|
|
313
322
|
"HTTPStatusCode": int,
|
|
314
323
|
"HTTPHeaders": Dict[str, str],
|
|
315
324
|
"RetryAttempts": int,
|
|
325
|
+
"HostId": NotRequired[str],
|
|
316
326
|
},
|
|
317
327
|
)
|
|
318
328
|
CreateGeoMatchSetRequestRequestTypeDef = TypedDict(
|
|
@@ -584,6 +594,13 @@ GetRuleRequestRequestTypeDef = TypedDict(
|
|
|
584
594
|
"RuleId": str,
|
|
585
595
|
},
|
|
586
596
|
)
|
|
597
|
+
TimeWindowOutputTypeDef = TypedDict(
|
|
598
|
+
"TimeWindowOutputTypeDef",
|
|
599
|
+
{
|
|
600
|
+
"StartTime": datetime,
|
|
601
|
+
"EndTime": datetime,
|
|
602
|
+
},
|
|
603
|
+
)
|
|
587
604
|
GetSizeConstraintSetRequestRequestTypeDef = TypedDict(
|
|
588
605
|
"GetSizeConstraintSetRequestRequestTypeDef",
|
|
589
606
|
{
|
|
@@ -850,6 +867,17 @@ UntagResourceRequestRequestTypeDef = TypedDict(
|
|
|
850
867
|
"TagKeys": Sequence[str],
|
|
851
868
|
},
|
|
852
869
|
)
|
|
870
|
+
ActivatedRuleOutputTypeDef = TypedDict(
|
|
871
|
+
"ActivatedRuleOutputTypeDef",
|
|
872
|
+
{
|
|
873
|
+
"Priority": int,
|
|
874
|
+
"RuleId": str,
|
|
875
|
+
"Action": NotRequired[WafActionTypeDef],
|
|
876
|
+
"OverrideAction": NotRequired[WafOverrideActionTypeDef],
|
|
877
|
+
"Type": NotRequired[WafRuleTypeType],
|
|
878
|
+
"ExcludedRules": NotRequired[List[ExcludedRuleTypeDef]],
|
|
879
|
+
},
|
|
880
|
+
)
|
|
853
881
|
ActivatedRuleTypeDef = TypedDict(
|
|
854
882
|
"ActivatedRuleTypeDef",
|
|
855
883
|
{
|
|
@@ -858,26 +886,43 @@ ActivatedRuleTypeDef = TypedDict(
|
|
|
858
886
|
"Action": NotRequired[WafActionTypeDef],
|
|
859
887
|
"OverrideAction": NotRequired[WafOverrideActionTypeDef],
|
|
860
888
|
"Type": NotRequired[WafRuleTypeType],
|
|
861
|
-
"ExcludedRules": NotRequired[
|
|
889
|
+
"ExcludedRules": NotRequired[Sequence[ExcludedRuleTypeDef]],
|
|
890
|
+
},
|
|
891
|
+
)
|
|
892
|
+
ByteMatchTupleOutputTypeDef = TypedDict(
|
|
893
|
+
"ByteMatchTupleOutputTypeDef",
|
|
894
|
+
{
|
|
895
|
+
"FieldToMatch": FieldToMatchTypeDef,
|
|
896
|
+
"TargetString": bytes,
|
|
897
|
+
"TextTransformation": TextTransformationType,
|
|
898
|
+
"PositionalConstraint": PositionalConstraintType,
|
|
862
899
|
},
|
|
863
900
|
)
|
|
864
901
|
ByteMatchTupleTypeDef = TypedDict(
|
|
865
902
|
"ByteMatchTupleTypeDef",
|
|
866
903
|
{
|
|
867
904
|
"FieldToMatch": FieldToMatchTypeDef,
|
|
868
|
-
"TargetString":
|
|
905
|
+
"TargetString": BlobTypeDef,
|
|
869
906
|
"TextTransformation": TextTransformationType,
|
|
870
907
|
"PositionalConstraint": PositionalConstraintType,
|
|
871
908
|
},
|
|
872
909
|
)
|
|
873
|
-
|
|
874
|
-
"
|
|
910
|
+
LoggingConfigurationOutputTypeDef = TypedDict(
|
|
911
|
+
"LoggingConfigurationOutputTypeDef",
|
|
875
912
|
{
|
|
876
913
|
"ResourceArn": str,
|
|
877
914
|
"LogDestinationConfigs": List[str],
|
|
878
915
|
"RedactedFields": NotRequired[List[FieldToMatchTypeDef]],
|
|
879
916
|
},
|
|
880
917
|
)
|
|
918
|
+
LoggingConfigurationTypeDef = TypedDict(
|
|
919
|
+
"LoggingConfigurationTypeDef",
|
|
920
|
+
{
|
|
921
|
+
"ResourceArn": str,
|
|
922
|
+
"LogDestinationConfigs": Sequence[str],
|
|
923
|
+
"RedactedFields": NotRequired[Sequence[FieldToMatchTypeDef]],
|
|
924
|
+
},
|
|
925
|
+
)
|
|
881
926
|
RegexMatchTupleTypeDef = TypedDict(
|
|
882
927
|
"RegexMatchTupleTypeDef",
|
|
883
928
|
{
|
|
@@ -1401,28 +1446,28 @@ ListActivatedRulesInRuleGroupResponseTypeDef = TypedDict(
|
|
|
1401
1446
|
"ListActivatedRulesInRuleGroupResponseTypeDef",
|
|
1402
1447
|
{
|
|
1403
1448
|
"NextMarker": str,
|
|
1404
|
-
"ActivatedRules": List[
|
|
1449
|
+
"ActivatedRules": List[ActivatedRuleOutputTypeDef],
|
|
1405
1450
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1406
1451
|
},
|
|
1407
1452
|
)
|
|
1408
|
-
RuleGroupUpdateTypeDef = TypedDict(
|
|
1409
|
-
"RuleGroupUpdateTypeDef",
|
|
1410
|
-
{
|
|
1411
|
-
"Action": ChangeActionType,
|
|
1412
|
-
"ActivatedRule": ActivatedRuleTypeDef,
|
|
1413
|
-
},
|
|
1414
|
-
)
|
|
1415
1453
|
WebACLTypeDef = TypedDict(
|
|
1416
1454
|
"WebACLTypeDef",
|
|
1417
1455
|
{
|
|
1418
1456
|
"WebACLId": str,
|
|
1419
1457
|
"DefaultAction": WafActionTypeDef,
|
|
1420
|
-
"Rules": List[
|
|
1458
|
+
"Rules": List[ActivatedRuleOutputTypeDef],
|
|
1421
1459
|
"Name": NotRequired[str],
|
|
1422
1460
|
"MetricName": NotRequired[str],
|
|
1423
1461
|
"WebACLArn": NotRequired[str],
|
|
1424
1462
|
},
|
|
1425
1463
|
)
|
|
1464
|
+
RuleGroupUpdateTypeDef = TypedDict(
|
|
1465
|
+
"RuleGroupUpdateTypeDef",
|
|
1466
|
+
{
|
|
1467
|
+
"Action": ChangeActionType,
|
|
1468
|
+
"ActivatedRule": ActivatedRuleTypeDef,
|
|
1469
|
+
},
|
|
1470
|
+
)
|
|
1426
1471
|
WebACLUpdateTypeDef = TypedDict(
|
|
1427
1472
|
"WebACLUpdateTypeDef",
|
|
1428
1473
|
{
|
|
@@ -1434,7 +1479,7 @@ ByteMatchSetTypeDef = TypedDict(
|
|
|
1434
1479
|
"ByteMatchSetTypeDef",
|
|
1435
1480
|
{
|
|
1436
1481
|
"ByteMatchSetId": str,
|
|
1437
|
-
"ByteMatchTuples": List[
|
|
1482
|
+
"ByteMatchTuples": List[ByteMatchTupleOutputTypeDef],
|
|
1438
1483
|
"Name": NotRequired[str],
|
|
1439
1484
|
},
|
|
1440
1485
|
)
|
|
@@ -1448,29 +1493,32 @@ ByteMatchSetUpdateTypeDef = TypedDict(
|
|
|
1448
1493
|
GetLoggingConfigurationResponseTypeDef = TypedDict(
|
|
1449
1494
|
"GetLoggingConfigurationResponseTypeDef",
|
|
1450
1495
|
{
|
|
1451
|
-
"LoggingConfiguration":
|
|
1496
|
+
"LoggingConfiguration": LoggingConfigurationOutputTypeDef,
|
|
1452
1497
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1453
1498
|
},
|
|
1454
1499
|
)
|
|
1455
1500
|
ListLoggingConfigurationsResponseTypeDef = TypedDict(
|
|
1456
1501
|
"ListLoggingConfigurationsResponseTypeDef",
|
|
1457
1502
|
{
|
|
1458
|
-
"LoggingConfigurations": List[
|
|
1503
|
+
"LoggingConfigurations": List[LoggingConfigurationOutputTypeDef],
|
|
1459
1504
|
"NextMarker": str,
|
|
1460
1505
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1461
1506
|
},
|
|
1462
1507
|
)
|
|
1463
|
-
|
|
1464
|
-
"
|
|
1508
|
+
PutLoggingConfigurationResponseTypeDef = TypedDict(
|
|
1509
|
+
"PutLoggingConfigurationResponseTypeDef",
|
|
1465
1510
|
{
|
|
1466
|
-
"LoggingConfiguration":
|
|
1511
|
+
"LoggingConfiguration": LoggingConfigurationOutputTypeDef,
|
|
1512
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1467
1513
|
},
|
|
1468
1514
|
)
|
|
1469
|
-
|
|
1470
|
-
|
|
1515
|
+
LoggingConfigurationUnionTypeDef = Union[
|
|
1516
|
+
LoggingConfigurationTypeDef, LoggingConfigurationOutputTypeDef
|
|
1517
|
+
]
|
|
1518
|
+
PutLoggingConfigurationRequestRequestTypeDef = TypedDict(
|
|
1519
|
+
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
1471
1520
|
{
|
|
1472
1521
|
"LoggingConfiguration": LoggingConfigurationTypeDef,
|
|
1473
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1474
1522
|
},
|
|
1475
1523
|
)
|
|
1476
1524
|
RegexMatchSetTypeDef = TypedDict(
|
|
@@ -1653,14 +1701,7 @@ GetSampledRequestsRequestRequestTypeDef = TypedDict(
|
|
|
1653
1701
|
"MaxItems": int,
|
|
1654
1702
|
},
|
|
1655
1703
|
)
|
|
1656
|
-
|
|
1657
|
-
"UpdateRuleGroupRequestRequestTypeDef",
|
|
1658
|
-
{
|
|
1659
|
-
"RuleGroupId": str,
|
|
1660
|
-
"Updates": Sequence[RuleGroupUpdateTypeDef],
|
|
1661
|
-
"ChangeToken": str,
|
|
1662
|
-
},
|
|
1663
|
-
)
|
|
1704
|
+
TimeWindowUnionTypeDef = Union[TimeWindowTypeDef, TimeWindowOutputTypeDef]
|
|
1664
1705
|
CreateWebACLResponseTypeDef = TypedDict(
|
|
1665
1706
|
"CreateWebACLResponseTypeDef",
|
|
1666
1707
|
{
|
|
@@ -1676,6 +1717,14 @@ GetWebACLResponseTypeDef = TypedDict(
|
|
|
1676
1717
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1677
1718
|
},
|
|
1678
1719
|
)
|
|
1720
|
+
UpdateRuleGroupRequestRequestTypeDef = TypedDict(
|
|
1721
|
+
"UpdateRuleGroupRequestRequestTypeDef",
|
|
1722
|
+
{
|
|
1723
|
+
"RuleGroupId": str,
|
|
1724
|
+
"Updates": Sequence[RuleGroupUpdateTypeDef],
|
|
1725
|
+
"ChangeToken": str,
|
|
1726
|
+
},
|
|
1727
|
+
)
|
|
1679
1728
|
UpdateWebACLRequestRequestTypeDef = TypedDict(
|
|
1680
1729
|
"UpdateWebACLRequestRequestTypeDef",
|
|
1681
1730
|
{
|
|
@@ -1805,7 +1854,7 @@ GetSampledRequestsResponseTypeDef = TypedDict(
|
|
|
1805
1854
|
{
|
|
1806
1855
|
"SampledRequests": List[SampledHTTPRequestTypeDef],
|
|
1807
1856
|
"PopulationSize": int,
|
|
1808
|
-
"TimeWindow":
|
|
1857
|
+
"TimeWindow": TimeWindowOutputTypeDef,
|
|
1809
1858
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1810
1859
|
},
|
|
1811
1860
|
)
|
{mypy_boto3_waf_regional-1.34.0.dist-info → mypy_boto3_waf_regional-1.34.153.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-waf-regional
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.WAFRegional 1.34.
|
|
3
|
+
Version: 1.34.153
|
|
4
|
+
Summary: Type annotations for boto3.WAFRegional 1.34.153 service generated with mypy-boto3-builder 7.25.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
32
|
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.WAFRegional 1.34.
|
|
46
|
+
[boto3.WAFRegional 1.34.153](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/waf-regional.html#WAFRegional)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.25.0](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_waf_regional/__init__.py,sha256=t4q47ur09JlRlBSrBJLg-QIJhIWKxTQk4aSt9__GAbQ,408
|
|
2
|
+
mypy_boto3_waf_regional/__init__.pyi,sha256=t4q47ur09JlRlBSrBJLg-QIJhIWKxTQk4aSt9__GAbQ,408
|
|
3
|
+
mypy_boto3_waf_regional/__main__.py,sha256=rcj6pHeQciK681gq0YzjxW_vkxOoG2d5bT1jTttXLlA,940
|
|
4
|
+
mypy_boto3_waf_regional/client.py,sha256=HFdWHphLDjGQDtHxsm_2yKsjxn4083lhoD473wj4ZIc,46240
|
|
5
|
+
mypy_boto3_waf_regional/client.pyi,sha256=nZlJLaZAy9nkpdiJUyUtfYzck-qkcHY1u-xcPsoL2uA,46237
|
|
6
|
+
mypy_boto3_waf_regional/literals.py,sha256=cGRq6uiaeO6gXWGdcpT-xJNu0T9Nr6xhl9g2Q5KI-4Q,12936
|
|
7
|
+
mypy_boto3_waf_regional/literals.pyi,sha256=cGRq6uiaeO6gXWGdcpT-xJNu0T9Nr6xhl9g2Q5KI-4Q,12936
|
|
8
|
+
mypy_boto3_waf_regional/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_waf_regional/type_defs.py,sha256=x5_vjwetNrZQR40gP1DNVkyp8JqIgREOgig7RCpbCPk,51529
|
|
10
|
+
mypy_boto3_waf_regional/type_defs.pyi,sha256=x5_vjwetNrZQR40gP1DNVkyp8JqIgREOgig7RCpbCPk,51529
|
|
11
|
+
mypy_boto3_waf_regional/version.py,sha256=Y3Az_xI_VqUAMYplHd4BGyZoCnxUawDnPhv2QNfYiQw,63
|
|
12
|
+
mypy_boto3_waf_regional-1.34.153.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
13
|
+
mypy_boto3_waf_regional-1.34.153.dist-info/METADATA,sha256=014HiYw5GXTqmQjSf9KjmzGc_3V7d77nBplrRDC5-20,12312
|
|
14
|
+
mypy_boto3_waf_regional-1.34.153.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
15
|
+
mypy_boto3_waf_regional-1.34.153.dist-info/top_level.txt,sha256=JjdM6Qw2d2OAcuHG7aTcw86B81MzN4HHktN5AMMi4Tg,24
|
|
16
|
+
mypy_boto3_waf_regional-1.34.153.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_waf_regional/__init__.py,sha256=_BshqRa98MYVF9hOnKqGzPRh8D_zJah4ZYo5-5tN2VE,409
|
|
2
|
-
mypy_boto3_waf_regional/__init__.pyi,sha256=t4q47ur09JlRlBSrBJLg-QIJhIWKxTQk4aSt9__GAbQ,408
|
|
3
|
-
mypy_boto3_waf_regional/__main__.py,sha256=61FoNwrm6G84XOzEAy-HIGjLkujgZfAMjhijFFpQw-s,923
|
|
4
|
-
mypy_boto3_waf_regional/client.py,sha256=sg7QddztyBvlJ5TpDov3_gbQfqdP-qKSWls_Y2N6aSE,46214
|
|
5
|
-
mypy_boto3_waf_regional/client.pyi,sha256=StmOfNCCFnlAH6Mya9N_F7JevEdPHKYTmX3DKw4BveE,46210
|
|
6
|
-
mypy_boto3_waf_regional/literals.py,sha256=fDKWzy-NHJktRsRXBpv43QRQ97A0hih2VIB6nlKJtZQ,12691
|
|
7
|
-
mypy_boto3_waf_regional/literals.pyi,sha256=mLiVnhA0wnk74PmHTntTTaTzdJSERfpq9-kXkVH7JPw,12689
|
|
8
|
-
mypy_boto3_waf_regional/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_waf_regional/type_defs.py,sha256=MX21t-TwxC23ObDm1YyK-GQurCdJ9NRg_UNi5Hj6YBI,49906
|
|
10
|
-
mypy_boto3_waf_regional/type_defs.pyi,sha256=0EzwoMShzdDqNHH_6PKSUtc9SlNIa9UpTHho2gb77tg,49905
|
|
11
|
-
mypy_boto3_waf_regional/version.py,sha256=8Qbu8HOCjrY6O2_gOYfRFBCem64Ka_MtjvbfMGE_iFg,61
|
|
12
|
-
mypy_boto3_waf_regional-1.34.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
-
mypy_boto3_waf_regional-1.34.0.dist-info/METADATA,sha256=7Ki09jSrDUy1_u5MDRJhAYdcF1qOn39cDD5Rv5uJrjk,12351
|
|
14
|
-
mypy_boto3_waf_regional-1.34.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
15
|
-
mypy_boto3_waf_regional-1.34.0.dist-info/top_level.txt,sha256=JjdM6Qw2d2OAcuHG7aTcw86B81MzN4HHktN5AMMi4Tg,24
|
|
16
|
-
mypy_boto3_waf_regional-1.34.0.dist-info/RECORD,,
|
|
File without changes
|