types-boto3-redshift 1.36.0__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 +2 -3
- types_boto3_redshift/literals.pyi +2 -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.36.0.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.36.0.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.36.0.dist-info → types_boto3_redshift-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_redshift-1.36.0.dist-info → types_boto3_redshift-1.37.0.dist-info}/WHEEL +0 -0
- {types_boto3_redshift-1.36.0.dist-info → types_boto3_redshift-1.37.0.dist-info}/top_level.txt +0 -0
types_boto3_redshift/version.py
CHANGED
types_boto3_redshift/waiter.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for redshift service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -24,8 +26,6 @@ Usage::
|
|
|
24
26
|
cluster_restored_waiter: ClusterRestoredWaiter = client.get_waiter("cluster_restored")
|
|
25
27
|
snapshot_available_waiter: SnapshotAvailableWaiter = client.get_waiter("snapshot_available")
|
|
26
28
|
```
|
|
27
|
-
|
|
28
|
-
Copyright 2025 Vlad Emelianov
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
31
|
from __future__ import annotations
|
|
@@ -35,6 +35,8 @@ import sys
|
|
|
35
35
|
from botocore.waiter import Waiter
|
|
36
36
|
|
|
37
37
|
from .type_defs import (
|
|
38
|
+
DescribeClustersMessageWaitExtraExtraTypeDef,
|
|
39
|
+
DescribeClustersMessageWaitExtraTypeDef,
|
|
38
40
|
DescribeClustersMessageWaitTypeDef,
|
|
39
41
|
DescribeClusterSnapshotsMessageWaitTypeDef,
|
|
40
42
|
)
|
|
@@ -75,7 +77,7 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
75
77
|
"""
|
|
76
78
|
|
|
77
79
|
def wait( # type: ignore[override]
|
|
78
|
-
self, **kwargs: Unpack[
|
|
80
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitExtraTypeDef]
|
|
79
81
|
) -> None:
|
|
80
82
|
"""
|
|
81
83
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted.wait)
|
|
@@ -90,7 +92,7 @@ class ClusterRestoredWaiter(Waiter):
|
|
|
90
92
|
"""
|
|
91
93
|
|
|
92
94
|
def wait( # type: ignore[override]
|
|
93
|
-
self, **kwargs: Unpack[
|
|
95
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitExtraExtraTypeDef]
|
|
94
96
|
) -> None:
|
|
95
97
|
"""
|
|
96
98
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored.wait)
|
types_boto3_redshift/waiter.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for redshift service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -24,8 +26,6 @@ Usage::
|
|
|
24
26
|
cluster_restored_waiter: ClusterRestoredWaiter = client.get_waiter("cluster_restored")
|
|
25
27
|
snapshot_available_waiter: SnapshotAvailableWaiter = client.get_waiter("snapshot_available")
|
|
26
28
|
```
|
|
27
|
-
|
|
28
|
-
Copyright 2025 Vlad Emelianov
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
31
|
from __future__ import annotations
|
|
@@ -35,6 +35,8 @@ import sys
|
|
|
35
35
|
from botocore.waiter import Waiter
|
|
36
36
|
|
|
37
37
|
from .type_defs import (
|
|
38
|
+
DescribeClustersMessageWaitExtraExtraTypeDef,
|
|
39
|
+
DescribeClustersMessageWaitExtraTypeDef,
|
|
38
40
|
DescribeClustersMessageWaitTypeDef,
|
|
39
41
|
DescribeClusterSnapshotsMessageWaitTypeDef,
|
|
40
42
|
)
|
|
@@ -70,7 +72,7 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
70
72
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
|
|
71
73
|
"""
|
|
72
74
|
def wait( # type: ignore[override]
|
|
73
|
-
self, **kwargs: Unpack[
|
|
75
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitExtraTypeDef]
|
|
74
76
|
) -> None:
|
|
75
77
|
"""
|
|
76
78
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted.wait)
|
|
@@ -83,7 +85,7 @@ class ClusterRestoredWaiter(Waiter):
|
|
|
83
85
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
|
|
84
86
|
"""
|
|
85
87
|
def wait( # type: ignore[override]
|
|
86
|
-
self, **kwargs: Unpack[
|
|
88
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitExtraExtraTypeDef]
|
|
87
89
|
) -> None:
|
|
88
90
|
"""
|
|
89
91
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-redshift
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Redshift 1.
|
|
3
|
+
Version: 1.37.0
|
|
4
|
+
Summary: Type annotations for boto3 Redshift 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
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
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 Redshift 1.
|
|
58
|
+
Type annotations for [boto3 Redshift 1.37.0](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -113,12 +113,12 @@ See how it helps you find and fix potential bugs:
|
|
|
113
113
|
### Generate locally (recommended)
|
|
114
114
|
|
|
115
115
|
You can generate type annotations for `boto3` package locally with
|
|
116
|
-
`
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
117
117
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3` AWS SDK.
|
|
123
123
|
3. Add `Redshift` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -557,11 +557,14 @@ Full list of `Redshift` TypeDefs can be found in
|
|
|
557
557
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/type_defs/).
|
|
558
558
|
|
|
559
559
|
```python
|
|
560
|
-
|
|
560
|
+
# TypedDict usage example
|
|
561
|
+
from types_boto3_redshift.type_defs import AcceptReservedNodeExchangeInputMessageTypeDef
|
|
561
562
|
|
|
562
563
|
|
|
563
|
-
def get_value() ->
|
|
564
|
-
return {
|
|
564
|
+
def get_value() -> AcceptReservedNodeExchangeInputMessageTypeDef:
|
|
565
|
+
return {
|
|
566
|
+
"ReservedNodeId": ...,
|
|
567
|
+
}
|
|
565
568
|
```
|
|
566
569
|
|
|
567
570
|
<a id="how-it-works"></a>
|
|
@@ -615,7 +618,8 @@ Builder changelog can be found in
|
|
|
615
618
|
## Versioning
|
|
616
619
|
|
|
617
620
|
`types-boto3-redshift` version is the same as related `boto3` version and
|
|
618
|
-
follows
|
|
621
|
+
follows
|
|
622
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
619
623
|
|
|
620
624
|
<a id="thank-you"></a>
|
|
621
625
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_redshift/__init__.py,sha256=AKuuF2VvRLcPUdgUn_xz6F3iGPfixRr63HP2Atn4Kmg,11061
|
|
2
|
+
types_boto3_redshift/__init__.pyi,sha256=VlBt4rSxLclDcqFzSdnWwUmstVmaj8FZ52dbFGAaflU,11060
|
|
3
|
+
types_boto3_redshift/__main__.py,sha256=HWxhs6rp2rdniPVKlF4VBUR00xLIZJvvWyOJh9ZLYIw,985
|
|
4
|
+
types_boto3_redshift/client.py,sha256=LwalcI4t-WOAwr48b6i9wMXw9eGu1q0CGFn3YGnH8YQ,123145
|
|
5
|
+
types_boto3_redshift/client.pyi,sha256=wYVA3KUU5t8kLRVxrSkusQUKKCv3CkcmZA_1gzcQQ1A,123142
|
|
6
|
+
types_boto3_redshift/literals.py,sha256=8tNtn2p_keeXkVUs9X7jxSnSb0l7C-Uv3OgS2ffKYbw,19952
|
|
7
|
+
types_boto3_redshift/literals.pyi,sha256=Nnk58XP6DNh76I-VpejMlfPxl6LXGfO1jXDkDjNPNrI,19950
|
|
8
|
+
types_boto3_redshift/paginator.py,sha256=KzRgPc0fRi__FXw86zY_hkMMD2Anj9C3WVXG7iIpMt8,58561
|
|
9
|
+
types_boto3_redshift/paginator.pyi,sha256=Y1xZxvRLJWaTN2aqQBhpq_sFSJtf--7MgHU3P0NIcpY,58449
|
|
10
|
+
types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_redshift/type_defs.py,sha256=omaiEcY2ARZf-RQO_U3tWesU_YZAlI61TcFV8kjIc_4,103690
|
|
12
|
+
types_boto3_redshift/type_defs.pyi,sha256=si-w49HZ33uPMMlSHH4ltjlEycumlPUXNTl9GRm_Wug,103301
|
|
13
|
+
types_boto3_redshift/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
14
|
+
types_boto3_redshift/waiter.py,sha256=b61zOvUYMR_f5vti0v5h5pd_MF7hbRHZ7u62kESRIkA,4852
|
|
15
|
+
types_boto3_redshift/waiter.pyi,sha256=sMqV7PAvsEr-9AVlgFCX87aXnHGcs3Cs2-QXe2dtO8g,4843
|
|
16
|
+
types_boto3_redshift-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_redshift-1.37.0.dist-info/METADATA,sha256=Ec_BM86l_LiIxYGl-w2JBQLBHcVp1ra3zTx_I1PdNeI,22446
|
|
18
|
+
types_boto3_redshift-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
+
types_boto3_redshift-1.37.0.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
|
|
20
|
+
types_boto3_redshift-1.37.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_redshift/__init__.py,sha256=cvWAWjhf1Wuk2bVkg9DYGHsinqLsBe2Ay94L_kLYSds,10978
|
|
2
|
-
types_boto3_redshift/__init__.pyi,sha256=IcwUmiKbXKL8SY-Nb_mwvmL-My7nc-CnogL5Mncrg7A,10977
|
|
3
|
-
types_boto3_redshift/__main__.py,sha256=l8RmK4IYRBYLquPhEvLoO2NBdP8gKrqUV38DI15WzHU,985
|
|
4
|
-
types_boto3_redshift/client.py,sha256=CMvqi6FXMDRXcXW7oWWXZN_MohMO3caPqNLq-CPsTCA,124980
|
|
5
|
-
types_boto3_redshift/client.pyi,sha256=6-1mpMpKVC4FzQgLGQeHHEoovv1as4SLvpMOOOQdH0s,124977
|
|
6
|
-
types_boto3_redshift/literals.py,sha256=xxYA-lr6XQ3H38yMVn3ILtG7C5tsessdCtL5l-CzbuA,19977
|
|
7
|
-
types_boto3_redshift/literals.pyi,sha256=DiOkg6ld7fU4s4WnQMQAOxCZf_RNbUlWDToJW7PKTOw,19975
|
|
8
|
-
types_boto3_redshift/paginator.py,sha256=gmzqWfbXcmwxqdoFvmeMK0vDVbTyCBB5aGBrd6Ytbx0,58561
|
|
9
|
-
types_boto3_redshift/paginator.pyi,sha256=M-8OrnRgf9YckzYC6v-7joMNEAgW4quLxMqF86FbFdg,58449
|
|
10
|
-
types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_redshift/type_defs.py,sha256=LWJHijhK5jqwkZGZKHmcc81FmiohBAet_HkdSNZ1C-Q,104656
|
|
12
|
-
types_boto3_redshift/type_defs.pyi,sha256=nUEOTbdJp2OBpgmfJo-pzKXnz9wHsnSxAZO2TOZauhs,104270
|
|
13
|
-
types_boto3_redshift/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
14
|
-
types_boto3_redshift/waiter.py,sha256=Si1Ca87GplvR0ktMUXCY-MLQtH-WUeTjz20NhidDhH8,4742
|
|
15
|
-
types_boto3_redshift/waiter.pyi,sha256=5Xig3qmkgO9PtCyCF0lS2YyZ5F9eFNVL1cuwMkr84ek,4733
|
|
16
|
-
types_boto3_redshift-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_redshift-1.36.0.dist-info/METADATA,sha256=U8go3MWJ2W5sjJd5aB-_gjvVJA7bpMKGpKjTBHFmNLc,22348
|
|
18
|
-
types_boto3_redshift-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
-
types_boto3_redshift-1.36.0.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
|
|
20
|
-
types_boto3_redshift-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{types_boto3_redshift-1.36.0.dist-info → types_boto3_redshift-1.37.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|