mypy-boto3-redshift 1.34.0__py3-none-any.whl → 1.34.37__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-redshift might be problematic. Click here for more details.
- mypy_boto3_redshift/__init__.py +4 -1
- mypy_boto3_redshift/__init__.pyi +4 -0
- mypy_boto3_redshift/__main__.py +8 -7
- mypy_boto3_redshift/client.py +95 -68
- mypy_boto3_redshift/client.pyi +95 -67
- mypy_boto3_redshift/literals.py +11 -2
- mypy_boto3_redshift/literals.pyi +11 -0
- mypy_boto3_redshift/paginator.py +51 -29
- mypy_boto3_redshift/paginator.pyi +50 -28
- mypy_boto3_redshift/type_defs.py +66 -1
- mypy_boto3_redshift/type_defs.pyi +66 -0
- mypy_boto3_redshift/version.py +1 -1
- mypy_boto3_redshift/waiter.py +4 -4
- mypy_boto3_redshift/waiter.pyi +4 -4
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/LICENSE +1 -1
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/METADATA +10 -7
- mypy_boto3_redshift-1.34.37.dist-info/RECORD +20 -0
- mypy_boto3_redshift-1.34.0.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/WHEEL +0 -0
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/top_level.txt +0 -0
mypy_boto3_redshift/__init__.py
CHANGED
|
@@ -45,6 +45,7 @@ Usage::
|
|
|
45
45
|
DescribeUsageLimitsPaginator,
|
|
46
46
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
47
47
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
48
|
+
ListRecommendationsPaginator,
|
|
48
49
|
RedshiftClient,
|
|
49
50
|
SnapshotAvailableWaiter,
|
|
50
51
|
)
|
|
@@ -92,6 +93,7 @@ Usage::
|
|
|
92
93
|
describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
|
|
93
94
|
get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
|
|
94
95
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
96
|
+
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
95
97
|
```
|
|
96
98
|
"""
|
|
97
99
|
|
|
@@ -132,6 +134,7 @@ from .paginator import (
|
|
|
132
134
|
DescribeUsageLimitsPaginator,
|
|
133
135
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
134
136
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
137
|
+
ListRecommendationsPaginator,
|
|
135
138
|
)
|
|
136
139
|
from .waiter import (
|
|
137
140
|
ClusterAvailableWaiter,
|
|
@@ -142,7 +145,6 @@ from .waiter import (
|
|
|
142
145
|
|
|
143
146
|
Client = RedshiftClient
|
|
144
147
|
|
|
145
|
-
|
|
146
148
|
__all__ = (
|
|
147
149
|
"Client",
|
|
148
150
|
"ClusterAvailableWaiter",
|
|
@@ -183,6 +185,7 @@ __all__ = (
|
|
|
183
185
|
"DescribeUsageLimitsPaginator",
|
|
184
186
|
"GetReservedNodeExchangeConfigurationOptionsPaginator",
|
|
185
187
|
"GetReservedNodeExchangeOfferingsPaginator",
|
|
188
|
+
"ListRecommendationsPaginator",
|
|
186
189
|
"RedshiftClient",
|
|
187
190
|
"SnapshotAvailableWaiter",
|
|
188
191
|
)
|
mypy_boto3_redshift/__init__.pyi
CHANGED
|
@@ -45,6 +45,7 @@ Usage::
|
|
|
45
45
|
DescribeUsageLimitsPaginator,
|
|
46
46
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
47
47
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
48
|
+
ListRecommendationsPaginator,
|
|
48
49
|
RedshiftClient,
|
|
49
50
|
SnapshotAvailableWaiter,
|
|
50
51
|
)
|
|
@@ -92,6 +93,7 @@ Usage::
|
|
|
92
93
|
describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
|
|
93
94
|
get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
|
|
94
95
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
96
|
+
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
95
97
|
```
|
|
96
98
|
"""
|
|
97
99
|
|
|
@@ -132,6 +134,7 @@ from .paginator import (
|
|
|
132
134
|
DescribeUsageLimitsPaginator,
|
|
133
135
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
134
136
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
137
|
+
ListRecommendationsPaginator,
|
|
135
138
|
)
|
|
136
139
|
from .waiter import (
|
|
137
140
|
ClusterAvailableWaiter,
|
|
@@ -182,6 +185,7 @@ __all__ = (
|
|
|
182
185
|
"DescribeUsageLimitsPaginator",
|
|
183
186
|
"GetReservedNodeExchangeConfigurationOptionsPaginator",
|
|
184
187
|
"GetReservedNodeExchangeOfferingsPaginator",
|
|
188
|
+
"ListRecommendationsPaginator",
|
|
185
189
|
"RedshiftClient",
|
|
186
190
|
"SnapshotAvailableWaiter",
|
|
187
191
|
)
|
mypy_boto3_redshift/__main__.py
CHANGED
|
@@ -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.Redshift 1.34.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.Redshift 1.34.37\n"
|
|
14
|
+
"Version: 1.34.37\n"
|
|
15
|
+
"Builder version: 7.23.1\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift\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.37")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|