types-boto3-redshift 1.35.71__py3-none-any.whl → 1.40.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.
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.71"
7
+ __version__ = "1.40.0"
@@ -1,7 +1,9 @@
1
1
  """
2
2
  Type annotations for redshift service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
5
+
6
+ Copyright 2025 Vlad Emelianov
5
7
 
6
8
  Usage::
7
9
 
@@ -24,19 +26,19 @@ 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 2024 Vlad Emelianov
29
29
  """
30
30
 
31
+ from __future__ import annotations
32
+
31
33
  import sys
32
34
 
33
35
  from botocore.waiter import Waiter
34
36
 
35
37
  from .type_defs import (
36
- DescribeClustersMessageClusterAvailableWaitTypeDef,
37
- DescribeClustersMessageClusterDeletedWaitTypeDef,
38
- DescribeClustersMessageClusterRestoredWaitTypeDef,
39
- DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef,
38
+ DescribeClustersMessageWaitExtraExtraTypeDef,
39
+ DescribeClustersMessageWaitExtraTypeDef,
40
+ DescribeClustersMessageWaitTypeDef,
41
+ DescribeClusterSnapshotsMessageWaitTypeDef,
40
42
  )
41
43
 
42
44
  if sys.version_info >= (3, 12):
@@ -59,7 +61,9 @@ class ClusterAvailableWaiter(Waiter):
59
61
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
60
62
  """
61
63
 
62
- def wait(self, **kwargs: Unpack[DescribeClustersMessageClusterAvailableWaitTypeDef]) -> None:
64
+ def wait( # type: ignore[override]
65
+ self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
66
+ ) -> None:
63
67
  """
64
68
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterAvailable.html#Redshift.Waiter.ClusterAvailable.wait)
65
69
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
@@ -72,7 +76,9 @@ class ClusterDeletedWaiter(Waiter):
72
76
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
73
77
  """
74
78
 
75
- def wait(self, **kwargs: Unpack[DescribeClustersMessageClusterDeletedWaitTypeDef]) -> None:
79
+ def wait( # type: ignore[override]
80
+ self, **kwargs: Unpack[DescribeClustersMessageWaitExtraTypeDef]
81
+ ) -> None:
76
82
  """
77
83
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted.wait)
78
84
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
@@ -85,7 +91,9 @@ class ClusterRestoredWaiter(Waiter):
85
91
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
86
92
  """
87
93
 
88
- def wait(self, **kwargs: Unpack[DescribeClustersMessageClusterRestoredWaitTypeDef]) -> None:
94
+ def wait( # type: ignore[override]
95
+ self, **kwargs: Unpack[DescribeClustersMessageWaitExtraExtraTypeDef]
96
+ ) -> None:
89
97
  """
90
98
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored.wait)
91
99
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
@@ -98,8 +106,8 @@ class SnapshotAvailableWaiter(Waiter):
98
106
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#snapshotavailablewaiter)
99
107
  """
100
108
 
101
- def wait(
102
- self, **kwargs: Unpack[DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef]
109
+ def wait( # type: ignore[override]
110
+ self, **kwargs: Unpack[DescribeClusterSnapshotsMessageWaitTypeDef]
103
111
  ) -> None:
104
112
  """
105
113
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/SnapshotAvailable.html#Redshift.Waiter.SnapshotAvailable.wait)
@@ -1,7 +1,9 @@
1
1
  """
2
2
  Type annotations for redshift service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
5
+
6
+ Copyright 2025 Vlad Emelianov
5
7
 
6
8
  Usage::
7
9
 
@@ -24,19 +26,19 @@ 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 2024 Vlad Emelianov
29
29
  """
30
30
 
31
+ from __future__ import annotations
32
+
31
33
  import sys
32
34
 
33
35
  from botocore.waiter import Waiter
34
36
 
35
37
  from .type_defs import (
36
- DescribeClustersMessageClusterAvailableWaitTypeDef,
37
- DescribeClustersMessageClusterDeletedWaitTypeDef,
38
- DescribeClustersMessageClusterRestoredWaitTypeDef,
39
- DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef,
38
+ DescribeClustersMessageWaitExtraExtraTypeDef,
39
+ DescribeClustersMessageWaitExtraTypeDef,
40
+ DescribeClustersMessageWaitTypeDef,
41
+ DescribeClusterSnapshotsMessageWaitTypeDef,
40
42
  )
