types-boto3-timestream-influxdb 1.40.17__py3-none-any.whl → 1.40.53__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 types-boto3-timestream-influxdb might be problematic. Click here for more details.
- types_boto3_timestream_influxdb/__main__.py +3 -3
- types_boto3_timestream_influxdb/literals.py +10 -16
- types_boto3_timestream_influxdb/literals.pyi +10 -16
- types_boto3_timestream_influxdb/type_defs.py +119 -3
- types_boto3_timestream_influxdb/type_defs.pyi +116 -3
- types_boto3_timestream_influxdb/version.py +1 -1
- {types_boto3_timestream_influxdb-1.40.17.dist-info → types_boto3_timestream_influxdb-1.40.53.dist-info}/METADATA +4 -4
- types_boto3_timestream_influxdb-1.40.53.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.40.17.dist-info/RECORD +0 -18
- {types_boto3_timestream_influxdb-1.40.17.dist-info → types_boto3_timestream_influxdb-1.40.53.dist-info}/WHEEL +0 -0
- {types_boto3_timestream_influxdb-1.40.17.dist-info → types_boto3_timestream_influxdb-1.40.53.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_timestream_influxdb-1.40.17.dist-info → types_boto3_timestream_influxdb-1.40.53.dist-info}/top_level.txt +0 -0
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 TimestreamInfluxDB 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 TimestreamInfluxDB 1.40.53\n"
|
|
16
|
+
"Version: 1.40.53\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb.html#timestreaminfluxdb\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.53\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -25,16 +25,19 @@ else:
|
|
|
25
25
|
__all__ = (
|
|
26
26
|
"ClusterDeploymentTypeType",
|
|
27
27
|
"ClusterStatusType",
|
|
28
|
+
"DataFusionRuntimeTypeType",
|
|
28
29
|
"DbInstanceTypeType",
|
|
29
30
|
"DbStorageTypeType",
|
|
30
31
|
"DeploymentTypeType",
|
|
31
32
|
"DurationTypeType",
|
|
33
|
+
"EngineTypeType",
|
|
32
34
|
"FailoverModeType",
|
|
33
35
|
"InstanceModeType",
|
|
34
36
|
"ListDbClustersPaginatorName",
|
|
35
37
|
"ListDbInstancesForClusterPaginatorName",
|
|
36
38
|
"ListDbInstancesPaginatorName",
|
|
37
39
|
"ListDbParameterGroupsPaginatorName",
|
|
40
|
+
"LogFormatsType",
|
|
38
41
|
"LogLevelType",
|
|
39
42
|
"NetworkTypeType",
|
|
40
43
|
"PaginatorName",
|
|
@@ -50,6 +53,7 @@ ClusterDeploymentTypeType = Literal["MULTI_NODE_READ_REPLICAS"]
|
|
|
50
53
|
ClusterStatusType = Literal[
|
|
51
54
|
"AVAILABLE", "CREATING", "DELETED", "DELETING", "FAILED", "MAINTENANCE", "UPDATING"
|
|
52
55
|
]
|
|
56
|
+
DataFusionRuntimeTypeType = Literal["multi-thread", "multi-thread-alt"]
|
|
53
57
|
DbInstanceTypeType = Literal[
|
|
54
58
|
"db.influx.12xlarge",
|
|
55
59
|
"db.influx.16xlarge",
|
|
@@ -63,13 +67,15 @@ DbInstanceTypeType = Literal[
|
|
|
63
67
|
]
|
|
64
68
|
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
65
69
|
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
66
|
-
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
70
|
+
DurationTypeType = Literal["days", "hours", "milliseconds", "minutes", "seconds"]
|
|
71
|
+
EngineTypeType = Literal["INFLUXDB_V2", "INFLUXDB_V3_CORE", "INFLUXDB_V3_ENTERPRISE"]
|
|
67
72
|
FailoverModeType = Literal["AUTOMATIC", "NO_FAILOVER"]
|
|
68
|
-
InstanceModeType = Literal["PRIMARY", "REPLICA", "STANDBY"]
|
|
73
|
+
InstanceModeType = Literal["COMPACT", "INGEST", "PRIMARY", "PROCESS", "QUERY", "REPLICA", "STANDBY"]
|
|
69
74
|
ListDbClustersPaginatorName = Literal["list_db_clusters"]
|
|
70
75
|
ListDbInstancesForClusterPaginatorName = Literal["list_db_instances_for_cluster"]
|
|
71
76
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
72
77
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
78
|
+
LogFormatsType = Literal["full"]
|
|
73
79
|
LogLevelType = Literal["debug", "error", "info"]
|
|
74
80
|
NetworkTypeType = Literal["DUAL", "IPV4"]
|
|
75
81
|
StatusType = Literal[
|
|
@@ -84,7 +90,7 @@ StatusType = Literal[
|
|
|
84
90
|
"UPDATING_DEPLOYMENT_TYPE",
|
|
85
91
|
"UPDATING_INSTANCE_TYPE",
|
|
86
92
|
]
|
|
87
|
-
TracingTypeType = Literal["jaeger", "log"]
|
|
93
|
+
TracingTypeType = Literal["disabled", "jaeger", "log"]
|
|
88
94
|
TimestreamInfluxDBServiceName = Literal["timestream-influxdb"]
|
|
89
95
|
ServiceName = Literal[
|
|
90
96
|
"accessanalyzer",
|
|
@@ -370,8 +376,6 @@ ServiceName = Literal[
|
|
|
370
376
|
"omics",
|
|
371
377
|
"opensearch",
|
|
372
378
|
"opensearchserverless",
|
|
373
|
-
"opsworks",
|
|
374
|
-
"opsworkscm",
|
|
375
379
|
"organizations",
|
|
376
380
|
"osis",
|
|
377
381
|
"outposts",
|
|
@@ -453,7 +457,6 @@ ServiceName = Literal[
|
|
|
453
457
|
"shield",
|
|
454
458
|
"signer",
|
|
455
459
|
"simspaceweaver",
|
|
456
|
-
"sms",
|
|
457
460
|
"snow-device-management",
|
|
458
461
|
"snowball",
|
|
459
462
|
"sns",
|
|
@@ -504,16 +507,7 @@ ServiceName = Literal[
|
|
|
504
507
|
"xray",
|
|
505
508
|
]
|
|
506
509
|
ResourceServiceName = Literal[
|
|
507
|
-
"cloudformation",
|
|
508
|
-
"cloudwatch",
|
|
509
|
-
"dynamodb",
|
|
510
|
-
"ec2",
|
|
511
|
-
"glacier",
|
|
512
|
-
"iam",
|
|
513
|
-
"opsworks",
|
|
514
|
-
"s3",
|
|
515
|
-
"sns",
|
|
516
|
-
"sqs",
|
|
510
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
517
511
|
]
|
|
518
512
|
PaginatorName = Literal[
|
|
519
513
|
"list_db_clusters",
|
|
@@ -24,16 +24,19 @@ else:
|
|
|
24
24
|
__all__ = (
|
|
25
25
|
"ClusterDeploymentTypeType",
|
|
26
26
|
"ClusterStatusType",
|
|
27
|
+
"DataFusionRuntimeTypeType",
|
|
27
28
|
"DbInstanceTypeType",
|
|
28
29
|
"DbStorageTypeType",
|
|
29
30
|
"DeploymentTypeType",
|
|
30
31
|
"DurationTypeType",
|
|
32
|
+
"EngineTypeType",
|
|
31
33
|
"FailoverModeType",
|
|
32
34
|
"InstanceModeType",
|
|
33
35
|
"ListDbClustersPaginatorName",
|
|
34
36
|
"ListDbInstancesForClusterPaginatorName",
|
|
35
37
|
"ListDbInstancesPaginatorName",
|
|
36
38
|
"ListDbParameterGroupsPaginatorName",
|
|
39
|
+
"LogFormatsType",
|
|
37
40
|
"LogLevelType",
|
|
38
41
|
"NetworkTypeType",
|
|
39
42
|
"PaginatorName",
|
|
@@ -48,6 +51,7 @@ ClusterDeploymentTypeType = Literal["MULTI_NODE_READ_REPLICAS"]
|
|
|
48
51
|
ClusterStatusType = Literal[
|
|
49
52
|
"AVAILABLE", "CREATING", "DELETED", "DELETING", "FAILED", "MAINTENANCE", "UPDATING"
|
|
50
53
|
]
|
|
54
|
+
DataFusionRuntimeTypeType = Literal["multi-thread", "multi-thread-alt"]
|
|
51
55
|
DbInstanceTypeType = Literal[
|
|
52
56
|
"db.influx.12xlarge",
|
|
53
57
|
"db.influx.16xlarge",
|
|
@@ -61,13 +65,15 @@ DbInstanceTypeType = Literal[
|
|
|
61
65
|
]
|
|
62
66
|
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
63
67
|
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
64
|
-
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
68
|
+
DurationTypeType = Literal["days", "hours", "milliseconds", "minutes", "seconds"]
|
|
69
|
+
EngineTypeType = Literal["INFLUXDB_V2", "INFLUXDB_V3_CORE", "INFLUXDB_V3_ENTERPRISE"]
|
|
65
70
|
FailoverModeType = Literal["AUTOMATIC", "NO_FAILOVER"]
|
|
66
|
-
InstanceModeType = Literal["PRIMARY", "REPLICA", "STANDBY"]
|
|
71
|
+
InstanceModeType = Literal["COMPACT", "INGEST", "PRIMARY", "PROCESS", "QUERY", "REPLICA", "STANDBY"]
|
|
67
72
|
ListDbClustersPaginatorName = Literal["list_db_clusters"]
|
|
68
73
|
ListDbInstancesForClusterPaginatorName = Literal["list_db_instances_for_cluster"]
|
|
69
74
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
70
75
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
76
|
+
LogFormatsType = Literal["full"]
|
|
71
77
|
LogLevelType = Literal["debug", "error", "info"]
|
|
72
78
|
NetworkTypeType = Literal["DUAL", "IPV4"]
|
|
73
79
|
StatusType = Literal[
|
|
@@ -82,7 +88,7 @@ StatusType = Literal[
|
|
|
82
88
|
"UPDATING_DEPLOYMENT_TYPE",
|
|
83
89
|
"UPDATING_INSTANCE_TYPE",
|
|
84
90
|
]
|
|
85
|
-
TracingTypeType = Literal["jaeger", "log"]
|
|
91
|
+
TracingTypeType = Literal["disabled", "jaeger", "log"]
|
|
86
92
|
TimestreamInfluxDBServiceName = Literal["timestream-influxdb"]
|
|
87
93
|
ServiceName = Literal[
|
|
88
94
|
"accessanalyzer",
|
|
@@ -368,8 +374,6 @@ ServiceName = Literal[
|
|
|
368
374
|
"omics",
|
|
369
375
|
"opensearch",
|
|
370
376
|
"opensearchserverless",
|
|
371
|
-
"opsworks",
|
|
372
|
-
"opsworkscm",
|
|
373
377
|
"organizations",
|
|
374
378
|
"osis",
|
|
375
379
|
"outposts",
|
|
@@ -451,7 +455,6 @@ ServiceName = Literal[
|
|
|
451
455
|
"shield",
|
|
452
456
|
"signer",
|
|
453
457
|
"simspaceweaver",
|
|
454
|
-
"sms",
|
|
455
458
|
"snow-device-management",
|
|
456
459
|
"snowball",
|
|
457
460
|
"sns",
|
|
@@ -502,16 +505,7 @@ ServiceName = Literal[
|
|
|
502
505
|
"xray",
|
|
503
506
|
]
|
|
504
507
|
ResourceServiceName = Literal[
|
|
505
|
-
"cloudformation",
|
|
506
|
-
"cloudwatch",
|
|
507
|
-
"dynamodb",
|
|
508
|
-
"ec2",
|
|
509
|
-
"glacier",
|
|
510
|
-
"iam",
|
|
511
|
-
"opsworks",
|
|
512
|
-
"s3",
|
|
513
|
-
"sns",
|
|
514
|
-
"sqs",
|
|
508
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
515
509
|
]
|
|
516
510
|
PaginatorName = Literal[
|
|
517
511
|
"list_db_clusters",
|
|
@@ -20,10 +20,12 @@ import sys
|
|
|
20
20
|
|
|
21
21
|
from .literals import (
|
|
22
22
|
ClusterStatusType,
|
|
23
|
+
DataFusionRuntimeTypeType,
|
|
23
24
|
DbInstanceTypeType,
|
|
24
25
|
DbStorageTypeType,
|
|
25
26
|
DeploymentTypeType,
|
|
26
27
|
DurationTypeType,
|
|
28
|
+
EngineTypeType,
|
|
27
29
|
FailoverModeType,
|
|
28
30
|
InstanceModeType,
|
|
29
31
|
LogLevelType,
|
|
@@ -68,6 +70,8 @@ __all__ = (
|
|
|
68
70
|
"GetDbParameterGroupInputTypeDef",
|
|
69
71
|
"GetDbParameterGroupOutputTypeDef",
|
|
70
72
|
"InfluxDBv2ParametersTypeDef",
|
|
73
|
+
"InfluxDBv3CoreParametersTypeDef",
|
|
74
|
+
"InfluxDBv3EnterpriseParametersTypeDef",
|
|
71
75
|
"ListDbClustersInputPaginateTypeDef",
|
|
72
76
|
"ListDbClustersInputTypeDef",
|
|
73
77
|
"ListDbClustersOutputTypeDef",
|
|
@@ -85,6 +89,7 @@ __all__ = (
|
|
|
85
89
|
"LogDeliveryConfigurationTypeDef",
|
|
86
90
|
"PaginatorConfigTypeDef",
|
|
87
91
|
"ParametersTypeDef",
|
|
92
|
+
"PercentOrAbsoluteLongTypeDef",
|
|
88
93
|
"ResponseMetadataTypeDef",
|
|
89
94
|
"S3ConfigurationTypeDef",
|
|
90
95
|
"TagResourceRequestTypeDef",
|
|
@@ -119,6 +124,7 @@ DbClusterSummaryTypeDef = TypedDict(
|
|
|
119
124
|
"networkType": NotRequired[NetworkTypeType],
|
|
120
125
|
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
121
126
|
"allocatedStorage": NotRequired[int],
|
|
127
|
+
"engineType": NotRequired[EngineTypeType],
|
|
122
128
|
},
|
|
123
129
|
)
|
|
124
130
|
DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
@@ -136,6 +142,7 @@ DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
|
136
142
|
"allocatedStorage": NotRequired[int],
|
|
137
143
|
"deploymentType": NotRequired[DeploymentTypeType],
|
|
138
144
|
"instanceMode": NotRequired[InstanceModeType],
|
|
145
|
+
"instanceModes": NotRequired[List[InstanceModeType]],
|
|
139
146
|
},
|
|
140
147
|
)
|
|
141
148
|
DbInstanceSummaryTypeDef = TypedDict(
|
|
@@ -190,6 +197,11 @@ class GetDbParameterGroupInputTypeDef(TypedDict):
|
|
|
190
197
|
identifier: str
|
|
191
198
|
|
|
192
199
|
|
|
200
|
+
class PercentOrAbsoluteLongTypeDef(TypedDict):
|
|
201
|
+
percent: NotRequired[str]
|
|
202
|
+
absolute: NotRequired[int]
|
|
203
|
+
|
|
204
|
+
|
|
193
205
|
class PaginatorConfigTypeDef(TypedDict):
|
|
194
206
|
MaxItems: NotRequired[int]
|
|
195
207
|
PageSize: NotRequired[int]
|
|
@@ -322,6 +334,103 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
322
334
|
uiDisabled: NotRequired[bool]
|
|
323
335
|
|
|
324
336
|
|
|
337
|
+
class InfluxDBv3CoreParametersTypeDef(TypedDict):
|
|
338
|
+
queryFileLimit: NotRequired[int]
|
|
339
|
+
queryLogSize: NotRequired[int]
|
|
340
|
+
logFilter: NotRequired[str]
|
|
341
|
+
logFormat: NotRequired[Literal["full"]]
|
|
342
|
+
dataFusionNumThreads: NotRequired[int]
|
|
343
|
+
dataFusionRuntimeType: NotRequired[DataFusionRuntimeTypeType]
|
|
344
|
+
dataFusionRuntimeDisableLifoSlot: NotRequired[bool]
|
|
345
|
+
dataFusionRuntimeEventInterval: NotRequired[int]
|
|
346
|
+
dataFusionRuntimeGlobalQueueInterval: NotRequired[int]
|
|
347
|
+
dataFusionRuntimeMaxBlockingThreads: NotRequired[int]
|
|
348
|
+
dataFusionRuntimeMaxIoEventsPerTick: NotRequired[int]
|
|
349
|
+
dataFusionRuntimeThreadKeepAlive: NotRequired[DurationTypeDef]
|
|
350
|
+
dataFusionRuntimeThreadPriority: NotRequired[int]
|
|
351
|
+
dataFusionMaxParquetFanout: NotRequired[int]
|
|
352
|
+
dataFusionUseCachedParquetLoader: NotRequired[bool]
|
|
353
|
+
dataFusionConfig: NotRequired[str]
|
|
354
|
+
maxHttpRequestSize: NotRequired[int]
|
|
355
|
+
forceSnapshotMemThreshold: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
356
|
+
walSnapshotSize: NotRequired[int]
|
|
357
|
+
walMaxWriteBufferSize: NotRequired[int]
|
|
358
|
+
snapshottedWalFilesToKeep: NotRequired[int]
|
|
359
|
+
preemptiveCacheAge: NotRequired[DurationTypeDef]
|
|
360
|
+
parquetMemCachePrunePercentage: NotRequired[float]
|
|
361
|
+
parquetMemCachePruneInterval: NotRequired[DurationTypeDef]
|
|
362
|
+
disableParquetMemCache: NotRequired[bool]
|
|
363
|
+
parquetMemCacheQueryPathDuration: NotRequired[DurationTypeDef]
|
|
364
|
+
lastCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
365
|
+
distinctCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
366
|
+
gen1Duration: NotRequired[DurationTypeDef]
|
|
367
|
+
execMemPoolBytes: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
368
|
+
parquetMemCacheSize: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
369
|
+
walReplayFailOnError: NotRequired[bool]
|
|
370
|
+
walReplayConcurrencyLimit: NotRequired[int]
|
|
371
|
+
tableIndexCacheMaxEntries: NotRequired[int]
|
|
372
|
+
tableIndexCacheConcurrencyLimit: NotRequired[int]
|
|
373
|
+
gen1LookbackDuration: NotRequired[DurationTypeDef]
|
|
374
|
+
retentionCheckInterval: NotRequired[DurationTypeDef]
|
|
375
|
+
deleteGracePeriod: NotRequired[DurationTypeDef]
|
|
376
|
+
hardDeleteDefaultDuration: NotRequired[DurationTypeDef]
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class InfluxDBv3EnterpriseParametersTypeDef(TypedDict):
|
|
380
|
+
ingestQueryInstances: int
|
|
381
|
+
queryOnlyInstances: int
|
|
382
|
+
dedicatedCompactor: bool
|
|
383
|
+
queryFileLimit: NotRequired[int]
|
|
384
|
+
queryLogSize: NotRequired[int]
|
|
385
|
+
logFilter: NotRequired[str]
|
|
386
|
+
logFormat: NotRequired[Literal["full"]]
|
|
387
|
+
dataFusionNumThreads: NotRequired[int]
|
|
388
|
+
dataFusionRuntimeType: NotRequired[DataFusionRuntimeTypeType]
|
|
389
|
+
dataFusionRuntimeDisableLifoSlot: NotRequired[bool]
|
|
390
|
+
dataFusionRuntimeEventInterval: NotRequired[int]
|
|
391
|
+
dataFusionRuntimeGlobalQueueInterval: NotRequired[int]
|
|
392
|
+
dataFusionRuntimeMaxBlockingThreads: NotRequired[int]
|
|
393
|
+
dataFusionRuntimeMaxIoEventsPerTick: NotRequired[int]
|
|
394
|
+
dataFusionRuntimeThreadKeepAlive: NotRequired[DurationTypeDef]
|
|
395
|
+
dataFusionRuntimeThreadPriority: NotRequired[int]
|
|
396
|
+
dataFusionMaxParquetFanout: NotRequired[int]
|
|
397
|
+
dataFusionUseCachedParquetLoader: NotRequired[bool]
|
|
398
|
+
dataFusionConfig: NotRequired[str]
|
|
399
|
+
maxHttpRequestSize: NotRequired[int]
|
|
400
|
+
forceSnapshotMemThreshold: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
401
|
+
walSnapshotSize: NotRequired[int]
|
|
402
|
+
walMaxWriteBufferSize: NotRequired[int]
|
|
403
|
+
snapshottedWalFilesToKeep: NotRequired[int]
|
|
404
|
+
preemptiveCacheAge: NotRequired[DurationTypeDef]
|
|
405
|
+
parquetMemCachePrunePercentage: NotRequired[float]
|
|
406
|
+
parquetMemCachePruneInterval: NotRequired[DurationTypeDef]
|
|
407
|
+
disableParquetMemCache: NotRequired[bool]
|
|
408
|
+
parquetMemCacheQueryPathDuration: NotRequired[DurationTypeDef]
|
|
409
|
+
lastCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
410
|
+
distinctCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
411
|
+
gen1Duration: NotRequired[DurationTypeDef]
|
|
412
|
+
execMemPoolBytes: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
413
|
+
parquetMemCacheSize: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
414
|
+
walReplayFailOnError: NotRequired[bool]
|
|
415
|
+
walReplayConcurrencyLimit: NotRequired[int]
|
|
416
|
+
tableIndexCacheMaxEntries: NotRequired[int]
|
|
417
|
+
tableIndexCacheConcurrencyLimit: NotRequired[int]
|
|
418
|
+
gen1LookbackDuration: NotRequired[DurationTypeDef]
|
|
419
|
+
retentionCheckInterval: NotRequired[DurationTypeDef]
|
|
420
|
+
deleteGracePeriod: NotRequired[DurationTypeDef]
|
|
421
|
+
hardDeleteDefaultDuration: NotRequired[DurationTypeDef]
|
|
422
|
+
compactionRowLimit: NotRequired[int]
|
|
423
|
+
compactionMaxNumFilesPerPlan: NotRequired[int]
|
|
424
|
+
compactionGen2Duration: NotRequired[DurationTypeDef]
|
|
425
|
+
compactionMultipliers: NotRequired[str]
|
|
426
|
+
compactionCleanupWait: NotRequired[DurationTypeDef]
|
|
427
|
+
compactionCheckInterval: NotRequired[DurationTypeDef]
|
|
428
|
+
lastValueCacheDisableFromHistory: NotRequired[bool]
|
|
429
|
+
distinctValueCacheDisableFromHistory: NotRequired[bool]
|
|
430
|
+
replicationInterval: NotRequired[DurationTypeDef]
|
|
431
|
+
catalogSyncInterval: NotRequired[DurationTypeDef]
|
|
432
|
+
|
|
433
|
+
|
|
325
434
|
class ListDbClustersInputPaginateTypeDef(TypedDict):
|
|
326
435
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
327
436
|
|
|
@@ -345,24 +454,26 @@ class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
|
345
454
|
|
|
346
455
|
class ParametersTypeDef(TypedDict):
|
|
347
456
|
InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
|
|
457
|
+
InfluxDBv3Core: NotRequired[InfluxDBv3CoreParametersTypeDef]
|
|
458
|
+
InfluxDBv3Enterprise: NotRequired[InfluxDBv3EnterpriseParametersTypeDef]
|
|
348
459
|
|
|
349
460
|
|
|
350
461
|
class CreateDbClusterInputTypeDef(TypedDict):
|
|
351
462
|
name: str
|
|
352
|
-
password: str
|
|
353
463
|
dbInstanceType: DbInstanceTypeType
|
|
354
|
-
allocatedStorage: int
|
|
355
464
|
vpcSubnetIds: Sequence[str]
|
|
356
465
|
vpcSecurityGroupIds: Sequence[str]
|
|
357
|
-
deploymentType: Literal["MULTI_NODE_READ_REPLICAS"]
|
|
358
466
|
username: NotRequired[str]
|
|
467
|
+
password: NotRequired[str]
|
|
359
468
|
organization: NotRequired[str]
|
|
360
469
|
bucket: NotRequired[str]
|
|
361
470
|
port: NotRequired[int]
|
|
362
471
|
dbParameterGroupIdentifier: NotRequired[str]
|
|
363
472
|
dbStorageType: NotRequired[DbStorageTypeType]
|
|
473
|
+
allocatedStorage: NotRequired[int]
|
|
364
474
|
networkType: NotRequired[NetworkTypeType]
|
|
365
475
|
publiclyAccessible: NotRequired[bool]
|
|
476
|
+
deploymentType: NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]]
|
|
366
477
|
failoverMode: NotRequired[FailoverModeType]
|
|
367
478
|
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
368
479
|
tags: NotRequired[Mapping[str, str]]
|
|
@@ -412,6 +523,7 @@ CreateDbInstanceOutputTypeDef = TypedDict(
|
|
|
412
523
|
"influxAuthParametersSecretArn": str,
|
|
413
524
|
"dbClusterId": str,
|
|
414
525
|
"instanceMode": InstanceModeType,
|
|
526
|
+
"instanceModes": List[InstanceModeType],
|
|
415
527
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
416
528
|
},
|
|
417
529
|
)
|
|
@@ -439,6 +551,7 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
|
439
551
|
"influxAuthParametersSecretArn": str,
|
|
440
552
|
"dbClusterId": str,
|
|
441
553
|
"instanceMode": InstanceModeType,
|
|
554
|
+
"instanceModes": List[InstanceModeType],
|
|
442
555
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
443
556
|
},
|
|
444
557
|
)
|
|
@@ -457,6 +570,7 @@ GetDbClusterOutputTypeDef = TypedDict(
|
|
|
457
570
|
"networkType": NetworkTypeType,
|
|
458
571
|
"dbStorageType": DbStorageTypeType,
|
|
459
572
|
"allocatedStorage": int,
|
|
573
|
+
"engineType": EngineTypeType,
|
|
460
574
|
"publiclyAccessible": bool,
|
|
461
575
|
"dbParameterGroupIdentifier": str,
|
|
462
576
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
@@ -491,6 +605,7 @@ GetDbInstanceOutputTypeDef = TypedDict(
|
|
|
491
605
|
"influxAuthParametersSecretArn": str,
|
|
492
606
|
"dbClusterId": str,
|
|
493
607
|
"instanceMode": InstanceModeType,
|
|
608
|
+
"instanceModes": List[InstanceModeType],
|
|
494
609
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
495
610
|
},
|
|
496
611
|
)
|
|
@@ -540,6 +655,7 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
|
540
655
|
"influxAuthParametersSecretArn": str,
|
|
541
656
|
"dbClusterId": str,
|
|
542
657
|
"instanceMode": InstanceModeType,
|
|
658
|
+
"instanceModes": List[InstanceModeType],
|
|
543
659
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
544
660
|
},
|
|
545
661
|
)
|
|
@@ -20,10 +20,12 @@ import sys
|
|
|
20
20
|
|
|
21
21
|
from .literals import (
|
|
22
22
|
ClusterStatusType,
|
|
23
|
+
DataFusionRuntimeTypeType,
|
|
23
24
|
DbInstanceTypeType,
|
|
24
25
|
DbStorageTypeType,
|
|
25
26
|
DeploymentTypeType,
|
|
26
27
|
DurationTypeType,
|
|
28
|
+
EngineTypeType,
|
|
27
29
|
FailoverModeType,
|
|
28
30
|
InstanceModeType,
|
|
29
31
|
LogLevelType,
|
|
@@ -67,6 +69,8 @@ __all__ = (
|
|
|
67
69
|
"GetDbParameterGroupInputTypeDef",
|
|
68
70
|
"GetDbParameterGroupOutputTypeDef",
|
|
69
71
|
"InfluxDBv2ParametersTypeDef",
|
|
72
|
+
"InfluxDBv3CoreParametersTypeDef",
|
|
73
|
+
"InfluxDBv3EnterpriseParametersTypeDef",
|
|
70
74
|
"ListDbClustersInputPaginateTypeDef",
|
|
71
75
|
"ListDbClustersInputTypeDef",
|
|
72
76
|
"ListDbClustersOutputTypeDef",
|
|
@@ -84,6 +88,7 @@ __all__ = (
|
|
|
84
88
|
"LogDeliveryConfigurationTypeDef",
|
|
85
89
|
"PaginatorConfigTypeDef",
|
|
86
90
|
"ParametersTypeDef",
|
|
91
|
+
"PercentOrAbsoluteLongTypeDef",
|
|
87
92
|
"ResponseMetadataTypeDef",
|
|
88
93
|
"S3ConfigurationTypeDef",
|
|
89
94
|
"TagResourceRequestTypeDef",
|
|
@@ -116,6 +121,7 @@ DbClusterSummaryTypeDef = TypedDict(
|
|
|
116
121
|
"networkType": NotRequired[NetworkTypeType],
|
|
117
122
|
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
118
123
|
"allocatedStorage": NotRequired[int],
|
|
124
|
+
"engineType": NotRequired[EngineTypeType],
|
|
119
125
|
},
|
|
120
126
|
)
|
|
121
127
|
DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
@@ -133,6 +139,7 @@ DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
|
133
139
|
"allocatedStorage": NotRequired[int],
|
|
134
140
|
"deploymentType": NotRequired[DeploymentTypeType],
|
|
135
141
|
"instanceMode": NotRequired[InstanceModeType],
|
|
142
|
+
"instanceModes": NotRequired[List[InstanceModeType]],
|
|
136
143
|
},
|
|
137
144
|
)
|
|
138
145
|
DbInstanceSummaryTypeDef = TypedDict(
|
|
@@ -180,6 +187,10 @@ class GetDbInstanceInputTypeDef(TypedDict):
|
|
|
180
187
|
class GetDbParameterGroupInputTypeDef(TypedDict):
|
|
181
188
|
identifier: str
|
|
182
189
|
|
|
190
|
+
class PercentOrAbsoluteLongTypeDef(TypedDict):
|
|
191
|
+
percent: NotRequired[str]
|
|
192
|
+
absolute: NotRequired[int]
|
|
193
|
+
|
|
183
194
|
class PaginatorConfigTypeDef(TypedDict):
|
|
184
195
|
MaxItems: NotRequired[int]
|
|
185
196
|
PageSize: NotRequired[int]
|
|
@@ -293,6 +304,101 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
293
304
|
storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
|
|
294
305
|
uiDisabled: NotRequired[bool]
|
|
295
306
|
|
|
307
|
+
class InfluxDBv3CoreParametersTypeDef(TypedDict):
|
|
308
|
+
queryFileLimit: NotRequired[int]
|
|
309
|
+
queryLogSize: NotRequired[int]
|
|
310
|
+
logFilter: NotRequired[str]
|
|
311
|
+
logFormat: NotRequired[Literal["full"]]
|
|
312
|
+
dataFusionNumThreads: NotRequired[int]
|
|
313
|
+
dataFusionRuntimeType: NotRequired[DataFusionRuntimeTypeType]
|
|
314
|
+
dataFusionRuntimeDisableLifoSlot: NotRequired[bool]
|
|
315
|
+
dataFusionRuntimeEventInterval: NotRequired[int]
|
|
316
|
+
dataFusionRuntimeGlobalQueueInterval: NotRequired[int]
|
|
317
|
+
dataFusionRuntimeMaxBlockingThreads: NotRequired[int]
|
|
318
|
+
dataFusionRuntimeMaxIoEventsPerTick: NotRequired[int]
|
|
319
|
+
dataFusionRuntimeThreadKeepAlive: NotRequired[DurationTypeDef]
|
|
320
|
+
dataFusionRuntimeThreadPriority: NotRequired[int]
|
|
321
|
+
dataFusionMaxParquetFanout: NotRequired[int]
|
|
322
|
+
dataFusionUseCachedParquetLoader: NotRequired[bool]
|
|
323
|
+
dataFusionConfig: NotRequired[str]
|
|
324
|
+
maxHttpRequestSize: NotRequired[int]
|
|
325
|
+
forceSnapshotMemThreshold: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
326
|
+
walSnapshotSize: NotRequired[int]
|
|
327
|
+
walMaxWriteBufferSize: NotRequired[int]
|
|
328
|
+
snapshottedWalFilesToKeep: NotRequired[int]
|
|
329
|
+
preemptiveCacheAge: NotRequired[DurationTypeDef]
|
|
330
|
+
parquetMemCachePrunePercentage: NotRequired[float]
|
|
331
|
+
parquetMemCachePruneInterval: NotRequired[DurationTypeDef]
|
|
332
|
+
disableParquetMemCache: NotRequired[bool]
|
|
333
|
+
parquetMemCacheQueryPathDuration: NotRequired[DurationTypeDef]
|
|
334
|
+
lastCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
335
|
+
distinctCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
336
|
+
gen1Duration: NotRequired[DurationTypeDef]
|
|
337
|
+
execMemPoolBytes: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
338
|
+
parquetMemCacheSize: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
339
|
+
walReplayFailOnError: NotRequired[bool]
|
|
340
|
+
walReplayConcurrencyLimit: NotRequired[int]
|
|
341
|
+
tableIndexCacheMaxEntries: NotRequired[int]
|
|
342
|
+
tableIndexCacheConcurrencyLimit: NotRequired[int]
|
|
343
|
+
gen1LookbackDuration: NotRequired[DurationTypeDef]
|
|
344
|
+
retentionCheckInterval: NotRequired[DurationTypeDef]
|
|
345
|
+
deleteGracePeriod: NotRequired[DurationTypeDef]
|
|
346
|
+
hardDeleteDefaultDuration: NotRequired[DurationTypeDef]
|
|
347
|
+
|
|
348
|
+
class InfluxDBv3EnterpriseParametersTypeDef(TypedDict):
|
|
349
|
+
ingestQueryInstances: int
|
|
350
|
+
queryOnlyInstances: int
|
|
351
|
+
dedicatedCompactor: bool
|
|
352
|
+
queryFileLimit: NotRequired[int]
|
|
353
|
+
queryLogSize: NotRequired[int]
|
|
354
|
+
logFilter: NotRequired[str]
|
|
355
|
+
logFormat: NotRequired[Literal["full"]]
|
|
356
|
+
dataFusionNumThreads: NotRequired[int]
|
|
357
|
+
dataFusionRuntimeType: NotRequired[DataFusionRuntimeTypeType]
|
|
358
|
+
dataFusionRuntimeDisableLifoSlot: NotRequired[bool]
|
|
359
|
+
dataFusionRuntimeEventInterval: NotRequired[int]
|
|
360
|
+
dataFusionRuntimeGlobalQueueInterval: NotRequired[int]
|
|
361
|
+
dataFusionRuntimeMaxBlockingThreads: NotRequired[int]
|
|
362
|
+
dataFusionRuntimeMaxIoEventsPerTick: NotRequired[int]
|
|
363
|
+
dataFusionRuntimeThreadKeepAlive: NotRequired[DurationTypeDef]
|
|
364
|
+
dataFusionRuntimeThreadPriority: NotRequired[int]
|
|
365
|
+
dataFusionMaxParquetFanout: NotRequired[int]
|
|
366
|
+
dataFusionUseCachedParquetLoader: NotRequired[bool]
|
|
367
|
+
dataFusionConfig: NotRequired[str]
|
|
368
|
+
maxHttpRequestSize: NotRequired[int]
|
|
369
|
+
forceSnapshotMemThreshold: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
370
|
+
walSnapshotSize: NotRequired[int]
|
|
371
|
+
walMaxWriteBufferSize: NotRequired[int]
|
|
372
|
+
snapshottedWalFilesToKeep: NotRequired[int]
|
|
373
|
+
preemptiveCacheAge: NotRequired[DurationTypeDef]
|
|
374
|
+
parquetMemCachePrunePercentage: NotRequired[float]
|
|
375
|
+
parquetMemCachePruneInterval: NotRequired[DurationTypeDef]
|
|
376
|
+
disableParquetMemCache: NotRequired[bool]
|
|
377
|
+
parquetMemCacheQueryPathDuration: NotRequired[DurationTypeDef]
|
|
378
|
+
lastCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
379
|
+
distinctCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
380
|
+
gen1Duration: NotRequired[DurationTypeDef]
|
|
381
|
+
execMemPoolBytes: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
382
|
+
parquetMemCacheSize: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
383
|
+
walReplayFailOnError: NotRequired[bool]
|
|
384
|
+
walReplayConcurrencyLimit: NotRequired[int]
|
|
385
|
+
tableIndexCacheMaxEntries: NotRequired[int]
|
|
386
|
+
tableIndexCacheConcurrencyLimit: NotRequired[int]
|
|
387
|
+
gen1LookbackDuration: NotRequired[DurationTypeDef]
|
|
388
|
+
retentionCheckInterval: NotRequired[DurationTypeDef]
|
|
389
|
+
deleteGracePeriod: NotRequired[DurationTypeDef]
|
|
390
|
+
hardDeleteDefaultDuration: NotRequired[DurationTypeDef]
|
|
391
|
+
compactionRowLimit: NotRequired[int]
|
|
392
|
+
compactionMaxNumFilesPerPlan: NotRequired[int]
|
|
393
|
+
compactionGen2Duration: NotRequired[DurationTypeDef]
|
|
394
|
+
compactionMultipliers: NotRequired[str]
|
|
395
|
+
compactionCleanupWait: NotRequired[DurationTypeDef]
|
|
396
|
+
compactionCheckInterval: NotRequired[DurationTypeDef]
|
|
397
|
+
lastValueCacheDisableFromHistory: NotRequired[bool]
|
|
398
|
+
distinctValueCacheDisableFromHistory: NotRequired[bool]
|
|
399
|
+
replicationInterval: NotRequired[DurationTypeDef]
|
|
400
|
+
catalogSyncInterval: NotRequired[DurationTypeDef]
|
|
401
|
+
|
|
296
402
|
class ListDbClustersInputPaginateTypeDef(TypedDict):
|
|
297
403
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
298
404
|
|
|
@@ -311,23 +417,25 @@ class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
|
311
417
|
|
|
312
418
|
class ParametersTypeDef(TypedDict):
|
|
313
419
|
InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
|
|
420
|
+
InfluxDBv3Core: NotRequired[InfluxDBv3CoreParametersTypeDef]
|
|
421
|
+
InfluxDBv3Enterprise: NotRequired[InfluxDBv3EnterpriseParametersTypeDef]
|
|
314
422
|
|
|
315
423
|
class CreateDbClusterInputTypeDef(TypedDict):
|
|
316
424
|
name: str
|
|
317
|
-
password: str
|
|
318
425
|
dbInstanceType: DbInstanceTypeType
|
|
319
|
-
allocatedStorage: int
|
|
320
426
|
vpcSubnetIds: Sequence[str]
|
|
321
427
|
vpcSecurityGroupIds: Sequence[str]
|
|
322
|
-
deploymentType: Literal["MULTI_NODE_READ_REPLICAS"]
|
|
323
428
|
username: NotRequired[str]
|
|
429
|
+
password: NotRequired[str]
|
|
324
430
|
organization: NotRequired[str]
|
|
325
431
|
bucket: NotRequired[str]
|
|
326
432
|
port: NotRequired[int]
|
|
327
433
|
dbParameterGroupIdentifier: NotRequired[str]
|
|
328
434
|
dbStorageType: NotRequired[DbStorageTypeType]
|
|
435
|
+
allocatedStorage: NotRequired[int]
|
|
329
436
|
networkType: NotRequired[NetworkTypeType]
|
|
330
437
|
publiclyAccessible: NotRequired[bool]
|
|
438
|
+
deploymentType: NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]]
|
|
331
439
|
failoverMode: NotRequired[FailoverModeType]
|
|
332
440
|
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
333
441
|
tags: NotRequired[Mapping[str, str]]
|
|
@@ -375,6 +483,7 @@ CreateDbInstanceOutputTypeDef = TypedDict(
|
|
|
375
483
|
"influxAuthParametersSecretArn": str,
|
|
376
484
|
"dbClusterId": str,
|
|
377
485
|
"instanceMode": InstanceModeType,
|
|
486
|
+
"instanceModes": List[InstanceModeType],
|
|
378
487
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
379
488
|
},
|
|
380
489
|
)
|
|
@@ -402,6 +511,7 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
|
402
511
|
"influxAuthParametersSecretArn": str,
|
|
403
512
|
"dbClusterId": str,
|
|
404
513
|
"instanceMode": InstanceModeType,
|
|
514
|
+
"instanceModes": List[InstanceModeType],
|
|
405
515
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
406
516
|
},
|
|
407
517
|
)
|
|
@@ -420,6 +530,7 @@ GetDbClusterOutputTypeDef = TypedDict(
|
|
|
420
530
|
"networkType": NetworkTypeType,
|
|
421
531
|
"dbStorageType": DbStorageTypeType,
|
|
422
532
|
"allocatedStorage": int,
|
|
533
|
+
"engineType": EngineTypeType,
|
|
423
534
|
"publiclyAccessible": bool,
|
|
424
535
|
"dbParameterGroupIdentifier": str,
|
|
425
536
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
@@ -454,6 +565,7 @@ GetDbInstanceOutputTypeDef = TypedDict(
|
|
|
454
565
|
"influxAuthParametersSecretArn": str,
|
|
455
566
|
"dbClusterId": str,
|
|
456
567
|
"instanceMode": InstanceModeType,
|
|
568
|
+
"instanceModes": List[InstanceModeType],
|
|
457
569
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
458
570
|
},
|
|
459
571
|
)
|
|
@@ -500,6 +612,7 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
|
500
612
|
"influxAuthParametersSecretArn": str,
|
|
501
613
|
"dbClusterId": str,
|
|
502
614
|
"instanceMode": InstanceModeType,
|
|
615
|
+
"instanceModes": List[InstanceModeType],
|
|
503
616
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
504
617
|
},
|
|
505
618
|
)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-timestream-influxdb
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 TimestreamInfluxDB 1.40.
|
|
3
|
+
Version: 1.40.53
|
|
4
|
+
Summary: Type annotations for boto3 TimestreamInfluxDB 1.40.53 service generated with mypy-boto3-builder 8.11.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
|
|
@@ -57,7 +57,7 @@ Dynamic: summary
|
|
|
57
57
|

|
|
58
58
|
|
|
59
59
|
Type annotations for
|
|
60
|
-
[boto3 TimestreamInfluxDB 1.40.
|
|
60
|
+
[boto3 TimestreamInfluxDB 1.40.53](https://pypi.org/project/boto3/) compatible
|
|
61
61
|
with [VSCode](https://code.visualstudio.com/),
|
|
62
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.53' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3` AWS SDK.
|
|
124
124
|
3. Add `TimestreamInfluxDB` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_timestream_influxdb/__init__.py,sha256=hkKrORQHj15qX05yKFf8Y9JygBmQ7qfYMwaRhIKoZ_s,1518
|
|
2
|
+
types_boto3_timestream_influxdb/__init__.pyi,sha256=fvwK4eOCk1guAXDQpyKRnho6YhqRcEiTlLQGq-TNh1U,1517
|
|
3
|
+
types_boto3_timestream_influxdb/__main__.py,sha256=m6Qj8h0soI4E1lOCQGzwX0EdBNgLxgRKIRNBT-7L_6E,1031
|
|
4
|
+
types_boto3_timestream_influxdb/client.py,sha256=avffqlhHjEhGB2gZkzA37_5BRFuv23Fj1vGEPo6Ceno,15679
|
|
5
|
+
types_boto3_timestream_influxdb/client.pyi,sha256=rI7QI4U9xiLBKlDrUaIlP0uS92BCsVbByDCMnGVabZ0,15676
|
|
6
|
+
types_boto3_timestream_influxdb/literals.py,sha256=l__tvYV1MeBc9FdgQeh7JNACKSyB6w8AYqX5CRN-pzo,11359
|
|
7
|
+
types_boto3_timestream_influxdb/literals.pyi,sha256=nlLQjiP97eB2tcApK8CkE0JRb-k4R5vKdyXYsb0PZ7M,11357
|
|
8
|
+
types_boto3_timestream_influxdb/paginator.py,sha256=nbnAAxoOlx1Wt9deX1iLfkP-jI1aKYgwz4rvU-2yqtk,6780
|
|
9
|
+
types_boto3_timestream_influxdb/paginator.pyi,sha256=dSrZP4S5pDpW8ogoAvb2xgwW4qiLkkml-F9NjpSCBGQ,6767
|
|
10
|
+
types_boto3_timestream_influxdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_timestream_influxdb/type_defs.py,sha256=qJVDlTNUXJLTHvF1I0zAfoJIh0Y4wFLHMo4I9vfk4qA,23145
|
|
12
|
+
types_boto3_timestream_influxdb/type_defs.pyi,sha256=Za0J_3w98ntKe9CtzP2phHO5xnlJAzU7HWy5jE4uF6k,23100
|
|
13
|
+
types_boto3_timestream_influxdb/version.py,sha256=2KPGmlZUP1YhaMzmPUv2FRQZiwQ559pyybGys-bE_LI,93
|
|
14
|
+
types_boto3_timestream_influxdb-1.40.53.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_timestream_influxdb-1.40.53.dist-info/METADATA,sha256=3qef7N98WcGEXqdsWAMZcr8-CXIAhB36ThBQ9u7_kIU,16104
|
|
16
|
+
types_boto3_timestream_influxdb-1.40.53.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
types_boto3_timestream_influxdb-1.40.53.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
+
types_boto3_timestream_influxdb-1.40.53.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_timestream_influxdb/__init__.py,sha256=hkKrORQHj15qX05yKFf8Y9JygBmQ7qfYMwaRhIKoZ_s,1518
|
|
2
|
-
types_boto3_timestream_influxdb/__init__.pyi,sha256=fvwK4eOCk1guAXDQpyKRnho6YhqRcEiTlLQGq-TNh1U,1517
|
|
3
|
-
types_boto3_timestream_influxdb/__main__.py,sha256=Ajak3YloQZvGf-9813ZgCQcKnCndEviDQnHEGNxJibo,1031
|
|
4
|
-
types_boto3_timestream_influxdb/client.py,sha256=avffqlhHjEhGB2gZkzA37_5BRFuv23Fj1vGEPo6Ceno,15679
|
|
5
|
-
types_boto3_timestream_influxdb/client.pyi,sha256=rI7QI4U9xiLBKlDrUaIlP0uS92BCsVbByDCMnGVabZ0,15676
|
|
6
|
-
types_boto3_timestream_influxdb/literals.py,sha256=bRopLETp0E5YVVIxbExLejXNfP7vaSZ5WQDaertD9c0,11124
|
|
7
|
-
types_boto3_timestream_influxdb/literals.pyi,sha256=Aj8EbEe-W5ZwZIGLa0bqjAoDM2duG1g3Noj9dLUl7BU,11122
|
|
8
|
-
types_boto3_timestream_influxdb/paginator.py,sha256=nbnAAxoOlx1Wt9deX1iLfkP-jI1aKYgwz4rvU-2yqtk,6780
|
|
9
|
-
types_boto3_timestream_influxdb/paginator.pyi,sha256=dSrZP4S5pDpW8ogoAvb2xgwW4qiLkkml-F9NjpSCBGQ,6767
|
|
10
|
-
types_boto3_timestream_influxdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_timestream_influxdb/type_defs.py,sha256=Bp8TleseuWJe2LJB4LNx-hseJBPlEFXq-UVWsW-Ecck,17500
|
|
12
|
-
types_boto3_timestream_influxdb/type_defs.pyi,sha256=lW29dR97fd4Iw0vQjRaLexLaKPB6hC8Q_LesOMop0n8,17458
|
|
13
|
-
types_boto3_timestream_influxdb/version.py,sha256=5_TlnMdmZnvqQIXSXf4fdwR9oxgZ5RruxfUNKiAqr9Q,93
|
|
14
|
-
types_boto3_timestream_influxdb-1.40.17.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_timestream_influxdb-1.40.17.dist-info/METADATA,sha256=QS127_FA3Su9W4-9466GUf70FCLGfxsc_rY_VZv4HWs,16104
|
|
16
|
-
types_boto3_timestream_influxdb-1.40.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
types_boto3_timestream_influxdb-1.40.17.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
-
types_boto3_timestream_influxdb-1.40.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|