types-boto3-redshift 1.35.97__py3-none-any.whl → 1.37.0__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.
- types_boto3_redshift/__init__.py +4 -2
- types_boto3_redshift/__init__.pyi +4 -2
- types_boto3_redshift/__main__.py +4 -4
- types_boto3_redshift/client.py +268 -270
- types_boto3_redshift/client.pyi +268 -270
- types_boto3_redshift/literals.py +3 -3
- types_boto3_redshift/literals.pyi +3 -3
- types_boto3_redshift/paginator.py +2 -2
- types_boto3_redshift/paginator.pyi +2 -2
- types_boto3_redshift/type_defs.py +304 -276
- types_boto3_redshift/type_defs.pyi +300 -275
- types_boto3_redshift/version.py +1 -1
- types_boto3_redshift/waiter.py +6 -4
- types_boto3_redshift/waiter.pyi +6 -4
- {types_boto3_redshift-1.35.97.dist-info → types_boto3_redshift-1.37.0.dist-info}/METADATA +14 -10
- types_boto3_redshift-1.37.0.dist-info/RECORD +20 -0
- types_boto3_redshift-1.35.97.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.35.97.dist-info → types_boto3_redshift-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_redshift-1.35.97.dist-info → types_boto3_redshift-1.37.0.dist-info}/WHEEL +0 -0
- {types_boto3_redshift-1.35.97.dist-info → types_boto3_redshift-1.37.0.dist-info}/top_level.txt +0 -0
types_boto3_redshift/__init__.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for redshift service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -97,8 +101,6 @@ Usage::
|
|
|
97
101
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
98
102
|
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
99
103
|
```
|
|
100
|
-
|
|
101
|
-
Copyright 2025 Vlad Emelianov
|
|
102
104
|
"""
|
|
103
105
|
|
|
104
106
|
from .client import RedshiftClient
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for redshift service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -97,8 +101,6 @@ Usage::
|
|
|
97
101
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
98
102
|
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
99
103
|
```
|
|
100
|
-
|
|
101
|
-
Copyright 2025 Vlad Emelianov
|
|
102
104
|
"""
|
|
103
105
|
|
|
104
106
|
from .client import RedshiftClient
|
types_boto3_redshift/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Redshift 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Redshift 1.37.0\n"
|
|
16
|
+
"Version: 1.37.0\n"
|
|
17
|
+
"Builder version: 8.9.2\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_redshift//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#redshift\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.37.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|