41
43
 
42
44
  if sys.version_info >= (3, 12):
@@ -56,7 +58,9 @@ class ClusterAvailableWaiter(Waiter):
56
58
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterAvailable.html#Redshift.Waiter.ClusterAvailable)
57
59
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
58
60
  """
59
- def wait(self, **kwargs: Unpack[DescribeClustersMessageClusterAvailableWaitTypeDef]) -> None:
61
+ def wait( # type: ignore[override]
62
+ self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
63
+ ) -> None:
60
64
  """
61
65
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterAvailable.html#Redshift.Waiter.ClusterAvailable.wait)
62
66
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
@@ -67,7 +71,9 @@ class ClusterDeletedWaiter(Waiter):
67
71
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted)
68
72
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
69
73
  """
70
- def wait(self, **kwargs: Unpack[DescribeClustersMessageClusterDeletedWaitTypeDef]) -> None:
74
+ def wait( # type: ignore[override]
75
+ self, **kwargs: Unpack[DescribeClustersMessageWaitExtraTypeDef]
76
+ ) -> None:
71
77
  """
72
78
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted.wait)
73
79
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
@@ -78,7 +84,9 @@ class ClusterRestoredWaiter(Waiter):
78
84
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored)
79
85
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
80
86
  """
81
- def wait(self, **kwargs: Unpack[DescribeClustersMessageClusterRestoredWaitTypeDef]) -> None:
87
+ def wait( # type: ignore[override]
88
+ self, **kwargs: Unpack[DescribeClustersMessageWaitExtraExtraTypeDef]
89
+ ) -> None:
82
90
  """
83
91
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored.wait)
84
92
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
@@ -89,8 +97,8 @@ class SnapshotAvailableWaiter(Waiter):
89
97
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/SnapshotAvailable.html#Redshift.Waiter.SnapshotAvailable)
90
98
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#snapshotavailablewaiter)
91
99
  """
92
- def wait(
93
- self, **kwargs: Unpack[DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef]
100
+ def wait( # type: ignore[override]
101
+ self, **kwargs: Unpack[DescribeClusterSnapshotsMessageWaitTypeDef]
94
102
  ) -> None:
95
103
  """
96
104
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/SnapshotAvailable.html#Redshift.Waiter.SnapshotAvailable.wait)
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: types-boto3-redshift
3
- Version: 1.35.71
4
- Summary: Type annotations for boto3 Redshift 1.35.71 service generated with mypy-boto3-builder 8.4.1
3
+ Version: 1.40.0
4
+ Summary: Type annotations for boto3 Redshift 1.40.0 service generated with mypy-boto3-builder 8.11.0
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
@@ -9,7 +9,7 @@ License: MIT License
9
9
  Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_redshift/
10
10
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
11
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 redshift type-annotations botocore mypy typeshed autocomplete
12
+ Keywords: boto3 redshift boto3-stubs type-annotations mypy typeshed autocomplete
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
@@ -30,7 +30,20 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
+ Dynamic: author
35
+ Dynamic: author-email
36
+ Dynamic: classifier
37
+ Dynamic: description
38
+ Dynamic: description-content-type
39
+ Dynamic: home-page
40
+ Dynamic: keywords
41
+ Dynamic: license
42
+ Dynamic: license-file
43
+ Dynamic: project-url
44
+ Dynamic: requires-dist
45
+ Dynamic: requires-python
46
+ Dynamic: summary
34
47
 
35
48
  <a id="types-boto3-redshift"></a>
36
49
 
@@ -43,7 +56,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
43
56
 
44
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
58
 
