types-boto3-redshift 1.35.74__py3-none-any.whl → 1.35.97__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 +6 -4
- types_boto3_redshift/literals.pyi +6 -4
- 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.97.dist-info}/LICENSE +1 -1
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.97.dist-info}/METADATA +35 -9
- types_boto3_redshift-1.35.97.dist-info/RECORD +20 -0
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.97.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.97.dist-info}/top_level.txt +0 -0
types_boto3_redshift/client.pyi
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:
|
|
@@ -319,14 +328,7 @@ else:
|
|
|
319
328
|
|
|
320
329
|
__all__ = ("RedshiftClient",)
|
|
321
330
|
|
|
322
|
-
class
|
|
323
|
-
MSG_TEMPLATE: str
|
|
324
|
-
|
|
325
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
326
|
-
self.response: Dict[str, Any]
|
|
327
|
-
self.operation_name: str
|
|
328
|
-
|
|
329
|
-
class Exceptions:
|
|
331
|
+
class Exceptions(BaseClientExceptions):
|
|
330
332
|
AccessToClusterDeniedFault: Type[BotocoreClientError]
|
|
331
333
|
AccessToSnapshotDeniedFault: Type[BotocoreClientError]
|
|
332
334
|
AuthenticationProfileAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -506,12 +508,6 @@ class RedshiftClient(BaseClient):
|
|
|
506
508
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#generate_presigned_url)
|
|
507
509
|
"""
|
|
508
510
|
|
|
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
511
|
def accept_reserved_node_exchange(
|
|
516
512
|
self, **kwargs: Unpack[AcceptReservedNodeExchangeInputMessageRequestTypeDef]
|
|
517
513
|
) -> AcceptReservedNodeExchangeOutputMessageTypeDef:
|
|
@@ -1952,8 +1948,8 @@ class RedshiftClient(BaseClient):
|
|
|
1952
1948
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#update_partner_status)
|
|
1953
1949
|
"""
|
|
1954
1950
|
|
|
1955
|
-
@overload
|
|
1956
|
-
def get_paginator(
|
|
1951
|
+
@overload # type: ignore[override]
|
|
1952
|
+
def get_paginator( # type: ignore[override]
|
|
1957
1953
|
self, operation_name: Literal["describe_cluster_db_revisions"]
|
|
1958
1954
|
) -> DescribeClusterDbRevisionsPaginator:
|
|
1959
1955
|
"""
|
|
@@ -1963,8 +1959,8 @@ class RedshiftClient(BaseClient):
|
|
|
1963
1959
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1964
1960
|
"""
|
|
1965
1961
|
|
|
1966
|
-
@overload
|
|
1967
|
-
def get_paginator(
|
|
1962
|
+
@overload # type: ignore[override]
|
|
1963
|
+
def get_paginator( # type: ignore[override]
|
|
1968
1964
|
self, operation_name: Literal["describe_cluster_parameter_groups"]
|
|
1969
1965
|
) -> DescribeClusterParameterGroupsPaginator:
|
|
1970
1966
|
"""
|
|
@@ -1974,8 +1970,8 @@ class RedshiftClient(BaseClient):
|
|
|
1974
1970
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1975
1971
|
"""
|
|
1976
1972
|
|
|
1977
|
-
@overload
|
|
1978
|
-
def get_paginator(
|
|
1973
|
+
@overload # type: ignore[override]
|
|
1974
|
+
def get_paginator( # type: ignore[override]
|
|
1979
1975
|
self, operation_name: Literal["describe_cluster_parameters"]
|
|
1980
1976
|
) -> DescribeClusterParametersPaginator:
|
|
1981
1977
|
"""
|
|
@@ -1985,8 +1981,8 @@ class RedshiftClient(BaseClient):
|
|
|
1985
1981
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1986
1982
|
"""
|
|
1987
1983
|
|
|
1988
|
-
@overload
|
|
1989
|
-
def get_paginator(
|
|
1984
|
+
@overload # type: ignore[override]
|
|
1985
|
+
def get_paginator( # type: ignore[override]
|
|
1990
1986
|
self, operation_name: Literal["describe_cluster_security_groups"]
|
|
1991
1987
|
) -> DescribeClusterSecurityGroupsPaginator:
|
|
1992
1988
|
"""
|
|
@@ -1996,8 +1992,8 @@ class RedshiftClient(BaseClient):
|
|
|
1996
1992
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1997
1993
|
"""
|
|
1998
1994
|
|
|
1999
|
-
@overload
|
|
2000
|
-
def get_paginator(
|
|
1995
|
+
@overload # type: ignore[override]
|
|
1996
|
+
def get_paginator( # type: ignore[override]
|
|
2001
1997
|
self, operation_name: Literal["describe_cluster_snapshots"]
|
|
2002
1998
|
) -> DescribeClusterSnapshotsPaginator:
|
|
2003
1999
|
"""
|
|
@@ -2007,8 +2003,8 @@ class RedshiftClient(BaseClient):
|
|
|
2007
2003
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2008
2004
|
"""
|
|
2009
2005
|
|
|
2010
|
-
@overload
|
|
2011
|
-
def get_paginator(
|
|
2006
|
+
@overload # type: ignore[override]
|
|
2007
|
+
def get_paginator( # type: ignore[override]
|
|
2012
2008
|
self, operation_name: Literal["describe_cluster_subnet_groups"]
|
|
2013
2009
|
) -> DescribeClusterSubnetGroupsPaginator:
|
|
2014
2010
|
"""
|
|
@@ -2018,8 +2014,8 @@ class RedshiftClient(BaseClient):
|
|
|
2018
2014
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2019
2015
|
"""
|
|
2020
2016
|
|
|
2021
|
-
@overload
|
|
2022
|
-
def get_paginator(
|
|
2017
|
+
@overload # type: ignore[override]
|
|
2018
|
+
def get_paginator( # type: ignore[override]
|
|
2023
2019
|
self, operation_name: Literal["describe_cluster_tracks"]
|
|
2024
2020
|
) -> DescribeClusterTracksPaginator:
|
|
2025
2021
|
"""
|
|
@@ -2029,8 +2025,8 @@ class RedshiftClient(BaseClient):
|
|
|
2029
2025
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2030
2026
|
"""
|
|
2031
2027
|
|
|
2032
|
-
@overload
|
|
2033
|
-
def get_paginator(
|
|
2028
|
+
@overload # type: ignore[override]
|
|
2029
|
+
def get_paginator( # type: ignore[override]
|
|
2034
2030
|
self, operation_name: Literal["describe_cluster_versions"]
|
|
2035
2031
|
) -> DescribeClusterVersionsPaginator:
|
|
2036
2032
|
"""
|
|
@@ -2040,8 +2036,8 @@ class RedshiftClient(BaseClient):
|
|
|
2040
2036
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2041
2037
|
"""
|
|
2042
2038
|
|
|
2043
|
-
@overload
|
|
2044
|
-
def get_paginator(
|
|
2039
|
+
@overload # type: ignore[override]
|
|
2040
|
+
def get_paginator( # type: ignore[override]
|
|
2045
2041
|
self, operation_name: Literal["describe_clusters"]
|
|
2046
2042
|
) -> DescribeClustersPaginator:
|
|
2047
2043
|
"""
|
|
@@ -2051,8 +2047,8 @@ class RedshiftClient(BaseClient):
|
|
|
2051
2047
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2052
2048
|
"""
|
|
2053
2049
|
|
|
2054
|
-
@overload
|
|
2055
|
-
def get_paginator(
|
|
2050
|
+
@overload # type: ignore[override]
|
|
2051
|
+
def get_paginator( # type: ignore[override]
|
|
2056
2052
|
self, operation_name: Literal["describe_custom_domain_associations"]
|
|
2057
2053
|
) -> DescribeCustomDomainAssociationsPaginator:
|
|
2058
2054
|
"""
|
|
@@ -2062,8 +2058,8 @@ class RedshiftClient(BaseClient):
|
|
|
2062
2058
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2063
2059
|
"""
|
|
2064
2060
|
|
|
2065
|
-
@overload
|
|
2066
|
-
def get_paginator(
|
|
2061
|
+
@overload # type: ignore[override]
|
|
2062
|
+
def get_paginator( # type: ignore[override]
|
|
2067
2063
|
self, operation_name: Literal["describe_data_shares_for_consumer"]
|
|
2068
2064
|
) -> DescribeDataSharesForConsumerPaginator:
|
|
2069
2065
|
"""
|
|
@@ -2073,8 +2069,8 @@ class RedshiftClient(BaseClient):
|
|
|
2073
2069
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2074
2070
|
"""
|
|
2075
2071
|
|
|
2076
|
-
@overload
|
|
2077
|
-
def get_paginator(
|
|
2072
|
+
@overload # type: ignore[override]
|
|
2073
|
+
def get_paginator( # type: ignore[override]
|
|
2078
2074
|
self, operation_name: Literal["describe_data_shares_for_producer"]
|
|
2079
2075
|
) -> DescribeDataSharesForProducerPaginator:
|
|
2080
2076
|
"""
|
|
@@ -2084,8 +2080,8 @@ class RedshiftClient(BaseClient):
|
|
|
2084
2080
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2085
2081
|
"""
|
|
2086
2082
|
|
|
2087
|
-
@overload
|
|
2088
|
-
def get_paginator(
|
|
2083
|
+
@overload # type: ignore[override]
|
|
2084
|
+
def get_paginator( # type: ignore[override]
|
|
2089
2085
|
self, operation_name: Literal["describe_data_shares"]
|
|
2090
2086
|
) -> DescribeDataSharesPaginator:
|
|
2091
2087
|
"""
|
|
@@ -2095,8 +2091,8 @@ class RedshiftClient(BaseClient):
|
|
|
2095
2091
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2096
2092
|
"""
|
|
2097
2093
|
|
|
2098
|
-
@overload
|
|
2099
|
-
def get_paginator(
|
|
2094
|
+
@overload # type: ignore[override]
|
|
2095
|
+
def get_paginator( # type: ignore[override]
|
|
2100
2096
|
self, operation_name: Literal["describe_default_cluster_parameters"]
|
|
2101
2097
|
) -> DescribeDefaultClusterParametersPaginator:
|
|
2102
2098
|
"""
|
|
@@ -2106,8 +2102,8 @@ class RedshiftClient(BaseClient):
|
|
|
2106
2102
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2107
2103
|
"""
|
|
2108
2104
|
|
|
2109
|
-
@overload
|
|
2110
|
-
def get_paginator(
|
|
2105
|
+
@overload # type: ignore[override]
|
|
2106
|
+
def get_paginator( # type: ignore[override]
|
|
2111
2107
|
self, operation_name: Literal["describe_endpoint_access"]
|
|
2112
2108
|
) -> DescribeEndpointAccessPaginator:
|
|
2113
2109
|
"""
|
|
@@ -2117,8 +2113,8 @@ class RedshiftClient(BaseClient):
|
|
|
2117
2113
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2118
2114
|
"""
|
|
2119
2115
|
|
|
2120
|
-
@overload
|
|
2121
|
-
def get_paginator(
|
|
2116
|
+
@overload # type: ignore[override]
|
|
2117
|
+
def get_paginator( # type: ignore[override]
|
|
2122
2118
|
self, operation_name: Literal["describe_endpoint_authorization"]
|
|
2123
2119
|
) -> DescribeEndpointAuthorizationPaginator:
|
|
2124
2120
|
"""
|
|
@@ -2128,8 +2124,8 @@ class RedshiftClient(BaseClient):
|
|
|
2128
2124
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2129
2125
|
"""
|
|
2130
2126
|
|
|
2131
|
-
@overload
|
|
2132
|
-
def get_paginator(
|
|
2127
|
+
@overload # type: ignore[override]
|
|
2128
|
+
def get_paginator( # type: ignore[override]
|
|
2133
2129
|
self, operation_name: Literal["describe_event_subscriptions"]
|
|
2134
2130
|
) -> DescribeEventSubscriptionsPaginator:
|
|
2135
2131
|
"""
|
|
@@ -2139,8 +2135,10 @@ class RedshiftClient(BaseClient):
|
|
|
2139
2135
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2140
2136
|
"""
|
|
2141
2137
|
|
|
2142
|
-
@overload
|
|
2143
|
-
def get_paginator(
|
|
2138
|
+
@overload # type: ignore[override]
|
|
2139
|
+
def get_paginator( # type: ignore[override]
|
|
2140
|
+
self, operation_name: Literal["describe_events"]
|
|
2141
|
+
) -> DescribeEventsPaginator:
|
|
2144
2142
|
"""
|
|
2145
2143
|
Create a paginator for an operation.
|
|
2146
2144
|
|
|
@@ -2148,8 +2146,8 @@ class RedshiftClient(BaseClient):
|
|
|
2148
2146
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2149
2147
|
"""
|
|
2150
2148
|
|
|
2151
|
-
@overload
|
|
2152
|
-
def get_paginator(
|
|
2149
|
+
@overload # type: ignore[override]
|
|
2150
|
+
def get_paginator( # type: ignore[override]
|
|
2153
2151
|
self, operation_name: Literal["describe_hsm_client_certificates"]
|
|
2154
2152
|
) -> DescribeHsmClientCertificatesPaginator:
|
|
2155
2153
|
"""
|
|
@@ -2159,8 +2157,8 @@ class RedshiftClient(BaseClient):
|
|
|
2159
2157
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2160
2158
|
"""
|
|
2161
2159
|
|
|
2162
|
-
@overload
|
|
2163
|
-
def get_paginator(
|
|
2160
|
+
@overload # type: ignore[override]
|
|
2161
|
+
def get_paginator( # type: ignore[override]
|
|
2164
2162
|
self, operation_name: Literal["describe_hsm_configurations"]
|
|
2165
2163
|
) -> DescribeHsmConfigurationsPaginator:
|
|
2166
2164
|
"""
|
|
@@ -2170,8 +2168,8 @@ class RedshiftClient(BaseClient):
|
|
|
2170
2168
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2171
2169
|
"""
|
|
2172
2170
|
|
|
2173
|
-
@overload
|
|
2174
|
-
def get_paginator(
|
|
2171
|
+
@overload # type: ignore[override]
|
|
2172
|
+
def get_paginator( # type: ignore[override]
|
|
2175
2173
|
self, operation_name: Literal["describe_inbound_integrations"]
|
|
2176
2174
|
) -> DescribeInboundIntegrationsPaginator:
|
|
2177
2175
|
"""
|
|
@@ -2181,8 +2179,8 @@ class RedshiftClient(BaseClient):
|
|
|
2181
2179
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2182
2180
|
"""
|
|
2183
2181
|
|
|
2184
|
-
@overload
|
|
2185
|
-
def get_paginator(
|
|
2182
|
+
@overload # type: ignore[override]
|
|
2183
|
+
def get_paginator( # type: ignore[override]
|
|
2186
2184
|
self, operation_name: Literal["describe_integrations"]
|
|
2187
2185
|
) -> DescribeIntegrationsPaginator:
|
|
2188
2186
|
"""
|
|
@@ -2192,8 +2190,8 @@ class RedshiftClient(BaseClient):
|
|
|
2192
2190
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2193
2191
|
"""
|
|
2194
2192
|
|
|
2195
|
-
@overload
|
|
2196
|
-
def get_paginator(
|
|
2193
|
+
@overload # type: ignore[override]
|
|
2194
|
+
def get_paginator( # type: ignore[override]
|
|
2197
2195
|
self, operation_name: Literal["describe_node_configuration_options"]
|
|
2198
2196
|
) -> DescribeNodeConfigurationOptionsPaginator:
|
|
2199
2197
|
"""
|
|
@@ -2203,8 +2201,8 @@ class RedshiftClient(BaseClient):
|
|
|
2203
2201
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2204
2202
|
"""
|
|
2205
2203
|
|
|
2206
|
-
@overload
|
|
2207
|
-
def get_paginator(
|
|
2204
|
+
@overload # type: ignore[override]
|
|
2205
|
+
def get_paginator( # type: ignore[override]
|
|
2208
2206
|
self, operation_name: Literal["describe_orderable_cluster_options"]
|
|
2209
2207
|
) -> DescribeOrderableClusterOptionsPaginator:
|
|
2210
2208
|
"""
|
|
@@ -2214,8 +2212,8 @@ class RedshiftClient(BaseClient):
|
|
|
2214
2212
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2215
2213
|
"""
|
|
2216
2214
|
|
|
2217
|
-
@overload
|
|
2218
|
-
def get_paginator(
|
|
2215
|
+
@overload # type: ignore[override]
|
|
2216
|
+
def get_paginator( # type: ignore[override]
|
|
2219
2217
|
self, operation_name: Literal["describe_redshift_idc_applications"]
|
|
2220
2218
|
) -> DescribeRedshiftIdcApplicationsPaginator:
|
|
2221
2219
|
"""
|
|
@@ -2225,8 +2223,8 @@ class RedshiftClient(BaseClient):
|
|
|
2225
2223
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2226
2224
|
"""
|
|
2227
2225
|
|
|
2228
|
-
@overload
|
|
2229
|
-
def get_paginator(
|
|
2226
|
+
@overload # type: ignore[override]
|
|
2227
|
+
def get_paginator( # type: ignore[override]
|
|
2230
2228
|
self, operation_name: Literal["describe_reserved_node_exchange_status"]
|
|
2231
2229
|
) -> DescribeReservedNodeExchangeStatusPaginator:
|
|
2232
2230
|
"""
|
|
@@ -2236,8 +2234,8 @@ class RedshiftClient(BaseClient):
|
|
|
2236
2234
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2237
2235
|
"""
|
|
2238
2236
|
|
|
2239
|
-
@overload
|
|
2240
|
-
def get_paginator(
|
|
2237
|
+
@overload # type: ignore[override]
|
|
2238
|
+
def get_paginator( # type: ignore[override]
|
|
2241
2239
|
self, operation_name: Literal["describe_reserved_node_offerings"]
|
|
2242
2240
|
) -> DescribeReservedNodeOfferingsPaginator:
|
|
2243
2241
|
"""
|
|
@@ -2247,8 +2245,8 @@ class RedshiftClient(BaseClient):
|
|
|
2247
2245
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2248
2246
|
"""
|
|
2249
2247
|
|
|
2250
|
-
@overload
|
|
2251
|
-
def get_paginator(
|
|
2248
|
+
@overload # type: ignore[override]
|
|
2249
|
+
def get_paginator( # type: ignore[override]
|
|
2252
2250
|
self, operation_name: Literal["describe_reserved_nodes"]
|
|
2253
2251
|
) -> DescribeReservedNodesPaginator:
|
|
2254
2252
|
"""
|
|
@@ -2258,8 +2256,8 @@ class RedshiftClient(BaseClient):
|
|
|
2258
2256
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2259
2257
|
"""
|
|
2260
2258
|
|
|
2261
|
-
@overload
|
|
2262
|
-
def get_paginator(
|
|
2259
|
+
@overload # type: ignore[override]
|
|
2260
|
+
def get_paginator( # type: ignore[override]
|
|
2263
2261
|
self, operation_name: Literal["describe_scheduled_actions"]
|
|
2264
2262
|
) -> DescribeScheduledActionsPaginator:
|
|
2265
2263
|
"""
|
|
@@ -2269,8 +2267,8 @@ class RedshiftClient(BaseClient):
|
|
|
2269
2267
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2270
2268
|
"""
|
|
2271
2269
|
|
|
2272
|
-
@overload
|
|
2273
|
-
def get_paginator(
|
|
2270
|
+
@overload # type: ignore[override]
|
|
2271
|
+
def get_paginator( # type: ignore[override]
|
|
2274
2272
|
self, operation_name: Literal["describe_snapshot_copy_grants"]
|
|
2275
2273
|
) -> DescribeSnapshotCopyGrantsPaginator:
|
|
2276
2274
|
"""
|
|
@@ -2280,8 +2278,8 @@ class RedshiftClient(BaseClient):
|
|
|
2280
2278
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2281
2279
|
"""
|
|
2282
2280
|
|
|
2283
|
-
@overload
|
|
2284
|
-
def get_paginator(
|
|
2281
|
+
@overload # type: ignore[override]
|
|
2282
|
+
def get_paginator( # type: ignore[override]
|
|
2285
2283
|
self, operation_name: Literal["describe_snapshot_schedules"]
|
|
2286
2284
|
) -> DescribeSnapshotSchedulesPaginator:
|
|
2287
2285
|
"""
|
|
@@ -2291,8 +2289,8 @@ class RedshiftClient(BaseClient):
|
|
|
2291
2289
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2292
2290
|
"""
|
|
2293
2291
|
|
|
2294
|
-
@overload
|
|
2295
|
-
def get_paginator(
|
|
2292
|
+
@overload # type: ignore[override]
|
|
2293
|
+
def get_paginator( # type: ignore[override]
|
|
2296
2294
|
self, operation_name: Literal["describe_table_restore_status"]
|
|
2297
2295
|
) -> DescribeTableRestoreStatusPaginator:
|
|
2298
2296
|
"""
|
|
@@ -2302,8 +2300,10 @@ class RedshiftClient(BaseClient):
|
|
|
2302
2300
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2303
2301
|
"""
|
|
2304
2302
|
|
|
2305
|
-
@overload
|
|
2306
|
-
def get_paginator(
|
|
2303
|
+
@overload # type: ignore[override]
|
|
2304
|
+
def get_paginator( # type: ignore[override]
|
|
2305
|
+
self, operation_name: Literal["describe_tags"]
|
|
2306
|
+
) -> DescribeTagsPaginator:
|
|
2307
2307
|
"""
|
|
2308
2308
|
Create a paginator for an operation.
|
|
2309
2309
|
|
|
@@ -2311,8 +2311,8 @@ class RedshiftClient(BaseClient):
|
|
|
2311
2311
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2312
2312
|
"""
|
|
2313
2313
|
|
|
2314
|
-
@overload
|
|
2315
|
-
def get_paginator(
|
|
2314
|
+
@overload # type: ignore[override]
|
|
2315
|
+
def get_paginator( # type: ignore[override]
|
|
2316
2316
|
self, operation_name: Literal["describe_usage_limits"]
|
|
2317
2317
|
) -> DescribeUsageLimitsPaginator:
|
|
2318
2318
|
"""
|
|
@@ -2322,8 +2322,8 @@ class RedshiftClient(BaseClient):
|
|
|
2322
2322
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2323
2323
|
"""
|
|
2324
2324
|
|
|
2325
|
-
@overload
|
|
2326
|
-
def get_paginator(
|
|
2325
|
+
@overload # type: ignore[override]
|
|
2326
|
+
def get_paginator( # type: ignore[override]
|
|
2327
2327
|
self, operation_name: Literal["get_reserved_node_exchange_configuration_options"]
|
|
2328
2328
|
) -> GetReservedNodeExchangeConfigurationOptionsPaginator:
|
|
2329
2329
|
"""
|
|
@@ -2333,8 +2333,8 @@ class RedshiftClient(BaseClient):
|
|
|
2333
2333
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2334
2334
|
"""
|
|
2335
2335
|
|
|
2336
|
-
@overload
|
|
2337
|
-
def get_paginator(
|
|
2336
|
+
@overload # type: ignore[override]
|
|
2337
|
+
def get_paginator( # type: ignore[override]
|
|
2338
2338
|
self, operation_name: Literal["get_reserved_node_exchange_offerings"]
|
|
2339
2339
|
) -> GetReservedNodeExchangeOfferingsPaginator:
|
|
2340
2340
|
"""
|
|
@@ -2344,8 +2344,8 @@ class RedshiftClient(BaseClient):
|
|
|
2344
2344
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2345
2345
|
"""
|
|
2346
2346
|
|
|
2347
|
-
@overload
|
|
2348
|
-
def get_paginator(
|
|
2347
|
+
@overload # type: ignore[override]
|
|
2348
|
+
def get_paginator( # type: ignore[override]
|
|
2349
2349
|
self, operation_name: Literal["list_recommendations"]
|
|
2350
2350
|
) -> ListRecommendationsPaginator:
|
|
2351
2351
|
"""
|
|
@@ -2355,8 +2355,10 @@ class RedshiftClient(BaseClient):
|
|
|
2355
2355
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2356
2356
|
"""
|
|
2357
2357
|
|
|
2358
|
-
@overload
|
|
2359
|
-
def get_waiter(
|
|
2358
|
+
@overload # type: ignore[override]
|
|
2359
|
+
def get_waiter( # type: ignore[override]
|
|
2360
|
+
self, waiter_name: Literal["cluster_available"]
|
|
2361
|
+
) -> ClusterAvailableWaiter:
|
|
2360
2362
|
"""
|
|
2361
2363
|
Returns an object that can wait for some condition.
|
|
2362
2364
|
|
|
@@ -2364,8 +2366,10 @@ class RedshiftClient(BaseClient):
|
|
|
2364
2366
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2365
2367
|
"""
|
|
2366
2368
|
|
|
2367
|
-
@overload
|
|
2368
|
-
def get_waiter(
|
|
2369
|
+
@overload # type: ignore[override]
|
|
2370
|
+
def get_waiter( # type: ignore[override]
|
|
2371
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
2372
|
+
) -> ClusterDeletedWaiter:
|
|
2369
2373
|
"""
|
|
2370
2374
|
Returns an object that can wait for some condition.
|
|
2371
2375
|
|
|
@@ -2373,8 +2377,10 @@ class RedshiftClient(BaseClient):
|
|
|
2373
2377
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2374
2378
|
"""
|
|
2375
2379
|
|
|
2376
|
-
@overload
|
|
2377
|
-
def get_waiter(
|
|
2380
|
+
@overload # type: ignore[override]
|
|
2381
|
+
def get_waiter( # type: ignore[override]
|
|
2382
|
+
self, waiter_name: Literal["cluster_restored"]
|
|
2383
|
+
) -> ClusterRestoredWaiter:
|
|
2378
2384
|
"""
|
|
2379
2385
|
Returns an object that can wait for some condition.
|
|
2380
2386
|
|
|
@@ -2382,8 +2388,10 @@ class RedshiftClient(BaseClient):
|
|
|
2382
2388
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2383
2389
|
"""
|
|
2384
2390
|
|
|
2385
|
-
@overload
|
|
2386
|
-
def get_waiter(
|
|
2391
|
+
@overload # type: ignore[override]
|
|
2392
|
+
def get_waiter( # type: ignore[override]
|
|
2393
|
+
self, waiter_name: Literal["snapshot_available"]
|
|
2394
|
+
) -> SnapshotAvailableWaiter:
|
|
2387
2395
|
"""
|
|
2388
2396
|
Returns an object that can wait for some condition.
|
|
2389
2397
|
|
types_boto3_redshift/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for redshift service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: ActionTypeType = "recommend-node-config"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -240,12 +240,15 @@ ServiceName = Literal[
|
|
|
240
240
|
"b2bi",
|
|
241
241
|
"backup",
|
|
242
242
|
"backup-gateway",
|
|
243
|
+
"backupsearch",
|
|
243
244
|
"batch",
|
|
244
245
|
"bcm-data-exports",
|
|
245
246
|
"bcm-pricing-calculator",
|
|
246
247
|
"bedrock",
|
|
247
248
|
"bedrock-agent",
|
|
248
249
|
"bedrock-agent-runtime",
|
|
250
|
+
"bedrock-data-automation",
|
|
251
|
+
"bedrock-data-automation-runtime",
|
|
249
252
|
"bedrock-runtime",
|
|
250
253
|
"billing",
|
|
251
254
|
"billingconductor",
|
|
@@ -384,8 +387,6 @@ ServiceName = Literal[
|
|
|
384
387
|
"iot",
|
|
385
388
|
"iot-data",
|
|
386
389
|
"iot-jobs-data",
|
|
387
|
-
"iot1click-devices",
|
|
388
|
-
"iot1click-projects",
|
|
389
390
|
"iotanalytics",
|
|
390
391
|
"iotdeviceadvisor",
|
|
391
392
|
"iotevents",
|
|
@@ -676,6 +677,7 @@ RegionName = Literal[
|
|
|
676
677
|
"ap-southeast-3",
|
|
677
678
|
"ap-southeast-4",
|
|
678
679
|
"ap-southeast-5",
|
|
680
|
+
"ap-southeast-7",
|
|
679
681
|
"ca-central-1",
|
|
680
682
|
"ca-west-1",
|
|
681
683
|
"eu-central-1",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for redshift service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: ActionTypeType = "recommend-node-config"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -238,12 +238,15 @@ ServiceName = Literal[
|
|
|
238
238
|
"b2bi",
|
|
239
239
|
"backup",
|
|
240
240
|
"backup-gateway",
|
|
241
|
+
"backupsearch",
|
|
241
242
|
"batch",
|
|
242
243
|
"bcm-data-exports",
|
|
243
244
|
"bcm-pricing-calculator",
|
|
244
245
|
"bedrock",
|
|
245
246
|
"bedrock-agent",
|
|
246
247
|
"bedrock-agent-runtime",
|
|
248
|
+
"bedrock-data-automation",
|
|
249
|
+
"bedrock-data-automation-runtime",
|
|
247
250
|
"bedrock-runtime",
|
|
248
251
|
"billing",
|
|
249
252
|
"billingconductor",
|
|
@@ -382,8 +385,6 @@ ServiceName = Literal[
|
|
|
382
385
|
"iot",
|
|
383
386
|
"iot-data",
|
|
384
387
|
"iot-jobs-data",
|
|
385
|
-
"iot1click-devices",
|
|
386
|
-
"iot1click-projects",
|
|
387
388
|
"iotanalytics",
|
|
388
389
|
"iotdeviceadvisor",
|
|
389
390
|
"iotevents",
|
|
@@ -674,6 +675,7 @@ RegionName = Literal[
|
|
|
674
675
|
"ap-southeast-3",
|
|
675
676
|
"ap-southeast-4",
|
|
676
677
|
"ap-southeast-5",
|
|
678
|
+
"ap-southeast-7",
|
|
677
679
|
"ca-central-1",
|
|
678
680
|
"ca-west-1",
|
|
679
681
|
"eu-central-1",
|