types-boto3-redshift 1.35.71__py3-none-any.whl → 1.35.74__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/__main__.py +4 -4
- types_boto3_redshift/client.py +26 -0
- types_boto3_redshift/client.pyi +26 -0
- types_boto3_redshift/literals.py +9 -0
- types_boto3_redshift/literals.pyi +9 -0
- types_boto3_redshift/type_defs.py +46 -2
- types_boto3_redshift/type_defs.pyi +39 -2
- types_boto3_redshift/version.py +1 -1
- {types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.74.dist-info}/METADATA +32 -6
- types_boto3_redshift-1.35.74.dist-info/RECORD +20 -0
- types_boto3_redshift-1.35.71.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.74.dist-info}/LICENSE +0 -0
- {types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.74.dist-info}/WHEEL +0 -0
- {types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.74.dist-info}/top_level.txt +0 -0
types_boto3_redshift/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
print(
|
|
15
|
-
"Type annotations for boto3 Redshift 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Redshift 1.35.74\n"
|
|
16
|
+
"Version: 1.35.74\n"
|
|
17
|
+
"Builder version: 8.5.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
print("1.35.
|
|
29
|
+
print("1.35.74")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_redshift/client.py
CHANGED
|
@@ -144,6 +144,8 @@ from .type_defs import (
|
|
|
144
144
|
DeleteSnapshotScheduleMessageRequestTypeDef,
|
|
145
145
|
DeleteTagsMessageRequestTypeDef,
|
|
146
146
|
DeleteUsageLimitMessageRequestTypeDef,
|
|
147
|
+
DeregisterNamespaceInputMessageRequestTypeDef,
|
|
148
|
+
DeregisterNamespaceOutputMessageTypeDef,
|
|
147
149
|
DescribeAccountAttributesMessageRequestTypeDef,
|
|
148
150
|
DescribeAuthenticationProfilesMessageRequestTypeDef,
|
|
149
151
|
DescribeAuthenticationProfilesResultTypeDef,
|
|
@@ -269,6 +271,8 @@ from .type_defs import (
|
|
|
269
271
|
PutResourcePolicyResultTypeDef,
|
|
270
272
|
RebootClusterMessageRequestTypeDef,
|
|
271
273
|
RebootClusterResultTypeDef,
|
|
274
|
+
RegisterNamespaceInputMessageRequestTypeDef,
|
|
275
|
+
RegisterNamespaceOutputMessageTypeDef,
|
|
272
276
|
RejectDataShareMessageRequestTypeDef,
|
|
273
277
|
ReservedNodeOfferingsMessageTypeDef,
|
|
274
278
|
ReservedNodesMessageTypeDef,
|
|
@@ -1026,6 +1030,17 @@ class RedshiftClient(BaseClient):
|
|
|
1026
1030
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#delete_usage_limit)
|
|
1027
1031
|
"""
|
|
1028
1032
|
|
|
1033
|
+
def deregister_namespace(
|
|
1034
|
+
self, **kwargs: Unpack[DeregisterNamespaceInputMessageRequestTypeDef]
|
|
1035
|
+
) -> DeregisterNamespaceOutputMessageTypeDef:
|
|
1036
|
+
"""
|
|
1037
|
+
Deregisters a cluster or serverless namespace from the Amazon Web Services Glue
|
|
1038
|
+
Data Catalog.
|
|
1039
|
+
|
|
1040
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/deregister_namespace.html)
|
|
1041
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#deregister_namespace)
|
|
1042
|
+
"""
|
|
1043
|
+
|
|
1029
1044
|
def describe_account_attributes(
|
|
1030
1045
|
self, **kwargs: Unpack[DescribeAccountAttributesMessageRequestTypeDef]
|
|
1031
1046
|
) -> AccountAttributeListTypeDef:
|
|
@@ -1817,6 +1832,17 @@ class RedshiftClient(BaseClient):
|
|
|
1817
1832
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#reboot_cluster)
|
|
1818
1833
|
"""
|
|
1819
1834
|
|
|
1835
|
+
def register_namespace(
|
|
1836
|
+
self, **kwargs: Unpack[RegisterNamespaceInputMessageRequestTypeDef]
|
|
1837
|
+
) -> RegisterNamespaceOutputMessageTypeDef:
|
|
1838
|
+
"""
|
|
1839
|
+
Registers a cluster or serverless namespace to the Amazon Web Services Glue
|
|
1840
|
+
Data Catalog.
|
|
1841
|
+
|
|
1842
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/register_namespace.html)
|
|
1843
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#register_namespace)
|
|
1844
|
+
"""
|
|
1845
|
+
|
|
1820
1846
|
def reject_data_share(
|
|
1821
1847
|
self, **kwargs: Unpack[RejectDataShareMessageRequestTypeDef]
|
|
1822
1848
|
) -> DataShareResponseTypeDef:
|
types_boto3_redshift/client.pyi
CHANGED
|
@@ -144,6 +144,8 @@ from .type_defs import (
|
|
|
144
144
|
DeleteSnapshotScheduleMessageRequestTypeDef,
|
|
145
145
|
DeleteTagsMessageRequestTypeDef,
|
|
146
146
|
DeleteUsageLimitMessageRequestTypeDef,
|
|
147
|
+
DeregisterNamespaceInputMessageRequestTypeDef,
|
|
148
|
+
DeregisterNamespaceOutputMessageTypeDef,
|
|
147
149
|
DescribeAccountAttributesMessageRequestTypeDef,
|
|
148
150
|
DescribeAuthenticationProfilesMessageRequestTypeDef,
|
|
149
151
|
DescribeAuthenticationProfilesResultTypeDef,
|
|
@@ -269,6 +271,8 @@ from .type_defs import (
|
|
|
269
271
|
PutResourcePolicyResultTypeDef,
|
|
270
272
|
RebootClusterMessageRequestTypeDef,
|
|
271
273
|
RebootClusterResultTypeDef,
|
|
274
|
+
RegisterNamespaceInputMessageRequestTypeDef,
|
|
275
|
+
RegisterNamespaceOutputMessageTypeDef,
|
|
272
276
|
RejectDataShareMessageRequestTypeDef,
|
|
273
277
|
ReservedNodeOfferingsMessageTypeDef,
|
|
274
278
|
ReservedNodesMessageTypeDef,
|
|
@@ -1022,6 +1026,17 @@ class RedshiftClient(BaseClient):
|
|
|
1022
1026
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#delete_usage_limit)
|
|
1023
1027
|
"""
|
|
1024
1028
|
|
|
1029
|
+
def deregister_namespace(
|
|
1030
|
+
self, **kwargs: Unpack[DeregisterNamespaceInputMessageRequestTypeDef]
|
|
1031
|
+
) -> DeregisterNamespaceOutputMessageTypeDef:
|
|
1032
|
+
"""
|
|
1033
|
+
Deregisters a cluster or serverless namespace from the Amazon Web Services Glue
|
|
1034
|
+
Data Catalog.
|
|
1035
|
+
|
|
1036
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/deregister_namespace.html)
|
|
1037
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#deregister_namespace)
|
|
1038
|
+
"""
|
|
1039
|
+
|
|
1025
1040
|
def describe_account_attributes(
|
|
1026
1041
|
self, **kwargs: Unpack[DescribeAccountAttributesMessageRequestTypeDef]
|
|
1027
1042
|
) -> AccountAttributeListTypeDef:
|
|
@@ -1813,6 +1828,17 @@ class RedshiftClient(BaseClient):
|
|
|
1813
1828
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#reboot_cluster)
|
|
1814
1829
|
"""
|
|
1815
1830
|
|
|
1831
|
+
def register_namespace(
|
|
1832
|
+
self, **kwargs: Unpack[RegisterNamespaceInputMessageRequestTypeDef]
|
|
1833
|
+
) -> RegisterNamespaceOutputMessageTypeDef:
|
|
1834
|
+
"""
|
|
1835
|
+
Registers a cluster or serverless namespace to the Amazon Web Services Glue
|
|
1836
|
+
Data Catalog.
|
|
1837
|
+
|
|
1838
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/register_namespace.html)
|
|
1839
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#register_namespace)
|
|
1840
|
+
"""
|
|
1841
|
+
|
|
1816
1842
|
def reject_data_share(
|
|
1817
1843
|
self, **kwargs: Unpack[RejectDataShareMessageRequestTypeDef]
|
|
1818
1844
|
) -> DataShareResponseTypeDef:
|
types_boto3_redshift/literals.py
CHANGED
|
@@ -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
|
]
|
|
@@ -319,6 +323,7 @@ ServiceName = Literal[
|
|
|
319
323
|
"drs",
|
|
320
324
|
"ds",
|
|
321
325
|
"ds-data",
|
|
326
|
+
"dsql",
|
|
322
327
|
"dynamodb",
|
|
323
328
|
"dynamodbstreams",
|
|
324
329
|
"ebs",
|
|
@@ -375,6 +380,7 @@ ServiceName = Literal[
|
|
|
375
380
|
"inspector-scan",
|
|
376
381
|
"inspector2",
|
|
377
382
|
"internetmonitor",
|
|
383
|
+
"invoicing",
|
|
378
384
|
"iot",
|
|
379
385
|
"iot-data",
|
|
380
386
|
"iot-jobs-data",
|
|
@@ -461,6 +467,7 @@ ServiceName = Literal[
|
|
|
461
467
|
"neptune-graph",
|
|
462
468
|
"neptunedata",
|
|
463
469
|
"network-firewall",
|
|
470
|
+
"networkflowmonitor",
|
|
464
471
|
"networkmanager",
|
|
465
472
|
"networkmonitor",
|
|
466
473
|
"notifications",
|
|
@@ -527,6 +534,7 @@ ServiceName = Literal[
|
|
|
527
534
|
"s3",
|
|
528
535
|
"s3control",
|
|
529
536
|
"s3outposts",
|
|
537
|
+
"s3tables",
|
|
530
538
|
"sagemaker",
|
|
531
539
|
"sagemaker-a2i-runtime",
|
|
532
540
|
"sagemaker-edge",
|
|
@@ -539,6 +547,7 @@ ServiceName = Literal[
|
|
|
539
547
|
"schemas",
|
|
540
548
|
"sdb",
|
|
541
549
|
"secretsmanager",
|
|
550
|
+
"security-ir",
|
|
542
551
|
"securityhub",
|
|
543
552
|
"securitylake",
|
|
544
553
|
"serverlessrepo",
|
|
@@ -32,6 +32,7 @@ __all__ = (
|
|
|
32
32
|
"DataShareStatusForConsumerType",
|
|
33
33
|
"DataShareStatusForProducerType",
|
|
34
34
|
"DataShareStatusType",
|
|
35
|
+
"DataShareTypeType",
|
|
35
36
|
"DescribeClusterDbRevisionsPaginatorName",
|
|
36
37
|
"DescribeClusterParameterGroupsPaginatorName",
|
|
37
38
|
"DescribeClusterParametersPaginatorName",
|
|
@@ -73,6 +74,7 @@ __all__ = (
|
|
|
73
74
|
"ListRecommendationsPaginatorName",
|
|
74
75
|
"LogDestinationTypeType",
|
|
75
76
|
"ModeType",
|
|
77
|
+
"NamespaceRegistrationStatusType",
|
|
76
78
|
"NodeConfigurationOptionsFilterNameType",
|
|
77
79
|
"OperatorTypeType",
|
|
78
80
|
"PaginatorName",
|
|
@@ -118,6 +120,7 @@ DataShareStatusForProducerType = Literal[
|
|
|
118
120
|
DataShareStatusType = Literal[
|
|
119
121
|
"ACTIVE", "AUTHORIZED", "AVAILABLE", "DEAUTHORIZED", "PENDING_AUTHORIZATION", "REJECTED"
|
|
120
122
|
]
|
|
123
|
+
DataShareTypeType = Literal["INTERNAL"]
|
|
121
124
|
DescribeClusterDbRevisionsPaginatorName = Literal["describe_cluster_db_revisions"]
|
|
122
125
|
DescribeClusterParameterGroupsPaginatorName = Literal["describe_cluster_parameter_groups"]
|
|
123
126
|
DescribeClusterParametersPaginatorName = Literal["describe_cluster_parameters"]
|
|
@@ -163,6 +166,7 @@ ImpactRankingTypeType = Literal["HIGH", "LOW", "MEDIUM"]
|
|
|
163
166
|
ListRecommendationsPaginatorName = Literal["list_recommendations"]
|
|
164
167
|
LogDestinationTypeType = Literal["cloudwatch", "s3"]
|
|
165
168
|
ModeType = Literal["high-performance", "standard"]
|
|
169
|
+
NamespaceRegistrationStatusType = Literal["Deregistering", "Registering"]
|
|
166
170
|
NodeConfigurationOptionsFilterNameType = Literal[
|
|
167
171
|
"EstimatedDiskUtilizationPercent", "Mode", "NodeType", "NumberOfNodes"
|
|
168
172
|
]
|
|
@@ -317,6 +321,7 @@ ServiceName = Literal[
|
|
|
317
321
|
"drs",
|
|
318
322
|
"ds",
|
|
319
323
|
"ds-data",
|
|
324
|
+
"dsql",
|
|
320
325
|
"dynamodb",
|
|
321
326
|
"dynamodbstreams",
|
|
322
327
|
"ebs",
|
|
@@ -373,6 +378,7 @@ ServiceName = Literal[
|
|
|
373
378
|
"inspector-scan",
|
|
374
379
|
"inspector2",
|
|
375
380
|
"internetmonitor",
|
|
381
|
+
"invoicing",
|
|
376
382
|
"iot",
|
|
377
383
|
"iot-data",
|
|
378
384
|
"iot-jobs-data",
|
|
@@ -459,6 +465,7 @@ ServiceName = Literal[
|
|
|
459
465
|
"neptune-graph",
|
|
460
466
|
"neptunedata",
|
|
461
467
|
"network-firewall",
|
|
468
|
+
"networkflowmonitor",
|
|
462
469
|
"networkmanager",
|
|
463
470
|
"networkmonitor",
|
|
464
471
|
"notifications",
|
|
@@ -525,6 +532,7 @@ ServiceName = Literal[
|
|
|
525
532
|
"s3",
|
|
526
533
|
"s3control",
|
|
527
534
|
"s3outposts",
|
|
535
|
+
"s3tables",
|
|
528
536
|
"sagemaker",
|
|
529
537
|
"sagemaker-a2i-runtime",
|
|
530
538
|
"sagemaker-edge",
|
|
@@ -537,6 +545,7 @@ ServiceName = Literal[
|
|
|
537
545
|
"schemas",
|
|
538
546
|
"sdb",
|
|
539
547
|
"secretsmanager",
|
|
548
|
+
"security-ir",
|
|
540
549
|
"securityhub",
|
|
541
550
|
"securitylake",
|
|
542
551
|
"serverlessrepo",
|
|
@@ -30,6 +30,7 @@ from .literals import (
|
|
|
30
30
|
ImpactRankingTypeType,
|
|
31
31
|
LogDestinationTypeType,
|
|
32
32
|
ModeType,
|
|
33
|
+
NamespaceRegistrationStatusType,
|
|
33
34
|
NodeConfigurationOptionsFilterNameType,
|
|
34
35
|
OperatorTypeType,
|
|
35
36
|
ParameterApplyTypeType,
|
|
@@ -55,9 +56,9 @@ from .literals import (
|
|
|
55
56
|
)
|
|
56
57
|
|
|
57
58
|
if sys.version_info >= (3, 12):
|
|
58
|
-
from typing import NotRequired, TypedDict
|
|
59
|
+
from typing import Literal, NotRequired, TypedDict
|
|
59
60
|
else:
|
|
60
|
-
from typing_extensions import NotRequired, TypedDict
|
|
61
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
61
62
|
|
|
62
63
|
|
|
63
64
|
__all__ = (
|
|
@@ -174,6 +175,8 @@ __all__ = (
|
|
|
174
175
|
"DeleteSnapshotScheduleMessageRequestTypeDef",
|
|
175
176
|
"DeleteTagsMessageRequestTypeDef",
|
|
176
177
|
"DeleteUsageLimitMessageRequestTypeDef",
|
|
178
|
+
"DeregisterNamespaceInputMessageRequestTypeDef",
|
|
179
|
+
"DeregisterNamespaceOutputMessageTypeDef",
|
|
177
180
|
"DescribeAccountAttributesMessageRequestTypeDef",
|
|
178
181
|
"DescribeAuthenticationProfilesMessageRequestTypeDef",
|
|
179
182
|
"DescribeAuthenticationProfilesResultTypeDef",
|
|
@@ -348,6 +351,7 @@ __all__ = (
|
|
|
348
351
|
"ModifySnapshotCopyRetentionPeriodResultTypeDef",
|
|
349
352
|
"ModifySnapshotScheduleMessageRequestTypeDef",
|
|
350
353
|
"ModifyUsageLimitMessageRequestTypeDef",
|
|
354
|
+
"NamespaceIdentifierUnionTypeDef",
|
|
351
355
|
"NetworkInterfaceTypeDef",
|
|
352
356
|
"NodeConfigurationOptionTypeDef",
|
|
353
357
|
"NodeConfigurationOptionsFilterTypeDef",
|
|
@@ -363,6 +367,7 @@ __all__ = (
|
|
|
363
367
|
"PauseClusterMessageTypeDef",
|
|
364
368
|
"PauseClusterResultTypeDef",
|
|
365
369
|
"PendingModifiedValuesTypeDef",
|
|
370
|
+
"ProvisionedIdentifierTypeDef",
|
|
366
371
|
"PurchaseReservedNodeOfferingMessageRequestTypeDef",
|
|
367
372
|
"PurchaseReservedNodeOfferingResultTypeDef",
|
|
368
373
|
"PutResourcePolicyMessageRequestTypeDef",
|
|
@@ -375,6 +380,8 @@ __all__ = (
|
|
|
375
380
|
"RecurringChargeTypeDef",
|
|
376
381
|
"RedshiftIdcApplicationTypeDef",
|
|
377
382
|
"ReferenceLinkTypeDef",
|
|
383
|
+
"RegisterNamespaceInputMessageRequestTypeDef",
|
|
384
|
+
"RegisterNamespaceOutputMessageTypeDef",
|
|
378
385
|
"RejectDataShareMessageRequestTypeDef",
|
|
379
386
|
"ReservedNodeConfigurationOptionTypeDef",
|
|
380
387
|
"ReservedNodeExchangeStatusTypeDef",
|
|
@@ -413,6 +420,7 @@ __all__ = (
|
|
|
413
420
|
"ScheduledActionTypeTypeDef",
|
|
414
421
|
"ScheduledActionsMessageTypeDef",
|
|
415
422
|
"SecondaryClusterInfoTypeDef",
|
|
423
|
+
"ServerlessIdentifierTypeDef",
|
|
416
424
|
"ServiceIntegrationsUnionOutputTypeDef",
|
|
417
425
|
"ServiceIntegrationsUnionTypeDef",
|
|
418
426
|
"ServiceIntegrationsUnionUnionTypeDef",
|
|
@@ -1330,6 +1338,15 @@ class ModifyUsageLimitMessageRequestTypeDef(TypedDict):
|
|
|
1330
1338
|
BreachAction: NotRequired[UsageLimitBreachActionType]
|
|
1331
1339
|
|
|
1332
1340
|
|
|
1341
|
+
class ProvisionedIdentifierTypeDef(TypedDict):
|
|
1342
|
+
ClusterIdentifier: str
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
class ServerlessIdentifierTypeDef(TypedDict):
|
|
1346
|
+
NamespaceIdentifier: str
|
|
1347
|
+
WorkgroupIdentifier: str
|
|
1348
|
+
|
|
1349
|
+
|
|
1333
1350
|
class NetworkInterfaceTypeDef(TypedDict):
|
|
1334
1351
|
NetworkInterfaceId: NotRequired[str]
|
|
1335
1352
|
SubnetId: NotRequired[str]
|
|
@@ -1586,6 +1603,11 @@ class DeleteAuthenticationProfileResultTypeDef(TypedDict):
|
|
|
1586
1603
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1587
1604
|
|
|
1588
1605
|
|
|
1606
|
+
class DeregisterNamespaceOutputMessageTypeDef(TypedDict):
|
|
1607
|
+
Status: NamespaceRegistrationStatusType
|
|
1608
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1609
|
+
|
|
1610
|
+
|
|
1589
1611
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
1590
1612
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1591
1613
|
|
|
@@ -1635,6 +1657,11 @@ class PartnerIntegrationOutputMessageTypeDef(TypedDict):
|
|
|
1635
1657
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1636
1658
|
|
|
1637
1659
|
|
|
1660
|
+
class RegisterNamespaceOutputMessageTypeDef(TypedDict):
|
|
1661
|
+
Status: NamespaceRegistrationStatusType
|
|
1662
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1663
|
+
|
|
1664
|
+
|
|
1638
1665
|
class ResizeProgressMessageTypeDef(TypedDict):
|
|
1639
1666
|
TargetNodeType: str
|
|
1640
1667
|
TargetNumberOfNodes: int
|
|
@@ -2059,6 +2086,7 @@ class DataShareResponseTypeDef(TypedDict):
|
|
|
2059
2086
|
AllowPubliclyAccessibleConsumers: bool
|
|
2060
2087
|
DataShareAssociations: List[DataShareAssociationTypeDef]
|
|
2061
2088
|
ManagedBy: str
|
|
2089
|
+
DataShareType: Literal["INTERNAL"]
|
|
2062
2090
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2063
2091
|
|
|
2064
2092
|
|
|
@@ -2068,6 +2096,7 @@ class DataShareTypeDef(TypedDict):
|
|
|
2068
2096
|
AllowPubliclyAccessibleConsumers: NotRequired[bool]
|
|
2069
2097
|
DataShareAssociations: NotRequired[List[DataShareAssociationTypeDef]]
|
|
2070
2098
|
ManagedBy: NotRequired[str]
|
|
2099
|
+
DataShareType: NotRequired[Literal["INTERNAL"]]
|
|
2071
2100
|
|
|
2072
2101
|
|
|
2073
2102
|
class DescribeClusterDbRevisionsMessageDescribeClusterDbRevisionsPaginateTypeDef(TypedDict):
|
|
@@ -2502,6 +2531,11 @@ class LakeFormationScopeUnionTypeDef(TypedDict):
|
|
|
2502
2531
|
LakeFormationQuery: NotRequired[LakeFormationQueryTypeDef]
|
|
2503
2532
|
|
|
2504
2533
|
|
|
2534
|
+
class NamespaceIdentifierUnionTypeDef(TypedDict):
|
|
2535
|
+
ServerlessIdentifier: NotRequired[ServerlessIdentifierTypeDef]
|
|
2536
|
+
ProvisionedIdentifier: NotRequired[ProvisionedIdentifierTypeDef]
|
|
2537
|
+
|
|
2538
|
+
|
|
2505
2539
|
class VpcEndpointTypeDef(TypedDict):
|
|
2506
2540
|
VpcEndpointId: NotRequired[str]
|
|
2507
2541
|
VpcId: NotRequired[str]
|
|
@@ -2776,6 +2810,16 @@ class IntegrationsMessageTypeDef(TypedDict):
|
|
|
2776
2810
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2777
2811
|
|
|
2778
2812
|
|
|
2813
|
+
class DeregisterNamespaceInputMessageRequestTypeDef(TypedDict):
|
|
2814
|
+
NamespaceIdentifier: NamespaceIdentifierUnionTypeDef
|
|
2815
|
+
ConsumerIdentifiers: Sequence[str]
|
|
2816
|
+
|
|
2817
|
+
|
|
2818
|
+
class RegisterNamespaceInputMessageRequestTypeDef(TypedDict):
|
|
2819
|
+
NamespaceIdentifier: NamespaceIdentifierUnionTypeDef
|
|
2820
|
+
ConsumerIdentifiers: Sequence[str]
|
|
2821
|
+
|
|
2822
|
+
|
|
2779
2823
|
class EndpointAccessResponseTypeDef(TypedDict):
|
|
2780
2824
|
ClusterIdentifier: str
|
|
2781
2825
|
ResourceOwner: str
|
|
@@ -30,6 +30,7 @@ from .literals import (
|
|
|
30
30
|
ImpactRankingTypeType,
|
|
31
31
|
LogDestinationTypeType,
|
|
32
32
|
ModeType,
|
|
33
|
+
NamespaceRegistrationStatusType,
|
|
33
34
|
NodeConfigurationOptionsFilterNameType,
|
|
34
35
|
OperatorTypeType,
|
|
35
36
|
ParameterApplyTypeType,
|
|
@@ -55,9 +56,9 @@ from .literals import (
|
|
|
55
56
|
)
|
|
56
57
|
|
|
57
58
|
if sys.version_info >= (3, 12):
|
|
58
|
-
from typing import NotRequired, TypedDict
|
|
59
|
+
from typing import Literal, NotRequired, TypedDict
|
|
59
60
|
else:
|
|
60
|
-
from typing_extensions import NotRequired, TypedDict
|
|
61
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
61
62
|
|
|
62
63
|
__all__ = (
|
|
63
64
|
"AcceptReservedNodeExchangeInputMessageRequestTypeDef",
|
|
@@ -173,6 +174,8 @@ __all__ = (
|
|
|
173
174
|
"DeleteSnapshotScheduleMessageRequestTypeDef",
|
|
174
175
|
"DeleteTagsMessageRequestTypeDef",
|
|
175
176
|
"DeleteUsageLimitMessageRequestTypeDef",
|
|
177
|
+
"DeregisterNamespaceInputMessageRequestTypeDef",
|
|
178
|
+
"DeregisterNamespaceOutputMessageTypeDef",
|
|
176
179
|
"DescribeAccountAttributesMessageRequestTypeDef",
|
|
177
180
|
"DescribeAuthenticationProfilesMessageRequestTypeDef",
|
|
178
181
|
"DescribeAuthenticationProfilesResultTypeDef",
|
|
@@ -347,6 +350,7 @@ __all__ = (
|
|
|
347
350
|
"ModifySnapshotCopyRetentionPeriodResultTypeDef",
|
|
348
351
|
"ModifySnapshotScheduleMessageRequestTypeDef",
|
|
349
352
|
"ModifyUsageLimitMessageRequestTypeDef",
|
|
353
|
+
"NamespaceIdentifierUnionTypeDef",
|
|
350
354
|
"NetworkInterfaceTypeDef",
|
|
351
355
|
"NodeConfigurationOptionTypeDef",
|
|
352
356
|
"NodeConfigurationOptionsFilterTypeDef",
|
|
@@ -362,6 +366,7 @@ __all__ = (
|
|
|
362
366
|
"PauseClusterMessageTypeDef",
|
|
363
367
|
"PauseClusterResultTypeDef",
|
|
364
368
|
"PendingModifiedValuesTypeDef",
|
|
369
|
+
"ProvisionedIdentifierTypeDef",
|
|
365
370
|
"PurchaseReservedNodeOfferingMessageRequestTypeDef",
|
|
366
371
|
"PurchaseReservedNodeOfferingResultTypeDef",
|
|
367
372
|
"PutResourcePolicyMessageRequestTypeDef",
|
|
@@ -374,6 +379,8 @@ __all__ = (
|
|
|
374
379
|
"RecurringChargeTypeDef",
|
|
375
380
|
"RedshiftIdcApplicationTypeDef",
|
|
376
381
|
"ReferenceLinkTypeDef",
|
|
382
|
+
"RegisterNamespaceInputMessageRequestTypeDef",
|
|
383
|
+
"RegisterNamespaceOutputMessageTypeDef",
|
|
377
384
|
"RejectDataShareMessageRequestTypeDef",
|
|
378
385
|
"ReservedNodeConfigurationOptionTypeDef",
|
|
379
386
|
"ReservedNodeExchangeStatusTypeDef",
|
|
@@ -412,6 +419,7 @@ __all__ = (
|
|
|
412
419
|
"ScheduledActionTypeTypeDef",
|
|
413
420
|
"ScheduledActionsMessageTypeDef",
|
|
414
421
|
"SecondaryClusterInfoTypeDef",
|
|
422
|
+
"ServerlessIdentifierTypeDef",
|
|
415
423
|
"ServiceIntegrationsUnionOutputTypeDef",
|
|
416
424
|
"ServiceIntegrationsUnionTypeDef",
|
|
417
425
|
"ServiceIntegrationsUnionUnionTypeDef",
|
|
@@ -1189,6 +1197,13 @@ class ModifyUsageLimitMessageRequestTypeDef(TypedDict):
|
|
|
1189
1197
|
Amount: NotRequired[int]
|
|
1190
1198
|
BreachAction: NotRequired[UsageLimitBreachActionType]
|
|
1191
1199
|
|
|
1200
|
+
class ProvisionedIdentifierTypeDef(TypedDict):
|
|
1201
|
+
ClusterIdentifier: str
|
|
1202
|
+
|
|
1203
|
+
class ServerlessIdentifierTypeDef(TypedDict):
|
|
1204
|
+
NamespaceIdentifier: str
|
|
1205
|
+
WorkgroupIdentifier: str
|
|
1206
|
+
|
|
1192
1207
|
class NetworkInterfaceTypeDef(TypedDict):
|
|
1193
1208
|
NetworkInterfaceId: NotRequired[str]
|
|
1194
1209
|
SubnetId: NotRequired[str]
|
|
@@ -1413,6 +1428,10 @@ class DeleteAuthenticationProfileResultTypeDef(TypedDict):
|
|
|
1413
1428
|
AuthenticationProfileName: str
|
|
1414
1429
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1415
1430
|
|
|
1431
|
+
class DeregisterNamespaceOutputMessageTypeDef(TypedDict):
|
|
1432
|
+
Status: NamespaceRegistrationStatusType
|
|
1433
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1434
|
+
|
|
1416
1435
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
1417
1436
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1418
1437
|
|
|
@@ -1456,6 +1475,10 @@ class PartnerIntegrationOutputMessageTypeDef(TypedDict):
|
|
|
1456
1475
|
PartnerName: str
|
|
1457
1476
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1458
1477
|
|
|
1478
|
+
class RegisterNamespaceOutputMessageTypeDef(TypedDict):
|
|
1479
|
+
Status: NamespaceRegistrationStatusType
|
|
1480
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1481
|
+
|
|
1459
1482
|
class ResizeProgressMessageTypeDef(TypedDict):
|
|
1460
1483
|
TargetNodeType: str
|
|
1461
1484
|
TargetNumberOfNodes: int
|
|
@@ -1833,6 +1856,7 @@ class DataShareResponseTypeDef(TypedDict):
|
|
|
1833
1856
|
AllowPubliclyAccessibleConsumers: bool
|
|
1834
1857
|
DataShareAssociations: List[DataShareAssociationTypeDef]
|
|
1835
1858
|
ManagedBy: str
|
|
1859
|
+
DataShareType: Literal["INTERNAL"]
|
|
1836
1860
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1837
1861
|
|
|
1838
1862
|
class DataShareTypeDef(TypedDict):
|
|
@@ -1841,6 +1865,7 @@ class DataShareTypeDef(TypedDict):
|
|
|
1841
1865
|
AllowPubliclyAccessibleConsumers: NotRequired[bool]
|
|
1842
1866
|
DataShareAssociations: NotRequired[List[DataShareAssociationTypeDef]]
|
|
1843
1867
|
ManagedBy: NotRequired[str]
|
|
1868
|
+
DataShareType: NotRequired[Literal["INTERNAL"]]
|
|
1844
1869
|
|
|
1845
1870
|
class DescribeClusterDbRevisionsMessageDescribeClusterDbRevisionsPaginateTypeDef(TypedDict):
|
|
1846
1871
|
ClusterIdentifier: NotRequired[str]
|
|
@@ -2219,6 +2244,10 @@ class IntegrationTypeDef(TypedDict):
|
|
|
2219
2244
|
class LakeFormationScopeUnionTypeDef(TypedDict):
|
|
2220
2245
|
LakeFormationQuery: NotRequired[LakeFormationQueryTypeDef]
|
|
2221
2246
|
|
|
2247
|
+
class NamespaceIdentifierUnionTypeDef(TypedDict):
|
|
2248
|
+
ServerlessIdentifier: NotRequired[ServerlessIdentifierTypeDef]
|
|
2249
|
+
ProvisionedIdentifier: NotRequired[ProvisionedIdentifierTypeDef]
|
|
2250
|
+
|
|
2222
2251
|
class VpcEndpointTypeDef(TypedDict):
|
|
2223
2252
|
VpcEndpointId: NotRequired[str]
|
|
2224
2253
|
VpcId: NotRequired[str]
|
|
@@ -2449,6 +2478,14 @@ class IntegrationsMessageTypeDef(TypedDict):
|
|
|
2449
2478
|
Integrations: List[IntegrationTypeDef]
|
|
2450
2479
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2451
2480
|
|
|
2481
|
+
class DeregisterNamespaceInputMessageRequestTypeDef(TypedDict):
|
|
2482
|
+
NamespaceIdentifier: NamespaceIdentifierUnionTypeDef
|
|
2483
|
+
ConsumerIdentifiers: Sequence[str]
|
|
2484
|
+
|
|
2485
|
+
class RegisterNamespaceInputMessageRequestTypeDef(TypedDict):
|
|
2486
|
+
NamespaceIdentifier: NamespaceIdentifierUnionTypeDef
|
|
2487
|
+
ConsumerIdentifiers: Sequence[str]
|
|
2488
|
+
|
|
2452
2489
|
class EndpointAccessResponseTypeDef(TypedDict):
|
|
2453
2490
|
ClusterIdentifier: str
|
|
2454
2491
|
ResourceOwner: str
|
types_boto3_redshift/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-boto3-redshift
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 Redshift 1.35.
|
|
3
|
+
Version: 1.35.74
|
|
4
|
+
Summary: Type annotations for boto3 Redshift 1.35.74 service generated with mypy-boto3-builder 8.5.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_redshift/
|
|
10
10
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
11
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3 redshift type-annotations
|
|
12
|
+
Keywords: boto3 redshift boto3-stubs type-annotations mypy typeshed autocomplete
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 Redshift 1.35.
|
|
46
|
+
Type annotations for [boto3 Redshift 1.35.74](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.5.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -60,7 +60,7 @@ More information can be found on
|
|
|
60
60
|
|
|
61
61
|
See how it helps you find and fix potential bugs:
|
|
62
62
|
|
|
63
|
-

|
|
64
64
|
|
|
65
65
|
- [types-boto3-redshift](#types-boto3-redshift)
|
|
66
66
|
- [How to install](#how-to-install)
|
|
@@ -75,6 +75,7 @@ See how it helps you find and fix potential bugs:
|
|
|
75
75
|
- [Other IDEs](#other-ides)
|
|
76
76
|
- [mypy](#mypy)
|
|
77
77
|
- [pyright](#pyright)
|
|
78
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
78
79
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
79
80
|
- [Client annotations](#client-annotations)
|
|
80
81
|
- [Paginators annotations](#paginators-annotations)
|
|
@@ -268,6 +269,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
|
|
|
268
269
|
Type checking should now work. No explicit type annotations required, write
|
|
269
270
|
your `boto3` code as usual.
|
|
270
271
|
|
|
272
|
+
<a id="pylint-compatibility"></a>
|
|
273
|
+
|
|
274
|
+
### Pylint compatibility
|
|
275
|
+
|
|
276
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
277
|
+
`types-boto3-redshift` dependency in production. However, there is an issue in
|
|
278
|
+
`pylint` that it complains about undefined variables. To fix it, set all types
|
|
279
|
+
to `object` in non-`TYPE_CHECKING` mode.
|
|
280
|
+
|
|
281
|
+
```python
|
|
282
|
+
from typing import TYPE_CHECKING
|
|
283
|
+
|
|
284
|
+
if TYPE_CHECKING:
|
|
285
|
+
from types_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
286
|
+
from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
287
|
+
from types_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
288
|
+
else:
|
|
289
|
+
EC2Client = object
|
|
290
|
+
EC2ServiceResource = object
|
|
291
|
+
BundleTaskCompleteWaiter = object
|
|
292
|
+
DescribeVolumesPaginator = object
|
|
293
|
+
|
|
294
|
+
...
|
|
295
|
+
```
|
|
296
|
+
|
|
271
297
|
<a id="explicit-type-annotations"></a>
|
|
272
298
|
|
|
273
299
|
## Explicit type annotations
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_redshift/__init__.py,sha256=hPdrXFhJObth1IufqFSZH8QRjiVuUDhhJkAv3Vzq_ZI,10978
|
|
2
|
+
types_boto3_redshift/__init__.pyi,sha256=2BefRY1k6qlge6kALJjvDJXdwLl8YPCklFQnFSgiIig,10977
|
|
3
|
+
types_boto3_redshift/__main__.py,sha256=acZ90WxIZY40baBtyB73nGu24upduX1dXBqjIQzndaI,954
|
|
4
|
+
types_boto3_redshift/client.py,sha256=vf0yc3AvAy-8kTB3tgktL1lf-OthxFhBNarPw7U_tfg,122992
|
|
5
|
+
types_boto3_redshift/client.pyi,sha256=zfBER2gZqYz8S_KGB0fWhxtx1l_ORuEBzImq0YCOt2o,122988
|
|
6
|
+
types_boto3_redshift/literals.py,sha256=7oUTaLD71uqoePSPc8P9whaOnAapzUbCIASp1M3YWyU,19901
|
|
7
|
+
types_boto3_redshift/literals.pyi,sha256=RU44fuMB8mgOuo-jfER3_h9J64YXtMsi3Ml7Bn8k0mM,19899
|
|
8
|
+
types_boto3_redshift/paginator.py,sha256=k2Ke-bWW5m9ln6Ru3f6g4IJrKcIk5511d59fLmKglKo,51610
|
|
9
|
+
types_boto3_redshift/paginator.pyi,sha256=TiwU2mZkmNSNSmbukzpkIUlKB1Yx3ldVuVriAGCR_Zo,51533
|
|
10
|
+
types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_redshift/type_defs.py,sha256=Co8Zr9sJhOCG2reKFwISTJ7w1BqAtGKDOO5_el6yZVU,107190
|
|
12
|
+
types_boto3_redshift/type_defs.pyi,sha256=XfDWwjl0ANRzrFH3_G944rvSzS2vef2gl_5JZ-mUK_A,106802
|
|
13
|
+
types_boto3_redshift/version.py,sha256=B0P5JUO-cREkwttMqs7oU9i3UOmgK6CWkZC0OK5p5h4,93
|
|
14
|
+
types_boto3_redshift/waiter.py,sha256=yrN9mKbRyamuxpNCsRVrVqQQaiqyIhwTEfwJbsLXpaY,4769
|
|
15
|
+
types_boto3_redshift/waiter.pyi,sha256=tuG9N3-nw9VfQuoAGDf7FOZTnCIHTSCPXdKL4TDFfb4,4760
|
|
16
|
+
types_boto3_redshift-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
types_boto3_redshift-1.35.74.dist-info/METADATA,sha256=r8LJFQIrkqb7F1oay8TGN052Ya1YGjQ497o_kG16wI4,21553
|
|
18
|
+
types_boto3_redshift-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
+
types_boto3_redshift-1.35.74.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
|
|
20
|
+
types_boto3_redshift-1.35.74.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_redshift/__init__.py,sha256=hPdrXFhJObth1IufqFSZH8QRjiVuUDhhJkAv3Vzq_ZI,10978
|
|
2
|
-
types_boto3_redshift/__init__.pyi,sha256=2BefRY1k6qlge6kALJjvDJXdwLl8YPCklFQnFSgiIig,10977
|
|
3
|
-
types_boto3_redshift/__main__.py,sha256=EwhQXQO7d6bbCFiDjz7avjxikTI1LEsFsyFdk_J6A9U,954
|
|
4
|
-
types_boto3_redshift/client.py,sha256=AC33QUo2Wy8Qbn2avLe6D0KldB9sWXiFfuH7QDoTLOw,121654
|
|
5
|
-
types_boto3_redshift/client.pyi,sha256=lFWO6_YClo6wc-ri_4WAMXl_CU5RHYnzfsgGU6vDN9Q,121650
|
|
6
|
-
types_boto3_redshift/literals.py,sha256=_mIo0N37aPpta_UochyP1BtjgBO4wIak5tn6C-QUMtA,19633
|
|
7
|
-
types_boto3_redshift/literals.pyi,sha256=8YFXJHdwjU1nKXzo4sRE_GQRQeXvndAunvL6v7MBrFc,19631
|
|
8
|
-
types_boto3_redshift/paginator.py,sha256=k2Ke-bWW5m9ln6Ru3f6g4IJrKcIk5511d59fLmKglKo,51610
|
|
9
|
-
types_boto3_redshift/paginator.pyi,sha256=TiwU2mZkmNSNSmbukzpkIUlKB1Yx3ldVuVriAGCR_Zo,51533
|
|
10
|
-
types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_redshift/type_defs.py,sha256=-ER7st3rZADb-Mk3ws4sPhAQiEE8u8tcy6TxcOG_voc,105748
|
|
12
|
-
types_boto3_redshift/type_defs.pyi,sha256=pDtpskkAwwxoHAt6zAkSTGZbyC6UzuhQR24k1kJfML0,105367
|
|
13
|
-
types_boto3_redshift/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
|
|
14
|
-
types_boto3_redshift/waiter.py,sha256=yrN9mKbRyamuxpNCsRVrVqQQaiqyIhwTEfwJbsLXpaY,4769
|
|
15
|
-
types_boto3_redshift/waiter.pyi,sha256=tuG9N3-nw9VfQuoAGDf7FOZTnCIHTSCPXdKL4TDFfb4,4760
|
|
16
|
-
types_boto3_redshift-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
types_boto3_redshift-1.35.71.dist-info/METADATA,sha256=KFV4cYaG9YZjNSoEj9r9ztwvuW5wH0a4vixVV0Hn9aI,20768
|
|
18
|
-
types_boto3_redshift-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
types_boto3_redshift-1.35.71.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
|
|
20
|
-
types_boto3_redshift-1.35.71.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{types_boto3_redshift-1.35.71.dist-info → types_boto3_redshift-1.35.74.dist-info}/top_level.txt
RENAMED
|
File without changes
|