mypy-boto3-redshift 1.26.79__py3-none-any.whl → 1.28.36__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.
Potentially problematic release.
This version of mypy-boto3-redshift might be problematic. Click here for more details.
- mypy_boto3_redshift/__init__.py +4 -0
- mypy_boto3_redshift/__init__.pyi +4 -0
- mypy_boto3_redshift/__main__.py +3 -3
- mypy_boto3_redshift/client.py +110 -40
- mypy_boto3_redshift/client.pyi +105 -40
- mypy_boto3_redshift/literals.py +18 -1
- mypy_boto3_redshift/literals.pyi +18 -1
- mypy_boto3_redshift/paginator.py +31 -8
- mypy_boto3_redshift/paginator.pyi +30 -8
- mypy_boto3_redshift/type_defs.py +1197 -2033
- mypy_boto3_redshift/type_defs.pyi +1197 -1915
- mypy_boto3_redshift/version.py +1 -1
- mypy_boto3_redshift/waiter.py +4 -5
- mypy_boto3_redshift/waiter.pyi +4 -5
- {mypy_boto3_redshift-1.26.79.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/LICENSE +1 -1
- mypy_boto3_redshift-1.28.36.dist-info/METADATA +568 -0
- mypy_boto3_redshift-1.28.36.dist-info/RECORD +20 -0
- {mypy_boto3_redshift-1.26.79.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_redshift-1.26.79.dist-info/METADATA +0 -952
- mypy_boto3_redshift-1.26.79.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.26.79.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/top_level.txt +0 -0
mypy_boto3_redshift/paginator.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
DescribeClusterTracksPaginator,
|
|
20
20
|
DescribeClusterVersionsPaginator,
|
|
21
21
|
DescribeClustersPaginator,
|
|
22
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
22
23
|
DescribeDataSharesPaginator,
|
|
23
24
|
DescribeDataSharesForConsumerPaginator,
|
|
24
25
|
DescribeDataSharesForProducerPaginator,
|
|
@@ -56,6 +57,7 @@ Usage::
|
|
|
56
57
|
describe_cluster_tracks_paginator: DescribeClusterTracksPaginator = client.get_paginator("describe_cluster_tracks")
|
|
57
58
|
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
58
59
|
describe_clusters_paginator: DescribeClustersPaginator = client.get_paginator("describe_clusters")
|
|
60
|
+
describe_custom_domain_associations_paginator: DescribeCustomDomainAssociationsPaginator = client.get_paginator("describe_custom_domain_associations")
|
|
59
61
|
describe_data_shares_paginator: DescribeDataSharesPaginator = client.get_paginator("describe_data_shares")
|
|
60
62
|
describe_data_shares_for_consumer_paginator: DescribeDataSharesForConsumerPaginator = client.get_paginator("describe_data_shares_for_consumer")
|
|
61
63
|
describe_data_shares_for_producer_paginator: DescribeDataSharesForProducerPaginator = client.get_paginator("describe_data_shares_for_producer")
|
|
@@ -81,8 +83,7 @@ Usage::
|
|
|
81
83
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
82
84
|
```
|
|
83
85
|
"""
|
|
84
|
-
from
|
|
85
|
-
from typing import Generic, Iterator, Sequence, TypeVar, Union
|
|
86
|
+
from typing import Generic, Iterator, Sequence, TypeVar
|
|
86
87
|
|
|
87
88
|
from botocore.paginate import PageIterator, Paginator
|
|
88
89
|
|
|
@@ -103,6 +104,7 @@ from .type_defs import (
|
|
|
103
104
|
ClustersMessageTypeDef,
|
|
104
105
|
ClusterSubnetGroupMessageTypeDef,
|
|
105
106
|
ClusterVersionsMessageTypeDef,
|
|
107
|
+
CustomDomainAssociationsMessageTypeDef,
|
|
106
108
|
DescribeDataSharesForConsumerResultTypeDef,
|
|
107
109
|
DescribeDataSharesForProducerResultTypeDef,
|
|
108
110
|
DescribeDataSharesResultTypeDef,
|
|
@@ -130,6 +132,7 @@ from .type_defs import (
|
|
|
130
132
|
SnapshotSortingEntityTypeDef,
|
|
131
133
|
TableRestoreStatusMessageTypeDef,
|
|
132
134
|
TaggedResourceListMessageTypeDef,
|
|
135
|
+
TimestampTypeDef,
|
|
133
136
|
TrackListMessageTypeDef,
|
|
134
137
|
UsageLimitListTypeDef,
|
|
135
138
|
)
|
|
@@ -144,6 +147,7 @@ __all__ = (
|
|
|
144
147
|
"DescribeClusterTracksPaginator",
|
|
145
148
|
"DescribeClusterVersionsPaginator",
|
|
146
149
|
"DescribeClustersPaginator",
|
|
150
|
+
"DescribeCustomDomainAssociationsPaginator",
|
|
147
151
|
"DescribeDataSharesPaginator",
|
|
148
152
|
"DescribeDataSharesForConsumerPaginator",
|
|
149
153
|
"DescribeDataSharesForProducerPaginator",
|
|
@@ -267,8 +271,8 @@ class DescribeClusterSnapshotsPaginator(Paginator):
|
|
|
267
271
|
SnapshotIdentifier: str = ...,
|
|
268
272
|
SnapshotArn: str = ...,
|
|
269
273
|
SnapshotType: str = ...,
|
|
270
|
-
StartTime:
|
|
271
|
-
EndTime:
|
|
274
|
+
StartTime: TimestampTypeDef = ...,
|
|
275
|
+
EndTime: TimestampTypeDef = ...,
|
|
272
276
|
OwnerAccount: str = ...,
|
|
273
277
|
TagKeys: Sequence[str] = ...,
|
|
274
278
|
TagValues: Sequence[str] = ...,
|
|
@@ -356,6 +360,25 @@ class DescribeClustersPaginator(Paginator):
|
|
|
356
360
|
"""
|
|
357
361
|
|
|
358
362
|
|
|
363
|
+
class DescribeCustomDomainAssociationsPaginator(Paginator):
|
|
364
|
+
"""
|
|
365
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeCustomDomainAssociations)
|
|
366
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#describecustomdomainassociationspaginator)
|
|
367
|
+
"""
|
|
368
|
+
|
|
369
|
+
def paginate(
|
|
370
|
+
self,
|
|
371
|
+
*,
|
|
372
|
+
CustomDomainName: str = ...,
|
|
373
|
+
CustomDomainCertificateArn: str = ...,
|
|
374
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
375
|
+
) -> _PageIterator[CustomDomainAssociationsMessageTypeDef]:
|
|
376
|
+
"""
|
|
377
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeCustomDomainAssociations.paginate)
|
|
378
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#describecustomdomainassociationspaginator)
|
|
379
|
+
"""
|
|
380
|
+
|
|
381
|
+
|
|
359
382
|
class DescribeDataSharesPaginator(Paginator):
|
|
360
383
|
"""
|
|
361
384
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeDataShares)
|
|
@@ -496,8 +519,8 @@ class DescribeEventsPaginator(Paginator):
|
|
|
496
519
|
*,
|
|
497
520
|
SourceIdentifier: str = ...,
|
|
498
521
|
SourceType: SourceTypeType = ...,
|
|
499
|
-
StartTime:
|
|
500
|
-
EndTime:
|
|
522
|
+
StartTime: TimestampTypeDef = ...,
|
|
523
|
+
EndTime: TimestampTypeDef = ...,
|
|
501
524
|
Duration: int = ...,
|
|
502
525
|
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
503
526
|
) -> _PageIterator[EventsMessageTypeDef]:
|
|
@@ -649,8 +672,8 @@ class DescribeScheduledActionsPaginator(Paginator):
|
|
|
649
672
|
*,
|
|
650
673
|
ScheduledActionName: str = ...,
|
|
651
674
|
TargetActionType: ScheduledActionTypeValuesType = ...,
|
|
652
|
-
StartTime:
|
|
653
|
-
EndTime:
|
|
675
|
+
StartTime: TimestampTypeDef = ...,
|
|
676
|
+
EndTime: TimestampTypeDef = ...,
|
|
654
677
|
Active: bool = ...,
|
|
655
678
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
656
679
|
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
DescribeClusterTracksPaginator,
|
|
20
20
|
DescribeClusterVersionsPaginator,
|
|
21
21
|
DescribeClustersPaginator,
|
|
22
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
22
23
|
DescribeDataSharesPaginator,
|
|
23
24
|
DescribeDataSharesForConsumerPaginator,
|
|
24
25
|
DescribeDataSharesForProducerPaginator,
|
|
@@ -56,6 +57,7 @@ Usage::
|
|
|
56
57
|
describe_cluster_tracks_paginator: DescribeClusterTracksPaginator = client.get_paginator("describe_cluster_tracks")
|
|
57
58
|
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
58
59
|
describe_clusters_paginator: DescribeClustersPaginator = client.get_paginator("describe_clusters")
|
|
60
|
+
describe_custom_domain_associations_paginator: DescribeCustomDomainAssociationsPaginator = client.get_paginator("describe_custom_domain_associations")
|
|
59
61
|
describe_data_shares_paginator: DescribeDataSharesPaginator = client.get_paginator("describe_data_shares")
|
|
60
62
|
describe_data_shares_for_consumer_paginator: DescribeDataSharesForConsumerPaginator = client.get_paginator("describe_data_shares_for_consumer")
|
|
61
63
|
describe_data_shares_for_producer_paginator: DescribeDataSharesForProducerPaginator = client.get_paginator("describe_data_shares_for_producer")
|
|
@@ -81,8 +83,7 @@ Usage::
|
|
|
81
83
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
82
84
|
```
|
|
83
85
|
"""
|
|
84
|
-
from
|
|
85
|
-
from typing import Generic, Iterator, Sequence, TypeVar, Union
|
|
86
|
+
from typing import Generic, Iterator, Sequence, TypeVar
|
|
86
87
|
|
|
87
88
|
from botocore.paginate import PageIterator, Paginator
|
|
88
89
|
|
|
@@ -103,6 +104,7 @@ from .type_defs import (
|
|
|
103
104
|
ClustersMessageTypeDef,
|
|
104
105
|
ClusterSubnetGroupMessageTypeDef,
|
|
105
106
|
ClusterVersionsMessageTypeDef,
|
|
107
|
+
CustomDomainAssociationsMessageTypeDef,
|
|
106
108
|
DescribeDataSharesForConsumerResultTypeDef,
|
|
107
109
|
DescribeDataSharesForProducerResultTypeDef,
|
|
108
110
|
DescribeDataSharesResultTypeDef,
|
|
@@ -130,6 +132,7 @@ from .type_defs import (
|
|
|
130
132
|
SnapshotSortingEntityTypeDef,
|
|
131
133
|
TableRestoreStatusMessageTypeDef,
|
|
132
134
|
TaggedResourceListMessageTypeDef,
|
|
135
|
+
TimestampTypeDef,
|
|
133
136
|
TrackListMessageTypeDef,
|
|
134
137
|
UsageLimitListTypeDef,
|
|
135
138
|
)
|
|
@@ -144,6 +147,7 @@ __all__ = (
|
|
|
144
147
|
"DescribeClusterTracksPaginator",
|
|
145
148
|
"DescribeClusterVersionsPaginator",
|
|
146
149
|
"DescribeClustersPaginator",
|
|
150
|
+
"DescribeCustomDomainAssociationsPaginator",
|
|
147
151
|
"DescribeDataSharesPaginator",
|
|
148
152
|
"DescribeDataSharesForConsumerPaginator",
|
|
149
153
|
"DescribeDataSharesForProducerPaginator",
|
|
@@ -260,8 +264,8 @@ class DescribeClusterSnapshotsPaginator(Paginator):
|
|
|
260
264
|
SnapshotIdentifier: str = ...,
|
|
261
265
|
SnapshotArn: str = ...,
|
|
262
266
|
SnapshotType: str = ...,
|
|
263
|
-
StartTime:
|
|
264
|
-
EndTime:
|
|
267
|
+
StartTime: TimestampTypeDef = ...,
|
|
268
|
+
EndTime: TimestampTypeDef = ...,
|
|
265
269
|
OwnerAccount: str = ...,
|
|
266
270
|
TagKeys: Sequence[str] = ...,
|
|
267
271
|
TagValues: Sequence[str] = ...,
|
|
@@ -344,6 +348,24 @@ class DescribeClustersPaginator(Paginator):
|
|
|
344
348
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#describeclusterspaginator)
|
|
345
349
|
"""
|
|
346
350
|
|
|
351
|
+
class DescribeCustomDomainAssociationsPaginator(Paginator):
|
|
352
|
+
"""
|
|
353
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeCustomDomainAssociations)
|
|
354
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#describecustomdomainassociationspaginator)
|
|
355
|
+
"""
|
|
356
|
+
|
|
357
|
+
def paginate(
|
|
358
|
+
self,
|
|
359
|
+
*,
|
|
360
|
+
CustomDomainName: str = ...,
|
|
361
|
+
CustomDomainCertificateArn: str = ...,
|
|
362
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
363
|
+
) -> _PageIterator[CustomDomainAssociationsMessageTypeDef]:
|
|
364
|
+
"""
|
|
365
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeCustomDomainAssociations.paginate)
|
|
366
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#describecustomdomainassociationspaginator)
|
|
367
|
+
"""
|
|
368
|
+
|
|
347
369
|
class DescribeDataSharesPaginator(Paginator):
|
|
348
370
|
"""
|
|
349
371
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeDataShares)
|
|
@@ -477,8 +499,8 @@ class DescribeEventsPaginator(Paginator):
|
|
|
477
499
|
*,
|
|
478
500
|
SourceIdentifier: str = ...,
|
|
479
501
|
SourceType: SourceTypeType = ...,
|
|
480
|
-
StartTime:
|
|
481
|
-
EndTime:
|
|
502
|
+
StartTime: TimestampTypeDef = ...,
|
|
503
|
+
EndTime: TimestampTypeDef = ...,
|
|
482
504
|
Duration: int = ...,
|
|
483
505
|
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
484
506
|
) -> _PageIterator[EventsMessageTypeDef]:
|
|
@@ -622,8 +644,8 @@ class DescribeScheduledActionsPaginator(Paginator):
|
|
|
622
644
|
*,
|
|
623
645
|
ScheduledActionName: str = ...,
|
|
624
646
|
TargetActionType: ScheduledActionTypeValuesType = ...,
|
|
625
|
-
StartTime:
|
|
626
|
-
EndTime:
|
|
647
|
+
StartTime: TimestampTypeDef = ...,
|
|
648
|
+
EndTime: TimestampTypeDef = ...,
|
|
627
649
|
Active: bool = ...,
|
|
628
650
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
629
651
|
PaginationConfig: PaginatorConfigTypeDef = ...
|