mypy-boto3-waf-regional 1.28.15.post1__py3-none-any.whl → 1.28.36__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/__main__.py +3 -3
- mypy_boto3_waf_regional/client.py +4 -13
- mypy_boto3_waf_regional/client.pyi +4 -13
- mypy_boto3_waf_regional/literals.py +2 -1
- mypy_boto3_waf_regional/literals.pyi +2 -1
- mypy_boto3_waf_regional/type_defs.py +186 -551
- mypy_boto3_waf_regional/type_defs.pyi +186 -501
- mypy_boto3_waf_regional/version.py +1 -1
- {mypy_boto3_waf_regional-1.28.15.post1.dist-info → mypy_boto3_waf_regional-1.28.36.dist-info}/METADATA +21 -250
- mypy_boto3_waf_regional-1.28.36.dist-info/RECORD +16 -0
- {mypy_boto3_waf_regional-1.28.15.post1.dist-info → mypy_boto3_waf_regional-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_waf_regional-1.28.15.post1.dist-info/RECORD +0 -16
- {mypy_boto3_waf_regional-1.28.15.post1.dist-info → mypy_boto3_waf_regional-1.28.36.dist-info}/LICENSE +0 -0
- {mypy_boto3_waf_regional-1.28.15.post1.dist-info → mypy_boto3_waf_regional-1.28.36.dist-info}/top_level.txt +0 -0
|
@@ -9,8 +9,8 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.WAFRegional 1.28.
|
|
13
|
-
"
|
|
12
|
+
"Type annotations for boto3.WAFRegional 1.28.36\nVersion: 1.28.36\nBuilder version:"
|
|
13
|
+
" 7.18.0\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/waf-regional.html#WAFRegional\nOther"
|
|
16
16
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.28.
|
|
25
|
+
print("1.28.36")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
|
@@ -14,7 +14,7 @@ Usage::
|
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
16
|
import sys
|
|
17
|
-
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
18
18
|
|
|
19
19
|
from botocore.client import BaseClient, ClientMeta
|
|
20
20
|
|
|
@@ -84,7 +84,6 @@ from .type_defs import (
|
|
|
84
84
|
ListTagsForResourceResponseTypeDef,
|
|
85
85
|
ListWebACLsResponseTypeDef,
|
|
86
86
|
ListXssMatchSetsResponseTypeDef,
|
|
87
|
-
LoggingConfigurationOutputTypeDef,
|
|
88
87
|
LoggingConfigurationTypeDef,
|
|
89
88
|
PutLoggingConfigurationResponseTypeDef,
|
|
90
89
|
RegexMatchSetUpdateTypeDef,
|
|
@@ -94,7 +93,6 @@ from .type_defs import (
|
|
|
94
93
|
SizeConstraintSetUpdateTypeDef,
|
|
95
94
|
SqlInjectionMatchSetUpdateTypeDef,
|
|
96
95
|
TagTypeDef,
|
|
97
|
-
TimeWindowOutputTypeDef,
|
|
98
96
|
TimeWindowTypeDef,
|
|
99
97
|
UpdateByteMatchSetResponseTypeDef,
|
|
100
98
|
UpdateGeoMatchSetResponseTypeDef,
|
|
@@ -113,7 +111,7 @@ from .type_defs import (
|
|
|
113
111
|
XssMatchSetUpdateTypeDef,
|
|
114
112
|
)
|
|
115
113
|
|
|
116
|
-
if sys.version_info >= (3,
|
|
114
|
+
if sys.version_info >= (3, 12):
|
|
117
115
|
from typing import Literal
|
|
118
116
|
else:
|
|
119
117
|
from typing_extensions import Literal
|
|
@@ -598,12 +596,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
598
596
|
"""
|
|
599
597
|
|
|
600
598
|
def get_sampled_requests(
|
|
601
|
-
self,
|
|
602
|
-
*,
|
|
603
|
-
WebAclId: str,
|
|
604
|
-
RuleId: str,
|
|
605
|
-
TimeWindow: Union[TimeWindowTypeDef, TimeWindowOutputTypeDef],
|
|
606
|
-
MaxItems: int
|
|
599
|
+
self, *, WebAclId: str, RuleId: str, TimeWindow: TimeWindowTypeDef, MaxItems: int
|
|
607
600
|
) -> GetSampledRequestsResponseTypeDef:
|
|
608
601
|
"""
|
|
609
602
|
.
|
|
@@ -823,9 +816,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
823
816
|
"""
|
|
824
817
|
|
|
825
818
|
def put_logging_configuration(
|
|
826
|
-
self,
|
|
827
|
-
*,
|
|
828
|
-
LoggingConfiguration: Union[LoggingConfigurationTypeDef, LoggingConfigurationOutputTypeDef]
|
|
819
|
+
self, *, LoggingConfiguration: LoggingConfigurationTypeDef
|
|
829
820
|
) -> PutLoggingConfigurationResponseTypeDef:
|
|
830
821
|
"""
|
|
831
822
|
.
|
|
@@ -14,7 +14,7 @@ Usage::
|
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
16
|
import sys
|
|
17
|
-
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
18
18
|
|
|
19
19
|
from botocore.client import BaseClient, ClientMeta
|
|
20
20
|
|
|
@@ -84,7 +84,6 @@ from .type_defs import (
|
|
|
84
84
|
ListTagsForResourceResponseTypeDef,
|
|
85
85
|
ListWebACLsResponseTypeDef,
|
|
86
86
|
ListXssMatchSetsResponseTypeDef,
|
|
87
|
-
LoggingConfigurationOutputTypeDef,
|
|
88
87
|
LoggingConfigurationTypeDef,
|
|
89
88
|
PutLoggingConfigurationResponseTypeDef,
|
|
90
89
|
RegexMatchSetUpdateTypeDef,
|
|
@@ -94,7 +93,6 @@ from .type_defs import (
|
|
|
94
93
|
SizeConstraintSetUpdateTypeDef,
|
|
95
94
|
SqlInjectionMatchSetUpdateTypeDef,
|
|
96
95
|
TagTypeDef,
|
|
97
|
-
TimeWindowOutputTypeDef,
|
|
98
96
|
TimeWindowTypeDef,
|
|
99
97
|
UpdateByteMatchSetResponseTypeDef,
|
|
100
98
|
UpdateGeoMatchSetResponseTypeDef,
|
|
@@ -113,7 +111,7 @@ from .type_defs import (
|
|
|
113
111
|
XssMatchSetUpdateTypeDef,
|
|
114
112
|
)
|
|
115
113
|
|
|
116
|
-
if sys.version_info >= (3,
|
|
114
|
+
if sys.version_info >= (3, 12):
|
|
117
115
|
from typing import Literal
|
|
118
116
|
else:
|
|
119
117
|
from typing_extensions import Literal
|
|
@@ -548,12 +546,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
548
546
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/client/#get_rule_group)
|
|
549
547
|
"""
|
|
550
548
|
def get_sampled_requests(
|
|
551
|
-
self,
|
|
552
|
-
*,
|
|
553
|
-
WebAclId: str,
|
|
554
|
-
RuleId: str,
|
|
555
|
-
TimeWindow: Union[TimeWindowTypeDef, TimeWindowOutputTypeDef],
|
|
556
|
-
MaxItems: int
|
|
549
|
+
self, *, WebAclId: str, RuleId: str, TimeWindow: TimeWindowTypeDef, MaxItems: int
|
|
557
550
|
) -> GetSampledRequestsResponseTypeDef:
|
|
558
551
|
"""
|
|
559
552
|
.
|
|
@@ -750,9 +743,7 @@ class WAFRegionalClient(BaseClient):
|
|
|
750
743
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/client/#list_xss_match_sets)
|
|
751
744
|
"""
|
|
752
745
|
def put_logging_configuration(
|
|
753
|
-
self,
|
|
754
|
-
*,
|
|
755
|
-
LoggingConfiguration: Union[LoggingConfigurationTypeDef, LoggingConfigurationOutputTypeDef]
|
|
746
|
+
self, *, LoggingConfiguration: LoggingConfigurationTypeDef
|
|
756
747
|
) -> PutLoggingConfigurationResponseTypeDef:
|
|
757
748
|
"""
|
|
758
749
|
.
|
|
@@ -13,7 +13,7 @@ Usage::
|
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
15
15
|
|
|
16
|
-
if sys.version_info >= (3,
|
|
16
|
+
if sys.version_info >= (3, 12):
|
|
17
17
|
from typing import Literal
|
|
18
18
|
else:
|
|
19
19
|
from typing_extensions import Literal
|
|
@@ -710,6 +710,7 @@ RegionName = Literal[
|
|
|
710
710
|
"eu-west-1",
|
|
711
711
|
"eu-west-2",
|
|
712
712
|
"eu-west-3",
|
|
713
|
+
"il-central-1",
|
|
713
714
|
"me-central-1",
|
|
714
715
|
"me-south-1",
|
|
715
716
|
"sa-east-1",
|
|
@@ -13,7 +13,7 @@ Usage::
|
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
15
15
|
|
|
16
|
-
if sys.version_info >= (3,
|
|
16
|
+
if sys.version_info >= (3, 12):
|
|
17
17
|
from typing import Literal
|
|
18
18
|
else:
|
|
19
19
|
from typing_extensions import Literal
|
|
@@ -708,6 +708,7 @@ RegionName = Literal[
|
|
|
708
708
|
"eu-west-1",
|
|
709
709
|
"eu-west-2",
|
|
710
710
|
"eu-west-3",
|
|
711
|
+
"il-central-1",
|
|
711
712
|
"me-central-1",
|
|
712
713
|
"me-south-1",
|
|
713
714
|
"sa-east-1",
|