types-boto3-redshift 1.35.74__py3-none-any.whl → 1.35.93__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 +1 -1
- types_boto3_redshift/__init__.pyi +1 -1
- types_boto3_redshift/__main__.py +9 -8
- types_boto3_redshift/client.py +108 -101
- types_boto3_redshift/client.pyi +108 -100
- types_boto3_redshift/literals.py +5 -2
- types_boto3_redshift/literals.pyi +5 -2
- types_boto3_redshift/paginator.py +432 -263
- types_boto3_redshift/paginator.pyi +396 -262
- types_boto3_redshift/type_defs.py +89 -117
- types_boto3_redshift/type_defs.pyi +89 -115
- types_boto3_redshift/version.py +2 -2
- types_boto3_redshift/waiter.py +17 -11
- types_boto3_redshift/waiter.pyi +17 -11
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.93.dist-info}/METADATA +22 -8
- types_boto3_redshift-1.35.93.dist-info/RECORD +20 -0
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_redshift-1.35.74.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.93.dist-info}/top_level.txt +0 -0
types_boto3_redshift/__init__.py
CHANGED
types_boto3_redshift/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 Redshift 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 Redshift 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.0\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"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
types_boto3_redshift/client.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for redshift service
|
|
2
|
+
Type annotations for redshift service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: RedshiftClient = session.client("redshift")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
DescribeClusterDbRevisionsPaginator,
|
|
@@ -312,6 +316,11 @@ from .waiter import (
|
|
|
312
316
|
SnapshotAvailableWaiter,
|
|
313
317
|
)
|
|
314
318
|
|
|
319
|
+
if sys.version_info >= (3, 9):
|
|
320
|
+
from builtins import type as Type
|
|
321
|
+
from collections.abc import Mapping
|
|
322
|
+
else:
|
|
323
|
+
from typing import Mapping, Type
|
|
315
324
|
if sys.version_info >= (3, 12):
|
|
316
325
|
from typing import Literal, Unpack
|
|
317
326
|
else:
|
|
@@ -321,15 +330,7 @@ else:
|
|
|
321
330
|
__all__ = ("RedshiftClient",)
|
|
322
331
|
|
|
323
332
|
|
|
324
|
-
class
|
|
325
|
-
MSG_TEMPLATE: str
|
|
326
|
-
|
|
327
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
328
|
-
self.response: Dict[str, Any]
|
|
329
|
-
self.operation_name: str
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
class Exceptions:
|
|
333
|
+
class Exceptions(BaseClientExceptions):
|
|
333
334
|
AccessToClusterDeniedFault: Type[BotocoreClientError]
|
|
334
335
|
AccessToSnapshotDeniedFault: Type[BotocoreClientError]
|
|
335
336
|
AuthenticationProfileAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -510,12 +511,6 @@ class RedshiftClient(BaseClient):
|
|
|
510
511
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#generate_presigned_url)
|
|
511
512
|
"""
|
|
512
513
|
|
|
513
|
-
def close(self) -> None:
|
|
514
|
-
"""
|
|
515
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/close.html)
|
|
516
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#close)
|
|
517
|
-
"""
|
|
518
|
-
|
|
519
514
|
def accept_reserved_node_exchange(
|
|
520
515
|
self, **kwargs: Unpack[AcceptReservedNodeExchangeInputMessageRequestTypeDef]
|
|
521
516
|
) -> AcceptReservedNodeExchangeOutputMessageTypeDef:
|
|
@@ -1956,8 +1951,8 @@ class RedshiftClient(BaseClient):
|
|
|
1956
1951
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#update_partner_status)
|
|
1957
1952
|
"""
|
|
1958
1953
|
|
|
1959
|
-
@overload
|
|
1960
|
-
def get_paginator(
|
|
1954
|
+
@overload # type: ignore[override]
|
|
1955
|
+
def get_paginator( # type: ignore[override]
|
|
1961
1956
|
self, operation_name: Literal["describe_cluster_db_revisions"]
|
|
1962
1957
|
) -> DescribeClusterDbRevisionsPaginator:
|
|
1963
1958
|
"""
|
|
@@ -1967,8 +1962,8 @@ class RedshiftClient(BaseClient):
|
|
|
1967
1962
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1968
1963
|
"""
|
|
1969
1964
|
|
|
1970
|
-
@overload
|
|
1971
|
-
def get_paginator(
|
|
1965
|
+
@overload # type: ignore[override]
|
|
1966
|
+
def get_paginator( # type: ignore[override]
|
|
1972
1967
|
self, operation_name: Literal["describe_cluster_parameter_groups"]
|
|
1973
1968
|
) -> DescribeClusterParameterGroupsPaginator:
|
|
1974
1969
|
"""
|
|
@@ -1978,8 +1973,8 @@ class RedshiftClient(BaseClient):
|
|
|
1978
1973
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1979
1974
|
"""
|
|
1980
1975
|
|
|
1981
|
-
@overload
|
|
1982
|
-
def get_paginator(
|
|
1976
|
+
@overload # type: ignore[override]
|
|
1977
|
+
def get_paginator( # type: ignore[override]
|
|
1983
1978
|
self, operation_name: Literal["describe_cluster_parameters"]
|
|
1984
1979
|
) -> DescribeClusterParametersPaginator:
|
|
1985
1980
|
"""
|
|
@@ -1989,8 +1984,8 @@ class RedshiftClient(BaseClient):
|
|
|
1989
1984
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1990
1985
|
"""
|
|
1991
1986
|
|
|
1992
|
-
@overload
|
|
1993
|
-
def get_paginator(
|
|
1987
|
+
@overload # type: ignore[override]
|
|
1988
|
+
def get_paginator( # type: ignore[override]
|
|
1994
1989
|
self, operation_name: Literal["describe_cluster_security_groups"]
|
|
1995
1990
|
) -> DescribeClusterSecurityGroupsPaginator:
|
|
1996
1991
|
"""
|
|
@@ -2000,8 +1995,8 @@ class RedshiftClient(BaseClient):
|
|
|
2000
1995
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2001
1996
|
"""
|
|
2002
1997
|
|
|
2003
|
-
@overload
|
|
2004
|
-
def get_paginator(
|
|
1998
|
+
@overload # type: ignore[override]
|
|
1999
|
+
def get_paginator( # type: ignore[override]
|
|
2005
2000
|
self, operation_name: Literal["describe_cluster_snapshots"]
|
|
2006
2001
|
) -> DescribeClusterSnapshotsPaginator:
|
|
2007
2002
|
"""
|
|
@@ -2011,8 +2006,8 @@ class RedshiftClient(BaseClient):
|
|
|
2011
2006
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2012
2007
|
"""
|
|
2013
2008
|
|
|
2014
|
-
@overload
|
|
2015
|
-
def get_paginator(
|
|
2009
|
+
@overload # type: ignore[override]
|
|
2010
|
+
def get_paginator( # type: ignore[override]
|
|
2016
2011
|
self, operation_name: Literal["describe_cluster_subnet_groups"]
|
|
2017
2012
|
) -> DescribeClusterSubnetGroupsPaginator:
|
|
2018
2013
|
"""
|
|
@@ -2022,8 +2017,8 @@ class RedshiftClient(BaseClient):
|
|
|
2022
2017
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2023
2018
|
"""
|
|
2024
2019
|
|
|
2025
|
-
@overload
|
|
2026
|
-
def get_paginator(
|
|
2020
|
+
@overload # type: ignore[override]
|
|
2021
|
+
def get_paginator( # type: ignore[override]
|
|
2027
2022
|
self, operation_name: Literal["describe_cluster_tracks"]
|
|
2028
2023
|
) -> DescribeClusterTracksPaginator:
|
|
2029
2024
|
"""
|
|
@@ -2033,8 +2028,8 @@ class RedshiftClient(BaseClient):
|
|
|
2033
2028
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2034
2029
|
"""
|
|
2035
2030
|
|
|
2036
|
-
@overload
|
|
2037
|
-
def get_paginator(
|
|
2031
|
+
@overload # type: ignore[override]
|
|
2032
|
+
def get_paginator( # type: ignore[override]
|
|
2038
2033
|
self, operation_name: Literal["describe_cluster_versions"]
|
|
2039
2034
|
) -> DescribeClusterVersionsPaginator:
|
|
2040
2035
|
"""
|
|
@@ -2044,8 +2039,8 @@ class RedshiftClient(BaseClient):
|
|
|
2044
2039
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2045
2040
|
"""
|
|
2046
2041
|
|
|
2047
|
-
@overload
|
|
2048
|
-
def get_paginator(
|
|
2042
|
+
@overload # type: ignore[override]
|
|
2043
|
+
def get_paginator( # type: ignore[override]
|
|
2049
2044
|
self, operation_name: Literal["describe_clusters"]
|
|
2050
2045
|
) -> DescribeClustersPaginator:
|
|
2051
2046
|
"""
|
|
@@ -2055,8 +2050,8 @@ class RedshiftClient(BaseClient):
|
|
|
2055
2050
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2056
2051
|
"""
|
|
2057
2052
|
|
|
2058
|
-
@overload
|
|
2059
|
-
def get_paginator(
|
|
2053
|
+
@overload # type: ignore[override]
|
|
2054
|
+
def get_paginator( # type: ignore[override]
|
|
2060
2055
|
self, operation_name: Literal["describe_custom_domain_associations"]
|
|
2061
2056
|
) -> DescribeCustomDomainAssociationsPaginator:
|
|
2062
2057
|
"""
|
|
@@ -2066,8 +2061,8 @@ class RedshiftClient(BaseClient):
|
|
|
2066
2061
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2067
2062
|
"""
|
|
2068
2063
|
|
|
2069
|
-
@overload
|
|
2070
|
-
def get_paginator(
|
|
2064
|
+
@overload # type: ignore[override]
|
|
2065
|
+
def get_paginator( # type: ignore[override]
|
|
2071
2066
|
self, operation_name: Literal["describe_data_shares_for_consumer"]
|
|
2072
2067
|
) -> DescribeDataSharesForConsumerPaginator:
|
|
2073
2068
|
"""
|
|
@@ -2077,8 +2072,8 @@ class RedshiftClient(BaseClient):
|
|
|
2077
2072
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2078
2073
|
"""
|
|
2079
2074
|
|
|
2080
|
-
@overload
|
|
2081
|
-
def get_paginator(
|
|
2075
|
+
@overload # type: ignore[override]
|
|
2076
|
+
def get_paginator( # type: ignore[override]
|
|
2082
2077
|
self, operation_name: Literal["describe_data_shares_for_producer"]
|
|
2083
2078
|
) -> DescribeDataSharesForProducerPaginator:
|
|
2084
2079
|
"""
|
|
@@ -2088,8 +2083,8 @@ class RedshiftClient(BaseClient):
|
|
|
2088
2083
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2089
2084
|
"""
|
|
2090
2085
|
|
|
2091
|
-
@overload
|
|
2092
|
-
def get_paginator(
|
|
2086
|
+
@overload # type: ignore[override]
|
|
2087
|
+
def get_paginator( # type: ignore[override]
|
|
2093
2088
|
self, operation_name: Literal["describe_data_shares"]
|
|
2094
2089
|
) -> DescribeDataSharesPaginator:
|
|
2095
2090
|
"""
|
|
@@ -2099,8 +2094,8 @@ class RedshiftClient(BaseClient):
|
|
|
2099
2094
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2100
2095
|
"""
|
|
2101
2096
|
|
|
2102
|
-
@overload
|
|
2103
|
-
def get_paginator(
|
|
2097
|
+
@overload # type: ignore[override]
|
|
2098
|
+
def get_paginator( # type: ignore[override]
|
|
2104
2099
|
self, operation_name: Literal["describe_default_cluster_parameters"]
|
|
2105
2100
|
) -> DescribeDefaultClusterParametersPaginator:
|
|
2106
2101
|
"""
|
|
@@ -2110,8 +2105,8 @@ class RedshiftClient(BaseClient):
|
|
|
2110
2105
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2111
2106
|
"""
|
|
2112
2107
|
|
|
2113
|
-
@overload
|
|
2114
|
-
def get_paginator(
|
|
2108
|
+
@overload # type: ignore[override]
|
|
2109
|
+
def get_paginator( # type: ignore[override]
|
|
2115
2110
|
self, operation_name: Literal["describe_endpoint_access"]
|
|
2116
2111
|
) -> DescribeEndpointAccessPaginator:
|
|
2117
2112
|
"""
|
|
@@ -2121,8 +2116,8 @@ class RedshiftClient(BaseClient):
|
|
|
2121
2116
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2122
2117
|
"""
|
|
2123
2118
|
|
|
2124
|
-
@overload
|
|
2125
|
-
def get_paginator(
|
|
2119
|
+
@overload # type: ignore[override]
|
|
2120
|
+
def get_paginator( # type: ignore[override]
|
|
2126
2121
|
self, operation_name: Literal["describe_endpoint_authorization"]
|
|
2127
2122
|
) -> DescribeEndpointAuthorizationPaginator:
|
|
2128
2123
|
"""
|
|
@@ -2132,8 +2127,8 @@ class RedshiftClient(BaseClient):
|
|
|
2132
2127
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2133
2128
|
"""
|
|
2134
2129
|
|
|
2135
|
-
@overload
|
|
2136
|
-
def get_paginator(
|
|
2130
|
+
@overload # type: ignore[override]
|
|
2131
|
+
def get_paginator( # type: ignore[override]
|
|
2137
2132
|
self, operation_name: Literal["describe_event_subscriptions"]
|
|
2138
2133
|
) -> DescribeEventSubscriptionsPaginator:
|
|
2139
2134
|
"""
|
|
@@ -2143,8 +2138,10 @@ class RedshiftClient(BaseClient):
|
|
|
2143
2138
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2144
2139
|
"""
|
|
2145
2140
|
|
|
2146
|
-
@overload
|
|
2147
|
-
def get_paginator(
|
|
2141
|
+
@overload # type: ignore[override]
|
|
2142
|
+
def get_paginator( # type: ignore[override]
|
|
2143
|
+
self, operation_name: Literal["describe_events"]
|
|
2144
|
+
) -> DescribeEventsPaginator:
|
|
2148
2145
|
"""
|
|
2149
2146
|
Create a paginator for an operation.
|
|
2150
2147
|
|
|
@@ -2152,8 +2149,8 @@ class RedshiftClient(BaseClient):
|
|
|
2152
2149
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2153
2150
|
"""
|
|
2154
2151
|
|
|
2155
|
-
@overload
|
|
2156
|
-
def get_paginator(
|
|
2152
|
+
@overload # type: ignore[override]
|
|
2153
|
+
def get_paginator( # type: ignore[override]
|
|
2157
2154
|
self, operation_name: Literal["describe_hsm_client_certificates"]
|
|
2158
2155
|
) -> DescribeHsmClientCertificatesPaginator:
|
|
2159
2156
|
"""
|
|
@@ -2163,8 +2160,8 @@ class RedshiftClient(BaseClient):
|
|
|
2163
2160
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2164
2161
|
"""
|
|
2165
2162
|
|
|
2166
|
-
@overload
|
|
2167
|
-
def get_paginator(
|
|
2163
|
+
@overload # type: ignore[override]
|
|
2164
|
+
def get_paginator( # type: ignore[override]
|
|
2168
2165
|
self, operation_name: Literal["describe_hsm_configurations"]
|
|
2169
2166
|
) -> DescribeHsmConfigurationsPaginator:
|
|
2170
2167
|
"""
|
|
@@ -2174,8 +2171,8 @@ class RedshiftClient(BaseClient):
|
|
|
2174
2171
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2175
2172
|
"""
|
|
2176
2173
|
|
|
2177
|
-
@overload
|
|
2178
|
-
def get_paginator(
|
|
2174
|
+
@overload # type: ignore[override]
|
|
2175
|
+
def get_paginator( # type: ignore[override]
|
|
2179
2176
|
self, operation_name: Literal["describe_inbound_integrations"]
|
|
2180
2177
|
) -> DescribeInboundIntegrationsPaginator:
|
|
2181
2178
|
"""
|
|
@@ -2185,8 +2182,8 @@ class RedshiftClient(BaseClient):
|
|
|
2185
2182
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2186
2183
|
"""
|
|
2187
2184
|
|
|
2188
|
-
@overload
|
|
2189
|
-
def get_paginator(
|
|
2185
|
+
@overload # type: ignore[override]
|
|
2186
|
+
def get_paginator( # type: ignore[override]
|
|
2190
2187
|
self, operation_name: Literal["describe_integrations"]
|
|
2191
2188
|
) -> DescribeIntegrationsPaginator:
|
|
2192
2189
|
"""
|
|
@@ -2196,8 +2193,8 @@ class RedshiftClient(BaseClient):
|
|
|
2196
2193
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2197
2194
|
"""
|
|
2198
2195
|
|
|
2199
|
-
@overload
|
|
2200
|
-
def get_paginator(
|
|
2196
|
+
@overload # type: ignore[override]
|
|
2197
|
+
def get_paginator( # type: ignore[override]
|
|
2201
2198
|
self, operation_name: Literal["describe_node_configuration_options"]
|
|
2202
2199
|
) -> DescribeNodeConfigurationOptionsPaginator:
|
|
2203
2200
|
"""
|
|
@@ -2207,8 +2204,8 @@ class RedshiftClient(BaseClient):
|
|
|
2207
2204
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2208
2205
|
"""
|
|
2209
2206
|
|
|
2210
|
-
@overload
|
|
2211
|
-
def get_paginator(
|
|
2207
|
+
@overload # type: ignore[override]
|
|
2208
|
+
def get_paginator( # type: ignore[override]
|
|
2212
2209
|
self, operation_name: Literal["describe_orderable_cluster_options"]
|
|
2213
2210
|
) -> DescribeOrderableClusterOptionsPaginator:
|
|
2214
2211
|
"""
|
|
@@ -2218,8 +2215,8 @@ class RedshiftClient(BaseClient):
|
|
|
2218
2215
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2219
2216
|
"""
|
|
2220
2217
|
|
|
2221
|
-
@overload
|
|
2222
|
-
def get_paginator(
|
|
2218
|
+
@overload # type: ignore[override]
|
|
2219
|
+
def get_paginator( # type: ignore[override]
|
|
2223
2220
|
self, operation_name: Literal["describe_redshift_idc_applications"]
|
|
2224
2221
|
) -> DescribeRedshiftIdcApplicationsPaginator:
|
|
2225
2222
|
"""
|
|
@@ -2229,8 +2226,8 @@ class RedshiftClient(BaseClient):
|
|
|
2229
2226
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2230
2227
|
"""
|
|
2231
2228
|
|
|
2232
|
-
@overload
|
|
2233
|
-
def get_paginator(
|
|
2229
|
+
@overload # type: ignore[override]
|
|
2230
|
+
def get_paginator( # type: ignore[override]
|
|
2234
2231
|
self, operation_name: Literal["describe_reserved_node_exchange_status"]
|
|
2235
2232
|
) -> DescribeReservedNodeExchangeStatusPaginator:
|
|
2236
2233
|
"""
|
|
@@ -2240,8 +2237,8 @@ class RedshiftClient(BaseClient):
|
|
|
2240
2237
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2241
2238
|
"""
|
|
2242
2239
|
|
|
2243
|
-
@overload
|
|
2244
|
-
def get_paginator(
|
|
2240
|
+
@overload # type: ignore[override]
|
|
2241
|
+
def get_paginator( # type: ignore[override]
|
|
2245
2242
|
self, operation_name: Literal["describe_reserved_node_offerings"]
|
|
2246
2243
|
) -> DescribeReservedNodeOfferingsPaginator:
|
|
2247
2244
|
"""
|
|
@@ -2251,8 +2248,8 @@ class RedshiftClient(BaseClient):
|
|
|
2251
2248
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2252
2249
|
"""
|
|
2253
2250
|
|
|
2254
|
-
@overload
|
|
2255
|
-
def get_paginator(
|
|
2251
|
+
@overload # type: ignore[override]
|
|
2252
|
+
def get_paginator( # type: ignore[override]
|
|
2256
2253
|
self, operation_name: Literal["describe_reserved_nodes"]
|
|
2257
2254
|
) -> DescribeReservedNodesPaginator:
|
|
2258
2255
|
"""
|
|
@@ -2262,8 +2259,8 @@ class RedshiftClient(BaseClient):
|
|
|
2262
2259
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2263
2260
|
"""
|
|
2264
2261
|
|
|
2265
|
-
@overload
|
|
2266
|
-
def get_paginator(
|
|
2262
|
+
@overload # type: ignore[override]
|
|
2263
|
+
def get_paginator( # type: ignore[override]
|
|
2267
2264
|
self, operation_name: Literal["describe_scheduled_actions"]
|
|
2268
2265
|
) -> DescribeScheduledActionsPaginator:
|
|
2269
2266
|
"""
|
|
@@ -2273,8 +2270,8 @@ class RedshiftClient(BaseClient):
|
|
|
2273
2270
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2274
2271
|
"""
|
|
2275
2272
|
|
|
2276
|
-
@overload
|
|
2277
|
-
def get_paginator(
|
|
2273
|
+
@overload # type: ignore[override]
|
|
2274
|
+
def get_paginator( # type: ignore[override]
|
|
2278
2275
|
self, operation_name: Literal["describe_snapshot_copy_grants"]
|
|
2279
2276
|
) -> DescribeSnapshotCopyGrantsPaginator:
|
|
2280
2277
|
"""
|
|
@@ -2284,8 +2281,8 @@ class RedshiftClient(BaseClient):
|
|
|
2284
2281
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2285
2282
|
"""
|
|
2286
2283
|
|
|
2287
|
-
@overload
|
|
2288
|
-
def get_paginator(
|
|
2284
|
+
@overload # type: ignore[override]
|
|
2285
|
+
def get_paginator( # type: ignore[override]
|
|
2289
2286
|
self, operation_name: Literal["describe_snapshot_schedules"]
|
|
2290
2287
|
) -> DescribeSnapshotSchedulesPaginator:
|
|
2291
2288
|
"""
|
|
@@ -2295,8 +2292,8 @@ class RedshiftClient(BaseClient):
|
|
|
2295
2292
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2296
2293
|
"""
|
|
2297
2294
|
|
|
2298
|
-
@overload
|
|
2299
|
-
def get_paginator(
|
|
2295
|
+
@overload # type: ignore[override]
|
|
2296
|
+
def get_paginator( # type: ignore[override]
|
|
2300
2297
|
self, operation_name: Literal["describe_table_restore_status"]
|
|
2301
2298
|
) -> DescribeTableRestoreStatusPaginator:
|
|
2302
2299
|
"""
|
|
@@ -2306,8 +2303,10 @@ class RedshiftClient(BaseClient):
|
|
|
2306
2303
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2307
2304
|
"""
|
|
2308
2305
|
|
|
2309
|
-
@overload
|
|
2310
|
-
def get_paginator(
|
|
2306
|
+
@overload # type: ignore[override]
|
|
2307
|
+
def get_paginator( # type: ignore[override]
|
|
2308
|
+
self, operation_name: Literal["describe_tags"]
|
|
2309
|
+
) -> DescribeTagsPaginator:
|
|
2311
2310
|
"""
|
|
2312
2311
|
Create a paginator for an operation.
|
|
2313
2312
|
|
|
@@ -2315,8 +2314,8 @@ class RedshiftClient(BaseClient):
|
|
|
2315
2314
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2316
2315
|
"""
|
|
2317
2316
|
|
|
2318
|
-
@overload
|
|
2319
|
-
def get_paginator(
|
|
2317
|
+
@overload # type: ignore[override]
|
|
2318
|
+
def get_paginator( # type: ignore[override]
|
|
2320
2319
|
self, operation_name: Literal["describe_usage_limits"]
|
|
2321
2320
|
) -> DescribeUsageLimitsPaginator:
|
|
2322
2321
|
"""
|
|
@@ -2326,8 +2325,8 @@ class RedshiftClient(BaseClient):
|
|
|
2326
2325
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2327
2326
|
"""
|
|
2328
2327
|
|
|
2329
|
-
@overload
|
|
2330
|
-
def get_paginator(
|
|
2328
|
+
@overload # type: ignore[override]
|
|
2329
|
+
def get_paginator( # type: ignore[override]
|
|
2331
2330
|
self, operation_name: Literal["get_reserved_node_exchange_configuration_options"]
|
|
2332
2331
|
) -> GetReservedNodeExchangeConfigurationOptionsPaginator:
|
|
2333
2332
|
"""
|
|
@@ -2337,8 +2336,8 @@ class RedshiftClient(BaseClient):
|
|
|
2337
2336
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2338
2337
|
"""
|
|
2339
2338
|
|
|
2340
|
-
@overload
|
|
2341
|
-
def get_paginator(
|
|
2339
|
+
@overload # type: ignore[override]
|
|
2340
|
+
def get_paginator( # type: ignore[override]
|
|
2342
2341
|
self, operation_name: Literal["get_reserved_node_exchange_offerings"]
|
|
2343
2342
|
) -> GetReservedNodeExchangeOfferingsPaginator:
|
|
2344
2343
|
"""
|
|
@@ -2348,8 +2347,8 @@ class RedshiftClient(BaseClient):
|
|
|
2348
2347
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2349
2348
|
"""
|
|
2350
2349
|
|
|
2351
|
-
@overload
|
|
2352
|
-
def get_paginator(
|
|
2350
|
+
@overload # type: ignore[override]
|
|
2351
|
+
def get_paginator( # type: ignore[override]
|
|
2353
2352
|
self, operation_name: Literal["list_recommendations"]
|
|
2354
2353
|
) -> ListRecommendationsPaginator:
|
|
2355
2354
|
"""
|
|
@@ -2359,8 +2358,10 @@ class RedshiftClient(BaseClient):
|
|
|
2359
2358
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2360
2359
|
"""
|
|
2361
2360
|
|
|
2362
|
-
@overload
|
|
2363
|
-
def get_waiter(
|
|
2361
|
+
@overload # type: ignore[override]
|
|
2362
|
+
def get_waiter( # type: ignore[override]
|
|
2363
|
+
self, waiter_name: Literal["cluster_available"]
|
|
2364
|
+
) -> ClusterAvailableWaiter:
|
|
2364
2365
|
"""
|
|
2365
2366
|
Returns an object that can wait for some condition.
|
|
2366
2367
|
|
|
@@ -2368,8 +2369,10 @@ class RedshiftClient(BaseClient):
|
|
|
2368
2369
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2369
2370
|
"""
|
|
2370
2371
|
|
|
2371
|
-
@overload
|
|
2372
|
-
def get_waiter(
|
|
2372
|
+
@overload # type: ignore[override]
|
|
2373
|
+
def get_waiter( # type: ignore[override]
|
|
2374
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
2375
|
+
) -> ClusterDeletedWaiter:
|
|
2373
2376
|
"""
|
|
2374
2377
|
Returns an object that can wait for some condition.
|
|
2375
2378
|
|
|
@@ -2377,8 +2380,10 @@ class RedshiftClient(BaseClient):
|
|
|
2377
2380
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2378
2381
|
"""
|
|
2379
2382
|
|
|
2380
|
-
@overload
|
|
2381
|
-
def get_waiter(
|
|
2383
|
+
@overload # type: ignore[override]
|
|
2384
|
+
def get_waiter( # type: ignore[override]
|
|
2385
|
+
self, waiter_name: Literal["cluster_restored"]
|
|
2386
|
+
) -> ClusterRestoredWaiter:
|
|
2382
2387
|
"""
|
|
2383
2388
|
Returns an object that can wait for some condition.
|
|
2384
2389
|
|
|
@@ -2386,8 +2391,10 @@ class RedshiftClient(BaseClient):
|
|
|
2386
2391
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2387
2392
|
"""
|
|
2388
2393
|
|
|
2389
|
-
@overload
|
|
2390
|
-
def get_waiter(
|
|
2394
|
+
@overload # type: ignore[override]
|
|
2395
|
+
def get_waiter( # type: ignore[override]
|
|
2396
|
+
self, waiter_name: Literal["snapshot_available"]
|
|
2397
|
+
) -> SnapshotAvailableWaiter:
|
|
2391
2398
|
"""
|
|
2392
2399
|
Returns an object that can wait for some condition.
|
|
2393
2400
|
|