types-boto3-redshift 1.35.71__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 +134 -101
- types_boto3_redshift/client.pyi +134 -100
- types_boto3_redshift/literals.py +14 -2
- types_boto3_redshift/literals.pyi +14 -2
- types_boto3_redshift/paginator.py +432 -263
- types_boto3_redshift/paginator.pyi +396 -262
- types_boto3_redshift/type_defs.py +135 -119
- types_boto3_redshift/type_defs.pyi +128 -117
- 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.71.dist-info → types_boto3_redshift-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_redshift-1.35.93.dist-info/RECORD +20 -0
- {types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_redshift-1.35.71.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.35.71.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,
|
|
@@ -144,6 +148,8 @@ from .type_defs import (
|
|
|
144
148
|
DeleteSnapshotScheduleMessageRequestTypeDef,
|
|
145
149
|
DeleteTagsMessageRequestTypeDef,
|
|
146
150
|
DeleteUsageLimitMessageRequestTypeDef,
|
|
151
|
+
DeregisterNamespaceInputMessageRequestTypeDef,
|
|
152
|
+
DeregisterNamespaceOutputMessageTypeDef,
|
|
147
153
|
DescribeAccountAttributesMessageRequestTypeDef,
|
|
148
154
|
DescribeAuthenticationProfilesMessageRequestTypeDef,
|
|
149
155
|
DescribeAuthenticationProfilesResultTypeDef,
|
|
@@ -269,6 +275,8 @@ from .type_defs import (
|
|
|
269
275
|
PutResourcePolicyResultTypeDef,
|
|
270
276
|
RebootClusterMessageRequestTypeDef,
|
|
271
277
|
RebootClusterResultTypeDef,
|
|
278
|
+
RegisterNamespaceInputMessageRequestTypeDef,
|
|
279
|
+
RegisterNamespaceOutputMessageTypeDef,
|
|
272
280
|
RejectDataShareMessageRequestTypeDef,
|
|
273
281
|
ReservedNodeOfferingsMessageTypeDef,
|
|
274
282
|
ReservedNodesMessageTypeDef,
|
|
@@ -308,6 +316,11 @@ from .waiter import (
|
|
|
308
316
|
SnapshotAvailableWaiter,
|
|
309
317
|
)
|
|
310
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
|
|
311
324
|
if sys.version_info >= (3, 12):
|
|
312
325
|
from typing import Literal, Unpack
|
|
313
326
|
else:
|
|
@@ -317,15 +330,7 @@ else:
|
|
|
317
330
|
__all__ = ("RedshiftClient",)
|
|
318
331
|
|
|
319
332
|
|
|
320
|
-
class
|
|
321
|
-
MSG_TEMPLATE: str
|
|
322
|
-
|
|
323
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
324
|
-
self.response: Dict[str, Any]
|
|
325
|
-
self.operation_name: str
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
class Exceptions:
|
|
333
|
+
class Exceptions(BaseClientExceptions):
|
|
329
334
|
AccessToClusterDeniedFault: Type[BotocoreClientError]
|
|
330
335
|
AccessToSnapshotDeniedFault: Type[BotocoreClientError]
|
|
331
336
|
AuthenticationProfileAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -506,12 +511,6 @@ class RedshiftClient(BaseClient):
|
|
|
506
511
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#generate_presigned_url)
|
|
507
512
|
"""
|
|
508
513
|
|
|
509
|
-
def close(self) -> None:
|
|
510
|
-
"""
|
|
511
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/close.html)
|
|
512
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#close)
|
|
513
|
-
"""
|
|
514
|
-
|
|
515
514
|
def accept_reserved_node_exchange(
|
|
516
515
|
self, **kwargs: Unpack[AcceptReservedNodeExchangeInputMessageRequestTypeDef]
|
|
517
516
|
) -> AcceptReservedNodeExchangeOutputMessageTypeDef:
|
|
@@ -1026,6 +1025,17 @@ class RedshiftClient(BaseClient):
|
|
|
1026
1025
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#delete_usage_limit)
|
|
1027
1026
|
"""
|
|
1028
1027
|
|
|
1028
|
+
def deregister_namespace(
|
|
1029
|
+
self, **kwargs: Unpack[DeregisterNamespaceInputMessageRequestTypeDef]
|
|
1030
|
+
) -> DeregisterNamespaceOutputMessageTypeDef:
|
|
1031
|
+
"""
|
|
1032
|
+
Deregisters a cluster or serverless namespace from the Amazon Web Services Glue
|
|
1033
|
+
Data Catalog.
|
|
1034
|
+
|
|
1035
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/deregister_namespace.html)
|
|
1036
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#deregister_namespace)
|
|
1037
|
+
"""
|
|
1038
|
+
|
|
1029
1039
|
def describe_account_attributes(
|
|
1030
1040
|
self, **kwargs: Unpack[DescribeAccountAttributesMessageRequestTypeDef]
|
|
1031
1041
|
) -> AccountAttributeListTypeDef:
|
|
@@ -1817,6 +1827,17 @@ class RedshiftClient(BaseClient):
|
|
|
1817
1827
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#reboot_cluster)
|
|
1818
1828
|
"""
|
|
1819
1829
|
|
|
1830
|
+
def register_namespace(
|
|
1831
|
+
self, **kwargs: Unpack[RegisterNamespaceInputMessageRequestTypeDef]
|
|
1832
|
+
) -> RegisterNamespaceOutputMessageTypeDef:
|
|
1833
|
+
"""
|
|
1834
|
+
Registers a cluster or serverless namespace to the Amazon Web Services Glue
|
|
1835
|
+
Data Catalog.
|
|
1836
|
+
|
|
1837
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/register_namespace.html)
|
|
1838
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#register_namespace)
|
|
1839
|
+
"""
|
|
1840
|
+
|
|
1820
1841
|
def reject_data_share(
|
|
1821
1842
|
self, **kwargs: Unpack[RejectDataShareMessageRequestTypeDef]
|
|
1822
1843
|
) -> DataShareResponseTypeDef:
|
|
@@ -1930,8 +1951,8 @@ class RedshiftClient(BaseClient):
|
|
|
1930
1951
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#update_partner_status)
|
|
1931
1952
|
"""
|
|
1932
1953
|
|
|
1933
|
-
@overload
|
|
1934
|
-
def get_paginator(
|
|
1954
|
+
@overload # type: ignore[override]
|
|
1955
|
+
def get_paginator( # type: ignore[override]
|
|
1935
1956
|
self, operation_name: Literal["describe_cluster_db_revisions"]
|
|
1936
1957
|
) -> DescribeClusterDbRevisionsPaginator:
|
|
1937
1958
|
"""
|
|
@@ -1941,8 +1962,8 @@ class RedshiftClient(BaseClient):
|
|
|
1941
1962
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1942
1963
|
"""
|
|
1943
1964
|
|
|
1944
|
-
@overload
|
|
1945
|
-
def get_paginator(
|
|
1965
|
+
@overload # type: ignore[override]
|
|
1966
|
+
def get_paginator( # type: ignore[override]
|
|
1946
1967
|
self, operation_name: Literal["describe_cluster_parameter_groups"]
|
|
1947
1968
|
) -> DescribeClusterParameterGroupsPaginator:
|
|
1948
1969
|
"""
|
|
@@ -1952,8 +1973,8 @@ class RedshiftClient(BaseClient):
|
|
|
1952
1973
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1953
1974
|
"""
|
|
1954
1975
|
|
|
1955
|
-
@overload
|
|
1956
|
-
def get_paginator(
|
|
1976
|
+
@overload # type: ignore[override]
|
|
1977
|
+
def get_paginator( # type: ignore[override]
|
|
1957
1978
|
self, operation_name: Literal["describe_cluster_parameters"]
|
|
1958
1979
|
) -> DescribeClusterParametersPaginator:
|
|
1959
1980
|
"""
|
|
@@ -1963,8 +1984,8 @@ class RedshiftClient(BaseClient):
|
|
|
1963
1984
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1964
1985
|
"""
|
|
1965
1986
|
|
|
1966
|
-
@overload
|
|
1967
|
-
def get_paginator(
|
|
1987
|
+
@overload # type: ignore[override]
|
|
1988
|
+
def get_paginator( # type: ignore[override]
|
|
1968
1989
|
self, operation_name: Literal["describe_cluster_security_groups"]
|
|
1969
1990
|
) -> DescribeClusterSecurityGroupsPaginator:
|
|
1970
1991
|
"""
|
|
@@ -1974,8 +1995,8 @@ class RedshiftClient(BaseClient):
|
|
|
1974
1995
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1975
1996
|
"""
|
|
1976
1997
|
|
|
1977
|
-
@overload
|
|
1978
|
-
def get_paginator(
|
|
1998
|
+
@overload # type: ignore[override]
|
|
1999
|
+
def get_paginator( # type: ignore[override]
|
|
1979
2000
|
self, operation_name: Literal["describe_cluster_snapshots"]
|
|
1980
2001
|
) -> DescribeClusterSnapshotsPaginator:
|
|
1981
2002
|
"""
|
|
@@ -1985,8 +2006,8 @@ class RedshiftClient(BaseClient):
|
|
|
1985
2006
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1986
2007
|
"""
|
|
1987
2008
|
|
|
1988
|
-
@overload
|
|
1989
|
-
def get_paginator(
|
|
2009
|
+
@overload # type: ignore[override]
|
|
2010
|
+
def get_paginator( # type: ignore[override]
|
|
1990
2011
|
self, operation_name: Literal["describe_cluster_subnet_groups"]
|
|
1991
2012
|
) -> DescribeClusterSubnetGroupsPaginator:
|
|
1992
2013
|
"""
|
|
@@ -1996,8 +2017,8 @@ class RedshiftClient(BaseClient):
|
|
|
1996
2017
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1997
2018
|
"""
|
|
1998
2019
|
|
|
1999
|
-
@overload
|
|
2000
|
-
def get_paginator(
|
|
2020
|
+
@overload # type: ignore[override]
|
|
2021
|
+
def get_paginator( # type: ignore[override]
|
|
2001
2022
|
self, operation_name: Literal["describe_cluster_tracks"]
|
|
2002
2023
|
) -> DescribeClusterTracksPaginator:
|
|
2003
2024
|
"""
|
|
@@ -2007,8 +2028,8 @@ class RedshiftClient(BaseClient):
|
|
|
2007
2028
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2008
2029
|
"""
|
|
2009
2030
|
|
|
2010
|
-
@overload
|
|
2011
|
-
def get_paginator(
|
|
2031
|
+
@overload # type: ignore[override]
|
|
2032
|
+
def get_paginator( # type: ignore[override]
|
|
2012
2033
|
self, operation_name: Literal["describe_cluster_versions"]
|
|
2013
2034
|
) -> DescribeClusterVersionsPaginator:
|
|
2014
2035
|
"""
|
|
@@ -2018,8 +2039,8 @@ class RedshiftClient(BaseClient):
|
|
|
2018
2039
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2019
2040
|
"""
|
|
2020
2041
|
|
|
2021
|
-
@overload
|
|
2022
|
-
def get_paginator(
|
|
2042
|
+
@overload # type: ignore[override]
|
|
2043
|
+
def get_paginator( # type: ignore[override]
|
|
2023
2044
|
self, operation_name: Literal["describe_clusters"]
|
|
2024
2045
|
) -> DescribeClustersPaginator:
|
|
2025
2046
|
"""
|
|
@@ -2029,8 +2050,8 @@ class RedshiftClient(BaseClient):
|
|
|
2029
2050
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2030
2051
|
"""
|
|
2031
2052
|
|
|
2032
|
-
@overload
|
|
2033
|
-
def get_paginator(
|
|
2053
|
+
@overload # type: ignore[override]
|
|
2054
|
+
def get_paginator( # type: ignore[override]
|
|
2034
2055
|
self, operation_name: Literal["describe_custom_domain_associations"]
|
|
2035
2056
|
) -> DescribeCustomDomainAssociationsPaginator:
|
|
2036
2057
|
"""
|
|
@@ -2040,8 +2061,8 @@ class RedshiftClient(BaseClient):
|
|
|
2040
2061
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2041
2062
|
"""
|
|
2042
2063
|
|
|
2043
|
-
@overload
|
|
2044
|
-
def get_paginator(
|
|
2064
|
+
@overload # type: ignore[override]
|
|
2065
|
+
def get_paginator( # type: ignore[override]
|
|
2045
2066
|
self, operation_name: Literal["describe_data_shares_for_consumer"]
|
|
2046
2067
|
) -> DescribeDataSharesForConsumerPaginator:
|
|
2047
2068
|
"""
|
|
@@ -2051,8 +2072,8 @@ class RedshiftClient(BaseClient):
|
|
|
2051
2072
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2052
2073
|
"""
|
|
2053
2074
|
|
|
2054
|
-
@overload
|
|
2055
|
-
def get_paginator(
|
|
2075
|
+
@overload # type: ignore[override]
|
|
2076
|
+
def get_paginator( # type: ignore[override]
|
|
2056
2077
|
self, operation_name: Literal["describe_data_shares_for_producer"]
|
|
2057
2078
|
) -> DescribeDataSharesForProducerPaginator:
|
|
2058
2079
|
"""
|
|
@@ -2062,8 +2083,8 @@ class RedshiftClient(BaseClient):
|
|
|
2062
2083
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2063
2084
|
"""
|
|
2064
2085
|
|
|
2065
|
-
@overload
|
|
2066
|
-
def get_paginator(
|
|
2086
|
+
@overload # type: ignore[override]
|
|
2087
|
+
def get_paginator( # type: ignore[override]
|
|
2067
2088
|
self, operation_name: Literal["describe_data_shares"]
|
|
2068
2089
|
) -> DescribeDataSharesPaginator:
|
|
2069
2090
|
"""
|
|
@@ -2073,8 +2094,8 @@ class RedshiftClient(BaseClient):
|
|
|
2073
2094
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2074
2095
|
"""
|
|
2075
2096
|
|
|
2076
|
-
@overload
|
|
2077
|
-
def get_paginator(
|
|
2097
|
+
@overload # type: ignore[override]
|
|
2098
|
+
def get_paginator( # type: ignore[override]
|
|
2078
2099
|
self, operation_name: Literal["describe_default_cluster_parameters"]
|
|
2079
2100
|
) -> DescribeDefaultClusterParametersPaginator:
|
|
2080
2101
|
"""
|
|
@@ -2084,8 +2105,8 @@ class RedshiftClient(BaseClient):
|
|
|
2084
2105
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2085
2106
|
"""
|
|
2086
2107
|
|
|
2087
|
-
@overload
|
|
2088
|
-
def get_paginator(
|
|
2108
|
+
@overload # type: ignore[override]
|
|
2109
|
+
def get_paginator( # type: ignore[override]
|
|
2089
2110
|
self, operation_name: Literal["describe_endpoint_access"]
|
|
2090
2111
|
) -> DescribeEndpointAccessPaginator:
|
|
2091
2112
|
"""
|
|
@@ -2095,8 +2116,8 @@ class RedshiftClient(BaseClient):
|
|
|
2095
2116
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2096
2117
|
"""
|
|
2097
2118
|
|
|
2098
|
-
@overload
|
|
2099
|
-
def get_paginator(
|
|
2119
|
+
@overload # type: ignore[override]
|
|
2120
|
+
def get_paginator( # type: ignore[override]
|
|
2100
2121
|
self, operation_name: Literal["describe_endpoint_authorization"]
|
|
2101
2122
|
) -> DescribeEndpointAuthorizationPaginator:
|
|
2102
2123
|
"""
|
|
@@ -2106,8 +2127,8 @@ class RedshiftClient(BaseClient):
|
|
|
2106
2127
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2107
2128
|
"""
|
|
2108
2129
|
|
|
2109
|
-
@overload
|
|
2110
|
-
def get_paginator(
|
|
2130
|
+
@overload # type: ignore[override]
|
|
2131
|
+
def get_paginator( # type: ignore[override]
|
|
2111
2132
|
self, operation_name: Literal["describe_event_subscriptions"]
|
|
2112
2133
|
) -> DescribeEventSubscriptionsPaginator:
|
|
2113
2134
|
"""
|
|
@@ -2117,8 +2138,10 @@ class RedshiftClient(BaseClient):
|
|
|
2117
2138
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2118
2139
|
"""
|
|
2119
2140
|
|
|
2120
|
-
@overload
|
|
2121
|
-
def get_paginator(
|
|
2141
|
+
@overload # type: ignore[override]
|
|
2142
|
+
def get_paginator( # type: ignore[override]
|
|
2143
|
+
self, operation_name: Literal["describe_events"]
|
|
2144
|
+
) -> DescribeEventsPaginator:
|
|
2122
2145
|
"""
|
|
2123
2146
|
Create a paginator for an operation.
|
|
2124
2147
|
|
|
@@ -2126,8 +2149,8 @@ class RedshiftClient(BaseClient):
|
|
|
2126
2149
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2127
2150
|
"""
|
|
2128
2151
|
|
|
2129
|
-
@overload
|
|
2130
|
-
def get_paginator(
|
|
2152
|
+
@overload # type: ignore[override]
|
|
2153
|
+
def get_paginator( # type: ignore[override]
|
|
2131
2154
|
self, operation_name: Literal["describe_hsm_client_certificates"]
|
|
2132
2155
|
) -> DescribeHsmClientCertificatesPaginator:
|
|
2133
2156
|
"""
|
|
@@ -2137,8 +2160,8 @@ class RedshiftClient(BaseClient):
|
|
|
2137
2160
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2138
2161
|
"""
|
|
2139
2162
|
|
|
2140
|
-
@overload
|
|
2141
|
-
def get_paginator(
|
|
2163
|
+
@overload # type: ignore[override]
|
|
2164
|
+
def get_paginator( # type: ignore[override]
|
|
2142
2165
|
self, operation_name: Literal["describe_hsm_configurations"]
|
|
2143
2166
|
) -> DescribeHsmConfigurationsPaginator:
|
|
2144
2167
|
"""
|
|
@@ -2148,8 +2171,8 @@ class RedshiftClient(BaseClient):
|
|
|
2148
2171
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2149
2172
|
"""
|
|
2150
2173
|
|
|
2151
|
-
@overload
|
|
2152
|
-
def get_paginator(
|
|
2174
|
+
@overload # type: ignore[override]
|
|
2175
|
+
def get_paginator( # type: ignore[override]
|
|
2153
2176
|
self, operation_name: Literal["describe_inbound_integrations"]
|
|
2154
2177
|
) -> DescribeInboundIntegrationsPaginator:
|
|
2155
2178
|
"""
|
|
@@ -2159,8 +2182,8 @@ class RedshiftClient(BaseClient):
|
|
|
2159
2182
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2160
2183
|
"""
|
|
2161
2184
|
|
|
2162
|
-
@overload
|
|
2163
|
-
def get_paginator(
|
|
2185
|
+
@overload # type: ignore[override]
|
|
2186
|
+
def get_paginator( # type: ignore[override]
|
|
2164
2187
|
self, operation_name: Literal["describe_integrations"]
|
|
2165
2188
|
) -> DescribeIntegrationsPaginator:
|
|
2166
2189
|
"""
|
|
@@ -2170,8 +2193,8 @@ class RedshiftClient(BaseClient):
|
|
|
2170
2193
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2171
2194
|
"""
|
|
2172
2195
|
|
|
2173
|
-
@overload
|
|
2174
|
-
def get_paginator(
|
|
2196
|
+
@overload # type: ignore[override]
|
|
2197
|
+
def get_paginator( # type: ignore[override]
|
|
2175
2198
|
self, operation_name: Literal["describe_node_configuration_options"]
|
|
2176
2199
|
) -> DescribeNodeConfigurationOptionsPaginator:
|
|
2177
2200
|
"""
|
|
@@ -2181,8 +2204,8 @@ class RedshiftClient(BaseClient):
|
|
|
2181
2204
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2182
2205
|
"""
|
|
2183
2206
|
|
|
2184
|
-
@overload
|
|
2185
|
-
def get_paginator(
|
|
2207
|
+
@overload # type: ignore[override]
|
|
2208
|
+
def get_paginator( # type: ignore[override]
|
|
2186
2209
|
self, operation_name: Literal["describe_orderable_cluster_options"]
|
|
2187
2210
|
) -> DescribeOrderableClusterOptionsPaginator:
|
|
2188
2211
|
"""
|
|
@@ -2192,8 +2215,8 @@ class RedshiftClient(BaseClient):
|
|
|
2192
2215
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2193
2216
|
"""
|
|
2194
2217
|
|
|
2195
|
-
@overload
|
|
2196
|
-
def get_paginator(
|
|
2218
|
+
@overload # type: ignore[override]
|
|
2219
|
+
def get_paginator( # type: ignore[override]
|
|
2197
2220
|
self, operation_name: Literal["describe_redshift_idc_applications"]
|
|
2198
2221
|
) -> DescribeRedshiftIdcApplicationsPaginator:
|
|
2199
2222
|
"""
|
|
@@ -2203,8 +2226,8 @@ class RedshiftClient(BaseClient):
|
|
|
2203
2226
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2204
2227
|
"""
|
|
2205
2228
|
|
|
2206
|
-
@overload
|
|
2207
|
-
def get_paginator(
|
|
2229
|
+
@overload # type: ignore[override]
|
|
2230
|
+
def get_paginator( # type: ignore[override]
|
|
2208
2231
|
self, operation_name: Literal["describe_reserved_node_exchange_status"]
|
|
2209
2232
|
) -> DescribeReservedNodeExchangeStatusPaginator:
|
|
2210
2233
|
"""
|
|
@@ -2214,8 +2237,8 @@ class RedshiftClient(BaseClient):
|
|
|
2214
2237
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2215
2238
|
"""
|
|
2216
2239
|
|
|
2217
|
-
@overload
|
|
2218
|
-
def get_paginator(
|
|
2240
|
+
@overload # type: ignore[override]
|
|
2241
|
+
def get_paginator( # type: ignore[override]
|
|
2219
2242
|
self, operation_name: Literal["describe_reserved_node_offerings"]
|
|
2220
2243
|
) -> DescribeReservedNodeOfferingsPaginator:
|
|
2221
2244
|
"""
|
|
@@ -2225,8 +2248,8 @@ class RedshiftClient(BaseClient):
|
|
|
2225
2248
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2226
2249
|
"""
|
|
2227
2250
|
|
|
2228
|
-
@overload
|
|
2229
|
-
def get_paginator(
|
|
2251
|
+
@overload # type: ignore[override]
|
|
2252
|
+
def get_paginator( # type: ignore[override]
|
|
2230
2253
|
self, operation_name: Literal["describe_reserved_nodes"]
|
|
2231
2254
|
) -> DescribeReservedNodesPaginator:
|
|
2232
2255
|
"""
|
|
@@ -2236,8 +2259,8 @@ class RedshiftClient(BaseClient):
|
|
|
2236
2259
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2237
2260
|
"""
|
|
2238
2261
|
|
|
2239
|
-
@overload
|
|
2240
|
-
def get_paginator(
|
|
2262
|
+
@overload # type: ignore[override]
|
|
2263
|
+
def get_paginator( # type: ignore[override]
|
|
2241
2264
|
self, operation_name: Literal["describe_scheduled_actions"]
|
|
2242
2265
|
) -> DescribeScheduledActionsPaginator:
|
|
2243
2266
|
"""
|
|
@@ -2247,8 +2270,8 @@ class RedshiftClient(BaseClient):
|
|
|
2247
2270
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2248
2271
|
"""
|
|
2249
2272
|
|
|
2250
|
-
@overload
|
|
2251
|
-
def get_paginator(
|
|
2273
|
+
@overload # type: ignore[override]
|
|
2274
|
+
def get_paginator( # type: ignore[override]
|
|
2252
2275
|
self, operation_name: Literal["describe_snapshot_copy_grants"]
|
|
2253
2276
|
) -> DescribeSnapshotCopyGrantsPaginator:
|
|
2254
2277
|
"""
|
|
@@ -2258,8 +2281,8 @@ class RedshiftClient(BaseClient):
|
|
|
2258
2281
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2259
2282
|
"""
|
|
2260
2283
|
|
|
2261
|
-
@overload
|
|
2262
|
-
def get_paginator(
|
|
2284
|
+
@overload # type: ignore[override]
|
|
2285
|
+
def get_paginator( # type: ignore[override]
|
|
2263
2286
|
self, operation_name: Literal["describe_snapshot_schedules"]
|
|
2264
2287
|
) -> DescribeSnapshotSchedulesPaginator:
|
|
2265
2288
|
"""
|
|
@@ -2269,8 +2292,8 @@ class RedshiftClient(BaseClient):
|
|
|
2269
2292
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2270
2293
|
"""
|
|
2271
2294
|
|
|
2272
|
-
@overload
|
|
2273
|
-
def get_paginator(
|
|
2295
|
+
@overload # type: ignore[override]
|
|
2296
|
+
def get_paginator( # type: ignore[override]
|
|
2274
2297
|
self, operation_name: Literal["describe_table_restore_status"]
|
|
2275
2298
|
) -> DescribeTableRestoreStatusPaginator:
|
|
2276
2299
|
"""
|
|
@@ -2280,8 +2303,10 @@ class RedshiftClient(BaseClient):
|
|
|
2280
2303
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2281
2304
|
"""
|
|
2282
2305
|
|
|
2283
|
-
@overload
|
|
2284
|
-
def get_paginator(
|
|
2306
|
+
@overload # type: ignore[override]
|
|
2307
|
+
def get_paginator( # type: ignore[override]
|
|
2308
|
+
self, operation_name: Literal["describe_tags"]
|
|
2309
|
+
) -> DescribeTagsPaginator:
|
|
2285
2310
|
"""
|
|
2286
2311
|
Create a paginator for an operation.
|
|
2287
2312
|
|
|
@@ -2289,8 +2314,8 @@ class RedshiftClient(BaseClient):
|
|
|
2289
2314
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2290
2315
|
"""
|
|
2291
2316
|
|
|
2292
|
-
@overload
|
|
2293
|
-
def get_paginator(
|
|
2317
|
+
@overload # type: ignore[override]
|
|
2318
|
+
def get_paginator( # type: ignore[override]
|
|
2294
2319
|
self, operation_name: Literal["describe_usage_limits"]
|
|
2295
2320
|
) -> DescribeUsageLimitsPaginator:
|
|
2296
2321
|
"""
|
|
@@ -2300,8 +2325,8 @@ class RedshiftClient(BaseClient):
|
|
|
2300
2325
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2301
2326
|
"""
|
|
2302
2327
|
|
|
2303
|
-
@overload
|
|
2304
|
-
def get_paginator(
|
|
2328
|
+
@overload # type: ignore[override]
|
|
2329
|
+
def get_paginator( # type: ignore[override]
|
|
2305
2330
|
self, operation_name: Literal["get_reserved_node_exchange_configuration_options"]
|
|
2306
2331
|
) -> GetReservedNodeExchangeConfigurationOptionsPaginator:
|
|
2307
2332
|
"""
|
|
@@ -2311,8 +2336,8 @@ class RedshiftClient(BaseClient):
|
|
|
2311
2336
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2312
2337
|
"""
|
|
2313
2338
|
|
|
2314
|
-
@overload
|
|
2315
|
-
def get_paginator(
|
|
2339
|
+
@overload # type: ignore[override]
|
|
2340
|
+
def get_paginator( # type: ignore[override]
|
|
2316
2341
|
self, operation_name: Literal["get_reserved_node_exchange_offerings"]
|
|
2317
2342
|
) -> GetReservedNodeExchangeOfferingsPaginator:
|
|
2318
2343
|
"""
|
|
@@ -2322,8 +2347,8 @@ class RedshiftClient(BaseClient):
|
|
|
2322
2347
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2323
2348
|
"""
|
|
2324
2349
|
|
|
2325
|
-
@overload
|
|
2326
|
-
def get_paginator(
|
|
2350
|
+
@overload # type: ignore[override]
|
|
2351
|
+
def get_paginator( # type: ignore[override]
|
|
2327
2352
|
self, operation_name: Literal["list_recommendations"]
|
|
2328
2353
|
) -> ListRecommendationsPaginator:
|
|
2329
2354
|
"""
|
|
@@ -2333,8 +2358,10 @@ class RedshiftClient(BaseClient):
|
|
|
2333
2358
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2334
2359
|
"""
|
|
2335
2360
|
|
|
2336
|
-
@overload
|
|
2337
|
-
def get_waiter(
|
|
2361
|
+
@overload # type: ignore[override]
|
|
2362
|
+
def get_waiter( # type: ignore[override]
|
|
2363
|
+
self, waiter_name: Literal["cluster_available"]
|
|
2364
|
+
) -> ClusterAvailableWaiter:
|
|
2338
2365
|
"""
|
|
2339
2366
|
Returns an object that can wait for some condition.
|
|
2340
2367
|
|
|
@@ -2342,8 +2369,10 @@ class RedshiftClient(BaseClient):
|
|
|
2342
2369
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2343
2370
|
"""
|
|
2344
2371
|
|
|
2345
|
-
@overload
|
|
2346
|
-
def get_waiter(
|
|
2372
|
+
@overload # type: ignore[override]
|
|
2373
|
+
def get_waiter( # type: ignore[override]
|
|
2374
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
2375
|
+
) -> ClusterDeletedWaiter:
|
|
2347
2376
|
"""
|
|
2348
2377
|
Returns an object that can wait for some condition.
|
|
2349
2378
|
|
|
@@ -2351,8 +2380,10 @@ class RedshiftClient(BaseClient):
|
|
|
2351
2380
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2352
2381
|
"""
|
|
2353
2382
|
|
|
2354
|
-
@overload
|
|
2355
|
-
def get_waiter(
|
|
2383
|
+
@overload # type: ignore[override]
|
|
2384
|
+
def get_waiter( # type: ignore[override]
|
|
2385
|
+
self, waiter_name: Literal["cluster_restored"]
|
|
2386
|
+
) -> ClusterRestoredWaiter:
|
|
2356
2387
|
"""
|
|
2357
2388
|
Returns an object that can wait for some condition.
|
|
2358
2389
|
|
|
@@ -2360,8 +2391,10 @@ class RedshiftClient(BaseClient):
|
|
|
2360
2391
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2361
2392
|
"""
|
|
2362
2393
|
|
|
2363
|
-
@overload
|
|
2364
|
-
def get_waiter(
|
|
2394
|
+
@overload # type: ignore[override]
|
|
2395
|
+
def get_waiter( # type: ignore[override]
|
|
2396
|
+
self, waiter_name: Literal["snapshot_available"]
|
|
2397
|
+
) -> SnapshotAvailableWaiter:
|
|
2365
2398
|
"""
|
|
2366
2399
|
Returns an object that can wait for some condition.
|
|
2367
2400
|
|