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
|
@@ -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
|
|
@@ -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
|
]
|
|
@@ -234,12 +238,15 @@ ServiceName = Literal[
|
|
|
234
238
|
"b2bi",
|
|
235
239
|
"backup",
|
|
236
240
|
"backup-gateway",
|
|
241
|
+
"backupsearch",
|
|
237
242
|
"batch",
|
|
238
243
|
"bcm-data-exports",
|
|
239
244
|
"bcm-pricing-calculator",
|
|
240
245
|
"bedrock",
|
|
241
246
|
"bedrock-agent",
|
|
242
247
|
"bedrock-agent-runtime",
|
|
248
|
+
"bedrock-data-automation",
|
|
249
|
+
"bedrock-data-automation-runtime",
|
|
243
250
|
"bedrock-runtime",
|
|
244
251
|
"billing",
|
|
245
252
|
"billingconductor",
|
|
@@ -317,6 +324,7 @@ ServiceName = Literal[
|
|
|
317
324
|
"drs",
|
|
318
325
|
"ds",
|
|
319
326
|
"ds-data",
|
|
327
|
+
"dsql",
|
|
320
328
|
"dynamodb",
|
|
321
329
|
"dynamodbstreams",
|
|
322
330
|
"ebs",
|
|
@@ -373,6 +381,7 @@ ServiceName = Literal[
|
|
|
373
381
|
"inspector-scan",
|
|
374
382
|
"inspector2",
|
|
375
383
|
"internetmonitor",
|
|
384
|
+
"invoicing",
|
|
376
385
|
"iot",
|
|
377
386
|
"iot-data",
|
|
378
387
|
"iot-jobs-data",
|
|
@@ -459,6 +468,7 @@ ServiceName = Literal[
|
|
|
459
468
|
"neptune-graph",
|
|
460
469
|
"neptunedata",
|
|
461
470
|
"network-firewall",
|
|
471
|
+
"networkflowmonitor",
|
|
462
472
|
"networkmanager",
|
|
463
473
|
"networkmonitor",
|
|
464
474
|
"notifications",
|
|
@@ -525,6 +535,7 @@ ServiceName = Literal[
|
|
|
525
535
|
"s3",
|
|
526
536
|
"s3control",
|
|
527
537
|
"s3outposts",
|
|
538
|
+
"s3tables",
|
|
528
539
|
"sagemaker",
|
|
529
540
|
"sagemaker-a2i-runtime",
|
|
530
541
|
"sagemaker-edge",
|
|
@@ -537,6 +548,7 @@ ServiceName = Literal[
|
|
|
537
548
|
"schemas",
|
|
538
549
|
"sdb",
|
|
539
550
|
"secretsmanager",
|
|
551
|
+
"security-ir",
|
|
540
552
|
"securityhub",
|
|
541
553
|
"securitylake",
|
|
542
554
|
"serverlessrepo",
|