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/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,
|
|
@@ -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:
|
|
@@ -315,14 +328,7 @@ else:
|
|
|
315
328
|
|
|
316
329
|
__all__ = ("RedshiftClient",)
|
|
317
330
|
|
|
318
|
-
class
|
|
319
|
-
MSG_TEMPLATE: str
|
|
320
|
-
|
|
321
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
322
|
-
self.response: Dict[str, Any]
|
|
323
|
-
self.operation_name: str
|
|
324
|
-
|
|
325
|
-
class Exceptions:
|
|
331
|
+
class Exceptions(BaseClientExceptions):
|
|
326
332
|
AccessToClusterDeniedFault: Type[BotocoreClientError]
|
|
327
333
|
AccessToSnapshotDeniedFault: Type[BotocoreClientError]
|
|
328
334
|
AuthenticationProfileAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -502,12 +508,6 @@ class RedshiftClient(BaseClient):
|
|
|
502
508
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#generate_presigned_url)
|
|
503
509
|
"""
|
|
504
510
|
|
|
505
|
-
def close(self) -> None:
|
|
506
|
-
"""
|
|
507
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/close.html)
|
|
508
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#close)
|
|
509
|
-
"""
|
|
510
|
-
|
|
511
511
|
def accept_reserved_node_exchange(
|
|
512
512
|
self, **kwargs: Unpack[AcceptReservedNodeExchangeInputMessageRequestTypeDef]
|
|
513
513
|
) -> AcceptReservedNodeExchangeOutputMessageTypeDef:
|
|
@@ -1022,6 +1022,17 @@ class RedshiftClient(BaseClient):
|
|
|
1022
1022
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#delete_usage_limit)
|
|
1023
1023
|
"""
|
|
1024
1024
|
|
|
1025
|
+
def deregister_namespace(
|
|
1026
|
+
self, **kwargs: Unpack[DeregisterNamespaceInputMessageRequestTypeDef]
|
|
1027
|
+
) -> DeregisterNamespaceOutputMessageTypeDef:
|
|
1028
|
+
"""
|
|
1029
|
+
Deregisters a cluster or serverless namespace from the Amazon Web Services Glue
|
|
1030
|
+
Data Catalog.
|
|
1031
|
+
|
|
1032
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/deregister_namespace.html)
|
|
1033
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#deregister_namespace)
|
|
1034
|
+
"""
|
|
1035
|
+
|
|
1025
1036
|
def describe_account_attributes(
|
|
1026
1037
|
self, **kwargs: Unpack[DescribeAccountAttributesMessageRequestTypeDef]
|
|
1027
1038
|
) -> AccountAttributeListTypeDef:
|
|
@@ -1813,6 +1824,17 @@ class RedshiftClient(BaseClient):
|
|
|
1813
1824
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#reboot_cluster)
|
|
1814
1825
|
"""
|
|
1815
1826
|
|
|
1827
|
+
def register_namespace(
|
|
1828
|
+
self, **kwargs: Unpack[RegisterNamespaceInputMessageRequestTypeDef]
|
|
1829
|
+
) -> RegisterNamespaceOutputMessageTypeDef:
|
|
1830
|
+
"""
|
|
1831
|
+
Registers a cluster or serverless namespace to the Amazon Web Services Glue
|
|
1832
|
+
Data Catalog.
|
|
1833
|
+
|
|
1834
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/register_namespace.html)
|
|
1835
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#register_namespace)
|
|
1836
|
+
"""
|
|
1837
|
+
|
|
1816
1838
|
def reject_data_share(
|
|
1817
1839
|
self, **kwargs: Unpack[RejectDataShareMessageRequestTypeDef]
|
|
1818
1840
|
) -> DataShareResponseTypeDef:
|
|
@@ -1926,8 +1948,8 @@ class RedshiftClient(BaseClient):
|
|
|
1926
1948
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#update_partner_status)
|
|
1927
1949
|
"""
|
|
1928
1950
|
|
|
1929
|
-
@overload
|
|
1930
|
-
def get_paginator(
|
|
1951
|
+
@overload # type: ignore[override]
|
|
1952
|
+
def get_paginator( # type: ignore[override]
|
|
1931
1953
|
self, operation_name: Literal["describe_cluster_db_revisions"]
|
|
1932
1954
|
) -> DescribeClusterDbRevisionsPaginator:
|
|
1933
1955
|
"""
|
|
@@ -1937,8 +1959,8 @@ class RedshiftClient(BaseClient):
|
|
|
1937
1959
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1938
1960
|
"""
|
|
1939
1961
|
|
|
1940
|
-
@overload
|
|
1941
|
-
def get_paginator(
|
|
1962
|
+
@overload # type: ignore[override]
|
|
1963
|
+
def get_paginator( # type: ignore[override]
|
|
1942
1964
|
self, operation_name: Literal["describe_cluster_parameter_groups"]
|
|
1943
1965
|
) -> DescribeClusterParameterGroupsPaginator:
|
|
1944
1966
|
"""
|
|
@@ -1948,8 +1970,8 @@ class RedshiftClient(BaseClient):
|
|
|
1948
1970
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1949
1971
|
"""
|
|
1950
1972
|
|
|
1951
|
-
@overload
|
|
1952
|
-
def get_paginator(
|
|
1973
|
+
@overload # type: ignore[override]
|
|
1974
|
+
def get_paginator( # type: ignore[override]
|
|
1953
1975
|
self, operation_name: Literal["describe_cluster_parameters"]
|
|
1954
1976
|
) -> DescribeClusterParametersPaginator:
|
|
1955
1977
|
"""
|
|
@@ -1959,8 +1981,8 @@ class RedshiftClient(BaseClient):
|
|
|
1959
1981
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1960
1982
|
"""
|
|
1961
1983
|
|
|
1962
|
-
@overload
|
|
1963
|
-
def get_paginator(
|
|
1984
|
+
@overload # type: ignore[override]
|
|
1985
|
+
def get_paginator( # type: ignore[override]
|
|
1964
1986
|
self, operation_name: Literal["describe_cluster_security_groups"]
|
|
1965
1987
|
) -> DescribeClusterSecurityGroupsPaginator:
|
|
1966
1988
|
"""
|
|
@@ -1970,8 +1992,8 @@ class RedshiftClient(BaseClient):
|
|
|
1970
1992
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1971
1993
|
"""
|
|
1972
1994
|
|
|
1973
|
-
@overload
|
|
1974
|
-
def get_paginator(
|
|
1995
|
+
@overload # type: ignore[override]
|
|
1996
|
+
def get_paginator( # type: ignore[override]
|
|
1975
1997
|
self, operation_name: Literal["describe_cluster_snapshots"]
|
|
1976
1998
|
) -> DescribeClusterSnapshotsPaginator:
|
|
1977
1999
|
"""
|
|
@@ -1981,8 +2003,8 @@ class RedshiftClient(BaseClient):
|
|
|
1981
2003
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1982
2004
|
"""
|
|
1983
2005
|
|
|
1984
|
-
@overload
|
|
1985
|
-
def get_paginator(
|
|
2006
|
+
@overload # type: ignore[override]
|
|
2007
|
+
def get_paginator( # type: ignore[override]
|
|
1986
2008
|
self, operation_name: Literal["describe_cluster_subnet_groups"]
|
|
1987
2009
|
) -> DescribeClusterSubnetGroupsPaginator:
|
|
1988
2010
|
"""
|
|
@@ -1992,8 +2014,8 @@ class RedshiftClient(BaseClient):
|
|
|
1992
2014
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
1993
2015
|
"""
|
|
1994
2016
|
|
|
1995
|
-
@overload
|
|
1996
|
-
def get_paginator(
|
|
2017
|
+
@overload # type: ignore[override]
|
|
2018
|
+
def get_paginator( # type: ignore[override]
|
|
1997
2019
|
self, operation_name: Literal["describe_cluster_tracks"]
|
|
1998
2020
|
) -> DescribeClusterTracksPaginator:
|
|
1999
2021
|
"""
|
|
@@ -2003,8 +2025,8 @@ class RedshiftClient(BaseClient):
|
|
|
2003
2025
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2004
2026
|
"""
|
|
2005
2027
|
|
|
2006
|
-
@overload
|
|
2007
|
-
def get_paginator(
|
|
2028
|
+
@overload # type: ignore[override]
|
|
2029
|
+
def get_paginator( # type: ignore[override]
|
|
2008
2030
|
self, operation_name: Literal["describe_cluster_versions"]
|
|
2009
2031
|
) -> DescribeClusterVersionsPaginator:
|
|
2010
2032
|
"""
|
|
@@ -2014,8 +2036,8 @@ class RedshiftClient(BaseClient):
|
|
|
2014
2036
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2015
2037
|
"""
|
|
2016
2038
|
|
|
2017
|
-
@overload
|
|
2018
|
-
def get_paginator(
|
|
2039
|
+
@overload # type: ignore[override]
|
|
2040
|
+
def get_paginator( # type: ignore[override]
|
|
2019
2041
|
self, operation_name: Literal["describe_clusters"]
|
|
2020
2042
|
) -> DescribeClustersPaginator:
|
|
2021
2043
|
"""
|
|
@@ -2025,8 +2047,8 @@ class RedshiftClient(BaseClient):
|
|
|
2025
2047
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2026
2048
|
"""
|
|
2027
2049
|
|
|
2028
|
-
@overload
|
|
2029
|
-
def get_paginator(
|
|
2050
|
+
@overload # type: ignore[override]
|
|
2051
|
+
def get_paginator( # type: ignore[override]
|
|
2030
2052
|
self, operation_name: Literal["describe_custom_domain_associations"]
|
|
2031
2053
|
) -> DescribeCustomDomainAssociationsPaginator:
|
|
2032
2054
|
"""
|
|
@@ -2036,8 +2058,8 @@ class RedshiftClient(BaseClient):
|
|
|
2036
2058
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2037
2059
|
"""
|
|
2038
2060
|
|
|
2039
|
-
@overload
|
|
2040
|
-
def get_paginator(
|
|
2061
|
+
@overload # type: ignore[override]
|
|
2062
|
+
def get_paginator( # type: ignore[override]
|
|
2041
2063
|
self, operation_name: Literal["describe_data_shares_for_consumer"]
|
|
2042
2064
|
) -> DescribeDataSharesForConsumerPaginator:
|
|
2043
2065
|
"""
|
|
@@ -2047,8 +2069,8 @@ class RedshiftClient(BaseClient):
|
|
|
2047
2069
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2048
2070
|
"""
|
|
2049
2071
|
|
|
2050
|
-
@overload
|
|
2051
|
-
def get_paginator(
|
|
2072
|
+
@overload # type: ignore[override]
|
|
2073
|
+
def get_paginator( # type: ignore[override]
|
|
2052
2074
|
self, operation_name: Literal["describe_data_shares_for_producer"]
|
|
2053
2075
|
) -> DescribeDataSharesForProducerPaginator:
|
|
2054
2076
|
"""
|
|
@@ -2058,8 +2080,8 @@ class RedshiftClient(BaseClient):
|
|
|
2058
2080
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2059
2081
|
"""
|
|
2060
2082
|
|
|
2061
|
-
@overload
|
|
2062
|
-
def get_paginator(
|
|
2083
|
+
@overload # type: ignore[override]
|
|
2084
|
+
def get_paginator( # type: ignore[override]
|
|
2063
2085
|
self, operation_name: Literal["describe_data_shares"]
|
|
2064
2086
|
) -> DescribeDataSharesPaginator:
|
|
2065
2087
|
"""
|
|
@@ -2069,8 +2091,8 @@ class RedshiftClient(BaseClient):
|
|
|
2069
2091
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2070
2092
|
"""
|
|
2071
2093
|
|
|
2072
|
-
@overload
|
|
2073
|
-
def get_paginator(
|
|
2094
|
+
@overload # type: ignore[override]
|
|
2095
|
+
def get_paginator( # type: ignore[override]
|
|
2074
2096
|
self, operation_name: Literal["describe_default_cluster_parameters"]
|
|
2075
2097
|
) -> DescribeDefaultClusterParametersPaginator:
|
|
2076
2098
|
"""
|
|
@@ -2080,8 +2102,8 @@ class RedshiftClient(BaseClient):
|
|
|
2080
2102
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2081
2103
|
"""
|
|
2082
2104
|
|
|
2083
|
-
@overload
|
|
2084
|
-
def get_paginator(
|
|
2105
|
+
@overload # type: ignore[override]
|
|
2106
|
+
def get_paginator( # type: ignore[override]
|
|
2085
2107
|
self, operation_name: Literal["describe_endpoint_access"]
|
|
2086
2108
|
) -> DescribeEndpointAccessPaginator:
|
|
2087
2109
|
"""
|
|
@@ -2091,8 +2113,8 @@ class RedshiftClient(BaseClient):
|
|
|
2091
2113
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2092
2114
|
"""
|
|
2093
2115
|
|
|
2094
|
-
@overload
|
|
2095
|
-
def get_paginator(
|
|
2116
|
+
@overload # type: ignore[override]
|
|
2117
|
+
def get_paginator( # type: ignore[override]
|
|
2096
2118
|
self, operation_name: Literal["describe_endpoint_authorization"]
|
|
2097
2119
|
) -> DescribeEndpointAuthorizationPaginator:
|
|
2098
2120
|
"""
|
|
@@ -2102,8 +2124,8 @@ class RedshiftClient(BaseClient):
|
|
|
2102
2124
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2103
2125
|
"""
|
|
2104
2126
|
|
|
2105
|
-
@overload
|
|
2106
|
-
def get_paginator(
|
|
2127
|
+
@overload # type: ignore[override]
|
|
2128
|
+
def get_paginator( # type: ignore[override]
|
|
2107
2129
|
self, operation_name: Literal["describe_event_subscriptions"]
|
|
2108
2130
|
) -> DescribeEventSubscriptionsPaginator:
|
|
2109
2131
|
"""
|
|
@@ -2113,8 +2135,10 @@ class RedshiftClient(BaseClient):
|
|
|
2113
2135
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2114
2136
|
"""
|
|
2115
2137
|
|
|
2116
|
-
@overload
|
|
2117
|
-
def get_paginator(
|
|
2138
|
+
@overload # type: ignore[override]
|
|
2139
|
+
def get_paginator( # type: ignore[override]
|
|
2140
|
+
self, operation_name: Literal["describe_events"]
|
|
2141
|
+
) -> DescribeEventsPaginator:
|
|
2118
2142
|
"""
|
|
2119
2143
|
Create a paginator for an operation.
|
|
2120
2144
|
|
|
@@ -2122,8 +2146,8 @@ class RedshiftClient(BaseClient):
|
|
|
2122
2146
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2123
2147
|
"""
|
|
2124
2148
|
|
|
2125
|
-
@overload
|
|
2126
|
-
def get_paginator(
|
|
2149
|
+
@overload # type: ignore[override]
|
|
2150
|
+
def get_paginator( # type: ignore[override]
|
|
2127
2151
|
self, operation_name: Literal["describe_hsm_client_certificates"]
|
|
2128
2152
|
) -> DescribeHsmClientCertificatesPaginator:
|
|
2129
2153
|
"""
|
|
@@ -2133,8 +2157,8 @@ class RedshiftClient(BaseClient):
|
|
|
2133
2157
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2134
2158
|
"""
|
|
2135
2159
|
|
|
2136
|
-
@overload
|
|
2137
|
-
def get_paginator(
|
|
2160
|
+
@overload # type: ignore[override]
|
|
2161
|
+
def get_paginator( # type: ignore[override]
|
|
2138
2162
|
self, operation_name: Literal["describe_hsm_configurations"]
|
|
2139
2163
|
) -> DescribeHsmConfigurationsPaginator:
|
|
2140
2164
|
"""
|
|
@@ -2144,8 +2168,8 @@ class RedshiftClient(BaseClient):
|
|
|
2144
2168
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2145
2169
|
"""
|
|
2146
2170
|
|
|
2147
|
-
@overload
|
|
2148
|
-
def get_paginator(
|
|
2171
|
+
@overload # type: ignore[override]
|
|
2172
|
+
def get_paginator( # type: ignore[override]
|
|
2149
2173
|
self, operation_name: Literal["describe_inbound_integrations"]
|
|
2150
2174
|
) -> DescribeInboundIntegrationsPaginator:
|
|
2151
2175
|
"""
|
|
@@ -2155,8 +2179,8 @@ class RedshiftClient(BaseClient):
|
|
|
2155
2179
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2156
2180
|
"""
|
|
2157
2181
|
|
|
2158
|
-
@overload
|
|
2159
|
-
def get_paginator(
|
|
2182
|
+
@overload # type: ignore[override]
|
|
2183
|
+
def get_paginator( # type: ignore[override]
|
|
2160
2184
|
self, operation_name: Literal["describe_integrations"]
|
|
2161
2185
|
) -> DescribeIntegrationsPaginator:
|
|
2162
2186
|
"""
|
|
@@ -2166,8 +2190,8 @@ class RedshiftClient(BaseClient):
|
|
|
2166
2190
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2167
2191
|
"""
|
|
2168
2192
|
|
|
2169
|
-
@overload
|
|
2170
|
-
def get_paginator(
|
|
2193
|
+
@overload # type: ignore[override]
|
|
2194
|
+
def get_paginator( # type: ignore[override]
|
|
2171
2195
|
self, operation_name: Literal["describe_node_configuration_options"]
|
|
2172
2196
|
) -> DescribeNodeConfigurationOptionsPaginator:
|
|
2173
2197
|
"""
|
|
@@ -2177,8 +2201,8 @@ class RedshiftClient(BaseClient):
|
|
|
2177
2201
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2178
2202
|
"""
|
|
2179
2203
|
|
|
2180
|
-
@overload
|
|
2181
|
-
def get_paginator(
|
|
2204
|
+
@overload # type: ignore[override]
|
|
2205
|
+
def get_paginator( # type: ignore[override]
|
|
2182
2206
|
self, operation_name: Literal["describe_orderable_cluster_options"]
|
|
2183
2207
|
) -> DescribeOrderableClusterOptionsPaginator:
|
|
2184
2208
|
"""
|
|
@@ -2188,8 +2212,8 @@ class RedshiftClient(BaseClient):
|
|
|
2188
2212
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2189
2213
|
"""
|
|
2190
2214
|
|
|
2191
|
-
@overload
|
|
2192
|
-
def get_paginator(
|
|
2215
|
+
@overload # type: ignore[override]
|
|
2216
|
+
def get_paginator( # type: ignore[override]
|
|
2193
2217
|
self, operation_name: Literal["describe_redshift_idc_applications"]
|
|
2194
2218
|
) -> DescribeRedshiftIdcApplicationsPaginator:
|
|
2195
2219
|
"""
|
|
@@ -2199,8 +2223,8 @@ class RedshiftClient(BaseClient):
|
|
|
2199
2223
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2200
2224
|
"""
|
|
2201
2225
|
|
|
2202
|
-
@overload
|
|
2203
|
-
def get_paginator(
|
|
2226
|
+
@overload # type: ignore[override]
|
|
2227
|
+
def get_paginator( # type: ignore[override]
|
|
2204
2228
|
self, operation_name: Literal["describe_reserved_node_exchange_status"]
|
|
2205
2229
|
) -> DescribeReservedNodeExchangeStatusPaginator:
|
|
2206
2230
|
"""
|
|
@@ -2210,8 +2234,8 @@ class RedshiftClient(BaseClient):
|
|
|
2210
2234
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2211
2235
|
"""
|
|
2212
2236
|
|
|
2213
|
-
@overload
|
|
2214
|
-
def get_paginator(
|
|
2237
|
+
@overload # type: ignore[override]
|
|
2238
|
+
def get_paginator( # type: ignore[override]
|
|
2215
2239
|
self, operation_name: Literal["describe_reserved_node_offerings"]
|
|
2216
2240
|
) -> DescribeReservedNodeOfferingsPaginator:
|
|
2217
2241
|
"""
|
|
@@ -2221,8 +2245,8 @@ class RedshiftClient(BaseClient):
|
|
|
2221
2245
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2222
2246
|
"""
|
|
2223
2247
|
|
|
2224
|
-
@overload
|
|
2225
|
-
def get_paginator(
|
|
2248
|
+
@overload # type: ignore[override]
|
|
2249
|
+
def get_paginator( # type: ignore[override]
|
|
2226
2250
|
self, operation_name: Literal["describe_reserved_nodes"]
|
|
2227
2251
|
) -> DescribeReservedNodesPaginator:
|
|
2228
2252
|
"""
|
|
@@ -2232,8 +2256,8 @@ class RedshiftClient(BaseClient):
|
|
|
2232
2256
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2233
2257
|
"""
|
|
2234
2258
|
|
|
2235
|
-
@overload
|
|
2236
|
-
def get_paginator(
|
|
2259
|
+
@overload # type: ignore[override]
|
|
2260
|
+
def get_paginator( # type: ignore[override]
|
|
2237
2261
|
self, operation_name: Literal["describe_scheduled_actions"]
|
|
2238
2262
|
) -> DescribeScheduledActionsPaginator:
|
|
2239
2263
|
"""
|
|
@@ -2243,8 +2267,8 @@ class RedshiftClient(BaseClient):
|
|
|
2243
2267
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2244
2268
|
"""
|
|
2245
2269
|
|
|
2246
|
-
@overload
|
|
2247
|
-
def get_paginator(
|
|
2270
|
+
@overload # type: ignore[override]
|
|
2271
|
+
def get_paginator( # type: ignore[override]
|
|
2248
2272
|
self, operation_name: Literal["describe_snapshot_copy_grants"]
|
|
2249
2273
|
) -> DescribeSnapshotCopyGrantsPaginator:
|
|
2250
2274
|
"""
|
|
@@ -2254,8 +2278,8 @@ class RedshiftClient(BaseClient):
|
|
|
2254
2278
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2255
2279
|
"""
|
|
2256
2280
|
|
|
2257
|
-
@overload
|
|
2258
|
-
def get_paginator(
|
|
2281
|
+
@overload # type: ignore[override]
|
|
2282
|
+
def get_paginator( # type: ignore[override]
|
|
2259
2283
|
self, operation_name: Literal["describe_snapshot_schedules"]
|
|
2260
2284
|
) -> DescribeSnapshotSchedulesPaginator:
|
|
2261
2285
|
"""
|
|
@@ -2265,8 +2289,8 @@ class RedshiftClient(BaseClient):
|
|
|
2265
2289
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2266
2290
|
"""
|
|
2267
2291
|
|
|
2268
|
-
@overload
|
|
2269
|
-
def get_paginator(
|
|
2292
|
+
@overload # type: ignore[override]
|
|
2293
|
+
def get_paginator( # type: ignore[override]
|
|
2270
2294
|
self, operation_name: Literal["describe_table_restore_status"]
|
|
2271
2295
|
) -> DescribeTableRestoreStatusPaginator:
|
|
2272
2296
|
"""
|
|
@@ -2276,8 +2300,10 @@ class RedshiftClient(BaseClient):
|
|
|
2276
2300
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2277
2301
|
"""
|
|
2278
2302
|
|
|
2279
|
-
@overload
|
|
2280
|
-
def get_paginator(
|
|
2303
|
+
@overload # type: ignore[override]
|
|
2304
|
+
def get_paginator( # type: ignore[override]
|
|
2305
|
+
self, operation_name: Literal["describe_tags"]
|
|
2306
|
+
) -> DescribeTagsPaginator:
|
|
2281
2307
|
"""
|
|
2282
2308
|
Create a paginator for an operation.
|
|
2283
2309
|
|
|
@@ -2285,8 +2311,8 @@ class RedshiftClient(BaseClient):
|
|
|
2285
2311
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2286
2312
|
"""
|
|
2287
2313
|
|
|
2288
|
-
@overload
|
|
2289
|
-
def get_paginator(
|
|
2314
|
+
@overload # type: ignore[override]
|
|
2315
|
+
def get_paginator( # type: ignore[override]
|
|
2290
2316
|
self, operation_name: Literal["describe_usage_limits"]
|
|
2291
2317
|
) -> DescribeUsageLimitsPaginator:
|
|
2292
2318
|
"""
|
|
@@ -2296,8 +2322,8 @@ class RedshiftClient(BaseClient):
|
|
|
2296
2322
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2297
2323
|
"""
|
|
2298
2324
|
|
|
2299
|
-
@overload
|
|
2300
|
-
def get_paginator(
|
|
2325
|
+
@overload # type: ignore[override]
|
|
2326
|
+
def get_paginator( # type: ignore[override]
|
|
2301
2327
|
self, operation_name: Literal["get_reserved_node_exchange_configuration_options"]
|
|
2302
2328
|
) -> GetReservedNodeExchangeConfigurationOptionsPaginator:
|
|
2303
2329
|
"""
|
|
@@ -2307,8 +2333,8 @@ class RedshiftClient(BaseClient):
|
|
|
2307
2333
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2308
2334
|
"""
|
|
2309
2335
|
|
|
2310
|
-
@overload
|
|
2311
|
-
def get_paginator(
|
|
2336
|
+
@overload # type: ignore[override]
|
|
2337
|
+
def get_paginator( # type: ignore[override]
|
|
2312
2338
|
self, operation_name: Literal["get_reserved_node_exchange_offerings"]
|
|
2313
2339
|
) -> GetReservedNodeExchangeOfferingsPaginator:
|
|
2314
2340
|
"""
|
|
@@ -2318,8 +2344,8 @@ class RedshiftClient(BaseClient):
|
|
|
2318
2344
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2319
2345
|
"""
|
|
2320
2346
|
|
|
2321
|
-
@overload
|
|
2322
|
-
def get_paginator(
|
|
2347
|
+
@overload # type: ignore[override]
|
|
2348
|
+
def get_paginator( # type: ignore[override]
|
|
2323
2349
|
self, operation_name: Literal["list_recommendations"]
|
|
2324
2350
|
) -> ListRecommendationsPaginator:
|
|
2325
2351
|
"""
|
|
@@ -2329,8 +2355,10 @@ class RedshiftClient(BaseClient):
|
|
|
2329
2355
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_paginator)
|
|
2330
2356
|
"""
|
|
2331
2357
|
|
|
2332
|
-
@overload
|
|
2333
|
-
def get_waiter(
|
|
2358
|
+
@overload # type: ignore[override]
|
|
2359
|
+
def get_waiter( # type: ignore[override]
|
|
2360
|
+
self, waiter_name: Literal["cluster_available"]
|
|
2361
|
+
) -> ClusterAvailableWaiter:
|
|
2334
2362
|
"""
|
|
2335
2363
|
Returns an object that can wait for some condition.
|
|
2336
2364
|
|
|
@@ -2338,8 +2366,10 @@ class RedshiftClient(BaseClient):
|
|
|
2338
2366
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2339
2367
|
"""
|
|
2340
2368
|
|
|
2341
|
-
@overload
|
|
2342
|
-
def get_waiter(
|
|
2369
|
+
@overload # type: ignore[override]
|
|
2370
|
+
def get_waiter( # type: ignore[override]
|
|
2371
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
2372
|
+
) -> ClusterDeletedWaiter:
|
|
2343
2373
|
"""
|
|
2344
2374
|
Returns an object that can wait for some condition.
|
|
2345
2375
|
|
|
@@ -2347,8 +2377,10 @@ class RedshiftClient(BaseClient):
|
|
|
2347
2377
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2348
2378
|
"""
|
|
2349
2379
|
|
|
2350
|
-
@overload
|
|
2351
|
-
def get_waiter(
|
|
2380
|
+
@overload # type: ignore[override]
|
|
2381
|
+
def get_waiter( # type: ignore[override]
|
|
2382
|
+
self, waiter_name: Literal["cluster_restored"]
|
|
2383
|
+
) -> ClusterRestoredWaiter:
|
|
2352
2384
|
"""
|
|
2353
2385
|
Returns an object that can wait for some condition.
|
|
2354
2386
|
|
|
@@ -2356,8 +2388,10 @@ class RedshiftClient(BaseClient):
|
|
|
2356
2388
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_waiter)
|
|
2357
2389
|
"""
|
|
2358
2390
|
|
|
2359
|
-
@overload
|
|
2360
|
-
def get_waiter(
|
|
2391
|
+
@overload # type: ignore[override]
|
|
2392
|
+
def get_waiter( # type: ignore[override]
|
|
2393
|
+
self, waiter_name: Literal["snapshot_available"]
|
|
2394
|
+
) -> SnapshotAvailableWaiter:
|
|
2361
2395
|
"""
|
|
2362
2396
|
Returns an object that can wait for some condition.
|
|
2363
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
|
|
@@ -33,6 +33,7 @@ __all__ = (
|
|
|
33
33
|
"DataShareStatusForConsumerType",
|
|
34
34
|
"DataShareStatusForProducerType",
|
|
35
35
|
"DataShareStatusType",
|
|
36
|
+
"DataShareTypeType",
|
|
36
37
|
"DescribeClusterDbRevisionsPaginatorName",
|
|
37
38
|
"DescribeClusterParameterGroupsPaginatorName",
|
|
38
39
|
"DescribeClusterParametersPaginatorName",
|
|
@@ -74,6 +75,7 @@ __all__ = (
|
|
|
74
75
|
"ListRecommendationsPaginatorName",
|
|
75
76
|
"LogDestinationTypeType",
|
|
76
77
|
"ModeType",
|
|
78
|
+
"NamespaceRegistrationStatusType",
|
|
77
79
|
"NodeConfigurationOptionsFilterNameType",
|
|
78
80
|
"OperatorTypeType",
|
|
79
81
|
"PaginatorName",
|
|
@@ -120,6 +122,7 @@ DataShareStatusForProducerType = Literal[
|
|
|
120
122
|
DataShareStatusType = Literal[
|
|
121
123
|
"ACTIVE", "AUTHORIZED", "AVAILABLE", "DEAUTHORIZED", "PENDING_AUTHORIZATION", "REJECTED"
|
|
122
124
|
]
|
|
125
|
+
DataShareTypeType = Literal["INTERNAL"]
|
|
123
126
|
DescribeClusterDbRevisionsPaginatorName = Literal["describe_cluster_db_revisions"]
|
|
124
127
|
DescribeClusterParameterGroupsPaginatorName = Literal["describe_cluster_parameter_groups"]
|
|
125
128
|
DescribeClusterParametersPaginatorName = Literal["describe_cluster_parameters"]
|
|
@@ -165,6 +168,7 @@ ImpactRankingTypeType = Literal["HIGH", "LOW", "MEDIUM"]
|
|
|
165
168
|
ListRecommendationsPaginatorName = Literal["list_recommendations"]
|
|
166
169
|
LogDestinationTypeType = Literal["cloudwatch", "s3"]
|
|
167
170
|
ModeType = Literal["high-performance", "standard"]
|
|
171
|
+
NamespaceRegistrationStatusType = Literal["Deregistering", "Registering"]
|
|
168
172
|
NodeConfigurationOptionsFilterNameType = Literal[
|
|
169
173
|
"EstimatedDiskUtilizationPercent", "Mode", "NodeType", "NumberOfNodes"
|
|
170
174
|
]
|
|
@@ -236,12 +240,15 @@ ServiceName = Literal[
|
|
|
236
240
|
"b2bi",
|
|
237
241
|
"backup",
|
|
238
242
|
"backup-gateway",
|
|
243
|
+
"backupsearch",
|
|
239
244
|
"batch",
|
|
240
245
|
"bcm-data-exports",
|
|
241
246
|
"bcm-pricing-calculator",
|
|
242
247
|
"bedrock",
|
|
243
248
|
"bedrock-agent",
|
|
244
249
|
"bedrock-agent-runtime",
|
|
250
|
+
"bedrock-data-automation",
|
|
251
|
+
"bedrock-data-automation-runtime",
|
|
245
252
|
"bedrock-runtime",
|
|
246
253
|
"billing",
|
|
247
254
|
"billingconductor",
|
|
@@ -319,6 +326,7 @@ ServiceName = Literal[
|
|
|
319
326
|
"drs",
|
|
320
327
|
"ds",
|
|
321
328
|
"ds-data",
|
|
329
|
+
"dsql",
|
|
322
330
|
"dynamodb",
|
|
323
331
|
"dynamodbstreams",
|
|
324
332
|
"ebs",
|
|
@@ -375,6 +383,7 @@ ServiceName = Literal[
|
|
|
375
383
|
"inspector-scan",
|
|
376
384
|
"inspector2",
|
|
377
385
|
"internetmonitor",
|
|
386
|
+
"invoicing",
|
|
378
387
|
"iot",
|
|
379
388
|
"iot-data",
|
|
380
389
|
"iot-jobs-data",
|
|
@@ -461,6 +470,7 @@ ServiceName = Literal[
|
|
|
461
470
|
"neptune-graph",
|
|
462
471
|
"neptunedata",
|
|
463
472
|
"network-firewall",
|
|
473
|
+
"networkflowmonitor",
|
|
464
474
|
"networkmanager",
|
|
465
475
|
"networkmonitor",
|
|
466
476
|
"notifications",
|
|
@@ -527,6 +537,7 @@ ServiceName = Literal[
|
|
|
527
537
|
"s3",
|
|
528
538
|
"s3control",
|
|
529
539
|
"s3outposts",
|
|
540
|
+
"s3tables",
|
|
530
541
|
"sagemaker",
|
|
531
542
|
"sagemaker-a2i-runtime",
|
|
532
543
|
"sagemaker-edge",
|
|
@@ -539,6 +550,7 @@ ServiceName = Literal[
|
|
|
539
550
|
"schemas",
|
|
540
551
|
"sdb",
|
|
541
552
|
"secretsmanager",
|
|
553
|
+
"security-ir",
|
|
542
554
|
"securityhub",
|
|
543
555
|
"securitylake",
|
|
544
556
|
"serverlessrepo",
|