mypy-boto3-waf-regional 1.28.12__py3-none-any.whl → 1.28.15.post1__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 +12 -3
- mypy_boto3_waf_regional/client.pyi +12 -3
- mypy_boto3_waf_regional/type_defs.py +130 -252
- mypy_boto3_waf_regional/type_defs.pyi +130 -250
- mypy_boto3_waf_regional/version.py +1 -1
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/METADATA +17 -29
- mypy_boto3_waf_regional-1.28.15.post1.dist-info/RECORD +16 -0
- mypy_boto3_waf_regional-1.28.12.dist-info/RECORD +0 -16
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/LICENSE +0 -0
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/WHEEL +0 -0
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.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
|
-
" 7.
|
|
12
|
+
"Type annotations for boto3.WAFRegional 1.28.15\nVersion: 1.28.15.post1\nBuilder"
|
|
13
|
+
" version: 7.16.2\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.15.post1")
|
|
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, Union
|
|
18
18
|
|
|
19
19
|
from botocore.client import BaseClient, ClientMeta
|
|
20
20
|
|
|
@@ -84,6 +84,7 @@ from .type_defs import (
|
|
|
84
84
|
ListTagsForResourceResponseTypeDef,
|
|
85
85
|
ListWebACLsResponseTypeDef,
|
|
86
86
|
ListXssMatchSetsResponseTypeDef,
|
|
87
|
+
LoggingConfigurationOutputTypeDef,
|
|
87
88
|
LoggingConfigurationTypeDef,
|
|
88
89
|
PutLoggingConfigurationResponseTypeDef,
|
|
89
90
|
RegexMatchSetUpdateTypeDef,
|
|
@@ -93,6 +94,7 @@ from .type_defs import (
|
|
|
93
94
|
SizeConstraintSetUpdateTypeDef,
|
|
94
95
|
SqlInjectionMatchSetUpdateTypeDef,
|
|
95
96
|
TagTypeDef,
|
|
97
|
+
TimeWindowOutputTypeDef,
|
|
96
98
|
TimeWindowTypeDef,
|
|
97
99
|
UpdateByteMatchSetResponseTypeDef,
|
|
98
100
|
UpdateGeoMatchSetResponseTypeDef,
|
|
@@ -596,7 +598,12 @@ class WAFRegionalClient(BaseClient):
|
|
|
596
598
|
"""
|
|
597
599
|
|
|
598
600
|
def get_sampled_requests(
|
|
599
|
-
self,
|
|
601
|
+
self,
|
|
602
|
+
*,
|
|
603
|
+
WebAclId: str,
|
|
604
|
+
RuleId: str,
|
|
605
|
+
TimeWindow: Union[TimeWindowTypeDef, TimeWindowOutputTypeDef],
|
|
606
|
+
MaxItems: int
|
|
600
607
|
) -> GetSampledRequestsResponseTypeDef:
|
|
601
608
|
"""
|
|
602
609
|
.
|
|
@@ -816,7 +823,9 @@ class WAFRegionalClient(BaseClient):
|
|
|
816
823
|
"""
|
|
817
824
|
|
|
818
825
|
def put_logging_configuration(
|
|
819
|
-
self,
|
|
826
|
+
self,
|
|
827
|
+
*,
|
|
828
|
+
LoggingConfiguration: Union[LoggingConfigurationTypeDef, LoggingConfigurationOutputTypeDef]
|
|
820
829
|
) -> PutLoggingConfigurationResponseTypeDef:
|
|
821
830
|
"""
|
|
822
831
|
.
|
|
@@ -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, Union
|
|
18
18
|
|
|
19
19
|
from botocore.client import BaseClient, ClientMeta
|
|
20
20
|
|
|
@@ -84,6 +84,7 @@ from .type_defs import (
|
|
|
84
84
|
ListTagsForResourceResponseTypeDef,
|
|
85
85
|
ListWebACLsResponseTypeDef,
|
|
86
86
|
ListXssMatchSetsResponseTypeDef,
|
|
87
|
+
LoggingConfigurationOutputTypeDef,
|
|
87
88
|
LoggingConfigurationTypeDef,
|
|
88
89
|
PutLoggingConfigurationResponseTypeDef,
|
|
89
90
|
RegexMatchSetUpdateTypeDef,
|
|
@@ -93,6 +94,7 @@ from .type_defs import (
|
|
|
93
94
|
SizeConstraintSetUpdateTypeDef,
|
|
94
95
|
SqlInjectionMatchSetUpdateTypeDef,
|
|
95
96
|
TagTypeDef,
|
|
97
|
+
TimeWindowOutputTypeDef,
|
|
96
98
|
TimeWindowTypeDef,
|
|
97
99
|
UpdateByteMatchSetResponseTypeDef,
|
|
98
100
|
UpdateGeoMatchSetResponseTypeDef,
|
|
@@ -546,7 +548,12 @@ class WAFRegionalClient(BaseClient):
|
|
|
546
548
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/client/#get_rule_group)
|
|
547
549
|
"""
|
|
548
550
|
def get_sampled_requests(
|
|
549
|
-
self,
|
|
551
|
+
self,
|
|
552
|
+
*,
|
|
553
|
+
WebAclId: str,
|
|
554
|
+
RuleId: str,
|
|
555
|
+
TimeWindow: Union[TimeWindowTypeDef, TimeWindowOutputTypeDef],
|
|
556
|
+
MaxItems: int
|
|
550
557
|
) -> GetSampledRequestsResponseTypeDef:
|
|
551
558
|
"""
|
|
552
559
|
.
|
|
@@ -743,7 +750,9 @@ class WAFRegionalClient(BaseClient):
|
|
|
743
750
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/client/#list_xss_match_sets)
|
|
744
751
|
"""
|
|
745
752
|
def put_logging_configuration(
|
|
746
|
-
self,
|
|
753
|
+
self,
|
|
754
|
+
*,
|
|
755
|
+
LoggingConfiguration: Union[LoggingConfigurationTypeDef, LoggingConfigurationOutputTypeDef]
|
|
747
756
|
) -> PutLoggingConfigurationResponseTypeDef:
|
|
748
757
|
"""
|
|
749
758
|
.
|