46
- Type annotations for [boto3 Redshift 1.35.71](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 Redshift 1.40.0](https://pypi.org/project/boto3/)
47
60
  compatible with [VSCode](https://code.visualstudio.com/),
48
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -51,8 +64,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
51
64
  [mypy](https://github.com/python/mypy),
52
65
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
66
 
54
- Generated by
55
- [mypy-boto3-builder 8.4.1](https://github.com/youtype/mypy_boto3_builder).
67
+ Generated with
68
+ [mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
56
69
 
57
70
  More information can be found on
58
71
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -60,10 +73,11 @@ More information can be found on
60
73
 
61
74
  See how it helps you find and fix potential bugs:
62
75
 
63
- ![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
76
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
64
77
 
65
78
  - [types-boto3-redshift](#types-boto3-redshift)
66
79
  - [How to install](#how-to-install)
80
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
67
81
  - [VSCode extension](#vscode-extension)
68
82
  - [From PyPI with pip](#from-pypi-with-pip)
69
83
  - [How to uninstall](#how-to-uninstall)
@@ -75,6 +89,7 @@ See how it helps you find and fix potential bugs:
75
89
  - [Other IDEs](#other-ides)
76
90
  - [mypy](#mypy)
77
91
  - [pyright](#pyright)
92
+ - [Pylint compatibility](#pylint-compatibility)
78
93
  - [Explicit type annotations](#explicit-type-annotations)
79
94
  - [Client annotations](#client-annotations)
80
95
  - [Paginators annotations](#paginators-annotations)
@@ -94,6 +109,21 @@ See how it helps you find and fix potential bugs:
94
109
 
95
110
  ## How to install
96
111
 
112
+ <a id="generate-locally-(recommended)"></a>
113
+
114
+ ### Generate locally (recommended)
115
+
116
+ You can generate type annotations for `boto3` package locally with
117
+ `mypy-boto3-builder`. Use
118
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
119
+ isolation.
120
+
121
+ 1. Run mypy-boto3-builder in your package root directory:
122
+ `uvx --with 'boto3==1.40.0' mypy-boto3-builder`
123
+ 2. Select `boto3` AWS SDK.
124
+ 3. Add `Redshift` service.
125
+ 4. Use provided commands to install generated packages.
126
+
97
127
  <a id="vscode-extension"></a>
98
128
 
99
129
  ### VSCode extension
@@ -114,12 +144,10 @@ Install `types-boto3` for `Redshift` service.
114
144
  # install with boto3 type annotations
115
145
  python -m pip install 'types-boto3[redshift]'
116
146
 
117
-
118
147
  # Lite version does not provide session.client/resource overloads
119
148
  # it is more RAM-friendly, but requires explicit type annotations
120
149
  python -m pip install 'types-boto3-lite[redshift]'
121
150
 
122
-
123
151
  # standalone installation
124
152
  python -m pip install types-boto3-redshift
125
153
  ```
@@ -268,6 +296,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
268
296
  Type checking should now work. No explicit type annotations required, write
269
297
  your `boto3` code as usual.
270
298
 
299
+ <a id="pylint-compatibility"></a>
300
+
301
+ ### Pylint compatibility
302
+
303
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
304
+ `types-boto3-redshift` dependency in production. However, there is an issue in
305
+ `pylint` that it complains about undefined variables. To fix it, set all types
306
+ to `object` in non-`TYPE_CHECKING` mode.
307
+
308
+ ```python
309
+ from typing import TYPE_CHECKING
310
+
311
+ if TYPE_CHECKING:
312
+ from types_boto3_ec2 import EC2Client, EC2ServiceResource
313
+ from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
314
+ from types_boto3_ec2.paginators import DescribeVolumesPaginator
315
+ else:
316
+ EC2Client = object
317
+ EC2ServiceResource = object
318
+ BundleTaskCompleteWaiter = object
319
+ DescribeVolumesPaginator = object
320
+
321
+ ...
322
+ ```
323
+
271
324
  <a id="explicit-type-annotations"></a>
272
325
 
273
326
  ## Explicit type annotations
@@ -505,11 +558,14 @@ Full list of `Redshift` TypeDefs can be found in
505
558
  [docs](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/type_defs/).
506
559
 
507
560
  ```python
508
- from types_boto3_redshift.type_defs import AcceptReservedNodeExchangeInputMessageRequestTypeDef
561
+ # TypedDict usage example
562
+ from types_boto3_redshift.type_defs import AcceptReservedNodeExchangeInputMessageTypeDef
509
563
 
510
564
 
511
- def get_value() -> AcceptReservedNodeExchangeInputMessageRequestTypeDef:
512
- return {...}
565
+ def get_value() -> AcceptReservedNodeExchangeInputMessageTypeDef:
566
+ return {
567
+ "ReservedNodeId": ...,
568
+ }
513
569
  ```
514
570
 
515
571
  <a id="how-it-works"></a>
@@ -563,7 +619,8 @@ Builder changelog can be found in
563
619
  ## Versioning
564
620
 
565
621
  `types-boto3-redshift` version is the same as related `boto3` version and
566
- follows [PEP 440](https://www.python.org/dev/peps/pep-0440/) format.
622
+ follows
623
+ [Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
567
624
 
568
625
  <a id="thank-you"></a>
569
626
 
@@ -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=ZwaR_n4UHyDRaQu-r-MMfsx2w-cYZ0IOBFdOtirsXIY,986
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=L4GYlMrYwVc5icXrPi3lo_ndC0UdfUNZAf-Y0mqp7e0,20179
7
+ types_boto3_redshift/literals.pyi,sha256=_ML8EMtZoiOGvDxe9sFQaJkPVhI7GbzCyWiLJeBHGGs,20177
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=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,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.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ types_boto3_redshift-1.40.0.dist-info/METADATA,sha256=ncMMEky2PO8mNIGjeqoMj4c3WsmZt9LDmCpEl32yyoo,22470
18
+ types_boto3_redshift-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ types_boto3_redshift-1.40.0.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
20
+ types_boto3_redshift-1.40.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,20 +0,0 @@
1
- types_boto3_redshift/__init__.py,sha256=hPdrXFhJObth1IufqFSZH8QRjiVuUDhhJkAv3Vzq_ZI,10978
2
- types_boto3_redshift/__init__.pyi,sha256=2BefRY1k6qlge6kALJjvDJXdwLl8YPCklFQnFSgiIig,10977
3
- types_boto3_redshift/__main__.py,sha256=EwhQXQO7d6bbCFiDjz7avjxikTI1LEsFsyFdk_J6A9U,954
4
- types_boto3_redshift/client.py,sha256=AC33QUo2Wy8Qbn2avLe6D0KldB9sWXiFfuH7QDoTLOw,121654
5
- types_boto3_redshift/client.pyi,sha256=lFWO6_YClo6wc-ri_4WAMXl_CU5RHYnzfsgGU6vDN9Q,121650
6
- types_boto3_redshift/literals.py,sha256=_mIo0N37aPpta_UochyP1BtjgBO4wIak5tn6C-QUMtA,19633
7
- types_boto3_redshift/literals.pyi,sha256=8YFXJHdwjU1nKXzo4sRE_GQRQeXvndAunvL6v7MBrFc,19631
8
- types_boto3_redshift/paginator.py,sha256=k2Ke-bWW5m9ln6Ru3f6g4IJrKcIk5511d59fLmKglKo,51610
9
- types_boto3_redshift/paginator.pyi,sha256=TiwU2mZkmNSNSmbukzpkIUlKB1Yx3ldVuVriAGCR_Zo,51533
10
- types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_redshift/type_defs.py,sha256=-ER7st3rZADb-Mk3ws4sPhAQiEE8u8tcy6TxcOG_voc,105748
12
- types_boto3_redshift/type_defs.pyi,sha256=pDtpskkAwwxoHAt6zAkSTGZbyC6UzuhQR24k1kJfML0,105367
13
- types_boto3_redshift/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
14
- types_boto3_redshift/waiter.py,sha256=yrN9mKbRyamuxpNCsRVrVqQQaiqyIhwTEfwJbsLXpaY,4769
15
- types_boto3_redshift/waiter.pyi,sha256=tuG9N3-nw9VfQuoAGDf7FOZTnCIHTSCPXdKL4TDFfb4,4760
16
- types_boto3_redshift-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- types_boto3_redshift-1.35.71.dist-info/METADATA,sha256=KFV4cYaG9YZjNSoEj9r9ztwvuW5wH0a4vixVV0Hn9aI,20768
18
- types_boto3_redshift-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
- types_boto3_redshift-1.35.71.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
20
- types_boto3_redshift-1.35.71.dist-info/RECORD,,