types-boto3-timestream-influxdb 1.36.0__py3-none-any.whl → 1.36.22__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.

@@ -3,6 +3,8 @@ Type annotations for timestream-influxdb service type definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: ResponseMetadataTypeDef = ...
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  from __future__ import annotations
@@ -19,10 +19,13 @@ from __future__ import annotations
19
19
  import sys
20
20
 
21
21
  from .literals import (
22
+ ClusterStatusType,
22
23
  DbInstanceTypeType,
23
24
  DbStorageTypeType,
24
25
  DeploymentTypeType,
25
26
  DurationTypeType,
27
+ FailoverModeType,
28
+ InstanceModeType,
26
29
  LogLevelType,
27
30
  NetworkTypeType,
28
31
  StatusType,
@@ -36,42 +39,58 @@ if sys.version_info >= (3, 9):
36
39
  else:
37
40
  from typing import Dict, List, Mapping, Sequence
38
41
  if sys.version_info >= (3, 12):
39
- from typing import NotRequired, TypedDict
42
+ from typing import Literal, NotRequired, TypedDict
40
43
  else:
41
- from typing_extensions import NotRequired, TypedDict
44
+ from typing_extensions import Literal, NotRequired, TypedDict
42
45
 
43
46
  __all__ = (
44
- "CreateDbInstanceInputRequestTypeDef",
47
+ "CreateDbClusterInputTypeDef",
48
+ "CreateDbClusterOutputTypeDef",
49
+ "CreateDbInstanceInputTypeDef",
45
50
  "CreateDbInstanceOutputTypeDef",
46
- "CreateDbParameterGroupInputRequestTypeDef",
51
+ "CreateDbParameterGroupInputTypeDef",
47
52
  "CreateDbParameterGroupOutputTypeDef",
53
+ "DbClusterSummaryTypeDef",
54
+ "DbInstanceForClusterSummaryTypeDef",
48
55
  "DbInstanceSummaryTypeDef",
49
56
  "DbParameterGroupSummaryTypeDef",
50
- "DeleteDbInstanceInputRequestTypeDef",
57
+ "DeleteDbClusterInputTypeDef",
58
+ "DeleteDbClusterOutputTypeDef",
59
+ "DeleteDbInstanceInputTypeDef",
51
60
  "DeleteDbInstanceOutputTypeDef",
52
61
  "DurationTypeDef",
53
62
  "EmptyResponseMetadataTypeDef",
54
- "GetDbInstanceInputRequestTypeDef",
63
+ "GetDbClusterInputTypeDef",
64
+ "GetDbClusterOutputTypeDef",
65
+ "GetDbInstanceInputTypeDef",
55
66
  "GetDbInstanceOutputTypeDef",
56
- "GetDbParameterGroupInputRequestTypeDef",
67
+ "GetDbParameterGroupInputTypeDef",
57
68
  "GetDbParameterGroupOutputTypeDef",
58
69
  "InfluxDBv2ParametersTypeDef",
70
+ "ListDbClustersInputPaginateTypeDef",
71
+ "ListDbClustersInputTypeDef",
72
+ "ListDbClustersOutputTypeDef",
73
+ "ListDbInstancesForClusterInputPaginateTypeDef",
74
+ "ListDbInstancesForClusterInputTypeDef",
75
+ "ListDbInstancesForClusterOutputTypeDef",
59
76
  "ListDbInstancesInputPaginateTypeDef",
60
- "ListDbInstancesInputRequestTypeDef",
77
+ "ListDbInstancesInputTypeDef",
61
78
  "ListDbInstancesOutputTypeDef",
62
79
  "ListDbParameterGroupsInputPaginateTypeDef",
63
- "ListDbParameterGroupsInputRequestTypeDef",
80
+ "ListDbParameterGroupsInputTypeDef",
64
81
  "ListDbParameterGroupsOutputTypeDef",
65
- "ListTagsForResourceRequestRequestTypeDef",
82
+ "ListTagsForResourceRequestTypeDef",
66
83
  "ListTagsForResourceResponseTypeDef",
67
84
  "LogDeliveryConfigurationTypeDef",
68
85
  "PaginatorConfigTypeDef",
69
86
  "ParametersTypeDef",
70
87
  "ResponseMetadataTypeDef",
71
88
  "S3ConfigurationTypeDef",
72
- "TagResourceRequestRequestTypeDef",
73
- "UntagResourceRequestRequestTypeDef",
74
- "UpdateDbInstanceInputRequestTypeDef",
89
+ "TagResourceRequestTypeDef",
90
+ "UntagResourceRequestTypeDef",
91
+ "UpdateDbClusterInputTypeDef",
92
+ "UpdateDbClusterOutputTypeDef",
93
+ "UpdateDbInstanceInputTypeDef",
75
94
  "UpdateDbInstanceOutputTypeDef",
76
95
  )
77
96
 
@@ -82,6 +101,40 @@ class ResponseMetadataTypeDef(TypedDict):
82
101
  RetryAttempts: int
83
102
  HostId: NotRequired[str]
84
103
 
104
+ DbClusterSummaryTypeDef = TypedDict(
105
+ "DbClusterSummaryTypeDef",
106
+ {
107
+ "id": str,
108
+ "name": str,
109
+ "arn": str,
110
+ "status": NotRequired[ClusterStatusType],
111
+ "endpoint": NotRequired[str],
112
+ "readerEndpoint": NotRequired[str],
113
+ "port": NotRequired[int],
114
+ "deploymentType": NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]],
115
+ "dbInstanceType": NotRequired[DbInstanceTypeType],
116
+ "networkType": NotRequired[NetworkTypeType],
117
+ "dbStorageType": NotRequired[DbStorageTypeType],
118
+ "allocatedStorage": NotRequired[int],
119
+ },
120
+ )
121
+ DbInstanceForClusterSummaryTypeDef = TypedDict(
122
+ "DbInstanceForClusterSummaryTypeDef",
123
+ {
124
+ "id": str,
125
+ "name": str,
126
+ "arn": str,
127
+ "status": NotRequired[StatusType],
128
+ "endpoint": NotRequired[str],
129
+ "port": NotRequired[int],
130
+ "networkType": NotRequired[NetworkTypeType],
131
+ "dbInstanceType": NotRequired[DbInstanceTypeType],
132
+ "dbStorageType": NotRequired[DbStorageTypeType],
133
+ "allocatedStorage": NotRequired[int],
134
+ "deploymentType": NotRequired[DeploymentTypeType],
135
+ "instanceMode": NotRequired[InstanceModeType],
136
+ },
137
+ )
85
138
  DbInstanceSummaryTypeDef = TypedDict(
86
139
  "DbInstanceSummaryTypeDef",
87
140
  {
@@ -108,17 +161,23 @@ DbParameterGroupSummaryTypeDef = TypedDict(
108
161
  },
109
162
  )
110
163
 
111
- class DeleteDbInstanceInputRequestTypeDef(TypedDict):
164
+ class DeleteDbClusterInputTypeDef(TypedDict):
165
+ dbClusterId: str
166
+
167
+ class DeleteDbInstanceInputTypeDef(TypedDict):
112
168
  identifier: str
113
169
 
114
170
  class DurationTypeDef(TypedDict):
115
171
  durationType: DurationTypeType
116
172
  value: int
117
173
 
118
- class GetDbInstanceInputRequestTypeDef(TypedDict):
174
+ class GetDbClusterInputTypeDef(TypedDict):
175
+ dbClusterId: str
176
+
177
+ class GetDbInstanceInputTypeDef(TypedDict):
119
178
  identifier: str
120
179
 
121
- class GetDbParameterGroupInputRequestTypeDef(TypedDict):
180
+ class GetDbParameterGroupInputTypeDef(TypedDict):
122
181
  identifier: str
123
182
 
124
183
  class PaginatorConfigTypeDef(TypedDict):
@@ -126,29 +185,47 @@ class PaginatorConfigTypeDef(TypedDict):
126
185
  PageSize: NotRequired[int]
127
186
  StartingToken: NotRequired[str]
128
187
 
129
- class ListDbInstancesInputRequestTypeDef(TypedDict):
188
+ class ListDbClustersInputTypeDef(TypedDict):
189
+ nextToken: NotRequired[str]
190
+ maxResults: NotRequired[int]
191
+
192
+ class ListDbInstancesForClusterInputTypeDef(TypedDict):
193
+ dbClusterId: str
194
+ nextToken: NotRequired[str]
195
+ maxResults: NotRequired[int]
196
+
197
+ class ListDbInstancesInputTypeDef(TypedDict):
130
198
  nextToken: NotRequired[str]
131
199
  maxResults: NotRequired[int]
132
200
 
133
- class ListDbParameterGroupsInputRequestTypeDef(TypedDict):
201
+ class ListDbParameterGroupsInputTypeDef(TypedDict):
134
202
  nextToken: NotRequired[str]
135
203
  maxResults: NotRequired[int]
136
204
 
137
- class ListTagsForResourceRequestRequestTypeDef(TypedDict):
205
+ class ListTagsForResourceRequestTypeDef(TypedDict):
138
206
  resourceArn: str
139
207
 
140
208
  class S3ConfigurationTypeDef(TypedDict):
141
209
  bucketName: str
142
210
  enabled: bool
143
211
 
144
- class TagResourceRequestRequestTypeDef(TypedDict):
212
+ class TagResourceRequestTypeDef(TypedDict):
145
213
  resourceArn: str
146
214
  tags: Mapping[str, str]
147
215
 
148
- class UntagResourceRequestRequestTypeDef(TypedDict):
216
+ class UntagResourceRequestTypeDef(TypedDict):
149
217
  resourceArn: str
150
218
  tagKeys: Sequence[str]
151
219
 
220
+ class CreateDbClusterOutputTypeDef(TypedDict):
221
+ dbClusterId: str
222
+ dbClusterStatus: ClusterStatusType
223
+ ResponseMetadata: ResponseMetadataTypeDef
224
+
225
+ class DeleteDbClusterOutputTypeDef(TypedDict):
226
+ dbClusterStatus: ClusterStatusType
227
+ ResponseMetadata: ResponseMetadataTypeDef
228
+
152
229
  class EmptyResponseMetadataTypeDef(TypedDict):
153
230
  ResponseMetadata: ResponseMetadataTypeDef
154
231
 
@@ -156,6 +233,20 @@ class ListTagsForResourceResponseTypeDef(TypedDict):
156
233
  tags: Dict[str, str]
157
234
  ResponseMetadata: ResponseMetadataTypeDef
158
235
 
236
+ class UpdateDbClusterOutputTypeDef(TypedDict):
237
+ dbClusterStatus: ClusterStatusType
238
+ ResponseMetadata: ResponseMetadataTypeDef
239
+
240
+ class ListDbClustersOutputTypeDef(TypedDict):
241
+ items: List[DbClusterSummaryTypeDef]
242
+ ResponseMetadata: ResponseMetadataTypeDef
243
+ nextToken: NotRequired[str]
244
+
245
+ class ListDbInstancesForClusterOutputTypeDef(TypedDict):
246
+ items: List[DbInstanceForClusterSummaryTypeDef]
247
+ ResponseMetadata: ResponseMetadataTypeDef
248
+ nextToken: NotRequired[str]
249
+
159
250
  class ListDbInstancesOutputTypeDef(TypedDict):
160
251
  items: List[DbInstanceSummaryTypeDef]
161
252
  ResponseMetadata: ResponseMetadataTypeDef
@@ -202,6 +293,13 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
202
293
  storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
203
294
  uiDisabled: NotRequired[bool]
204
295
 
296
+ class ListDbClustersInputPaginateTypeDef(TypedDict):
297
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
298
+
299
+ class ListDbInstancesForClusterInputPaginateTypeDef(TypedDict):
300
+ dbClusterId: str
301
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
302
+
205
303
  class ListDbInstancesInputPaginateTypeDef(TypedDict):
206
304
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
207
305
 
@@ -214,7 +312,27 @@ class LogDeliveryConfigurationTypeDef(TypedDict):
214
312
  class ParametersTypeDef(TypedDict):
215
313
  InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
216
314
 
217
- class CreateDbInstanceInputRequestTypeDef(TypedDict):
315
+ class CreateDbClusterInputTypeDef(TypedDict):
316
+ name: str
317
+ password: str
318
+ dbInstanceType: DbInstanceTypeType
319
+ allocatedStorage: int
320
+ vpcSubnetIds: Sequence[str]
321
+ vpcSecurityGroupIds: Sequence[str]
322
+ deploymentType: Literal["MULTI_NODE_READ_REPLICAS"]
323
+ username: NotRequired[str]
324
+ organization: NotRequired[str]
325
+ bucket: NotRequired[str]
326
+ port: NotRequired[int]
327
+ dbParameterGroupIdentifier: NotRequired[str]
328
+ dbStorageType: NotRequired[DbStorageTypeType]
329
+ networkType: NotRequired[NetworkTypeType]
330
+ publiclyAccessible: NotRequired[bool]
331
+ failoverMode: NotRequired[FailoverModeType]
332
+ logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
333
+ tags: NotRequired[Mapping[str, str]]
334
+
335
+ class CreateDbInstanceInputTypeDef(TypedDict):
218
336
  name: str
219
337
  password: str
220
338
  dbInstanceType: DbInstanceTypeType
@@ -255,6 +373,8 @@ CreateDbInstanceOutputTypeDef = TypedDict(
255
373
  "secondaryAvailabilityZone": str,
256
374
  "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
257
375
  "influxAuthParametersSecretArn": str,
376
+ "dbClusterId": str,
377
+ "instanceMode": InstanceModeType,
258
378
  "ResponseMetadata": ResponseMetadataTypeDef,
259
379
  },
260
380
  )
@@ -280,6 +400,33 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
280
400
  "secondaryAvailabilityZone": str,
281
401
  "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
282
402
  "influxAuthParametersSecretArn": str,
403
+ "dbClusterId": str,
404
+ "instanceMode": InstanceModeType,
405
+ "ResponseMetadata": ResponseMetadataTypeDef,
406
+ },
407
+ )
408
+ GetDbClusterOutputTypeDef = TypedDict(
409
+ "GetDbClusterOutputTypeDef",
410
+ {
411
+ "id": str,
412
+ "name": str,
413
+ "arn": str,
414
+ "status": ClusterStatusType,
415
+ "endpoint": str,
416
+ "readerEndpoint": str,
417
+ "port": int,
418
+ "deploymentType": Literal["MULTI_NODE_READ_REPLICAS"],
419
+ "dbInstanceType": DbInstanceTypeType,
420
+ "networkType": NetworkTypeType,
421
+ "dbStorageType": DbStorageTypeType,
422
+ "allocatedStorage": int,
423
+ "publiclyAccessible": bool,
424
+ "dbParameterGroupIdentifier": str,
425
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
426
+ "influxAuthParametersSecretArn": str,
427
+ "vpcSubnetIds": List[str],
428
+ "vpcSecurityGroupIds": List[str],
429
+ "failoverMode": FailoverModeType,
283
430
  "ResponseMetadata": ResponseMetadataTypeDef,
284
431
  },
285
432
  )
@@ -305,17 +452,29 @@ GetDbInstanceOutputTypeDef = TypedDict(
305
452
  "secondaryAvailabilityZone": str,
306
453
  "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
307
454
  "influxAuthParametersSecretArn": str,
455
+ "dbClusterId": str,
456
+ "instanceMode": InstanceModeType,
308
457
  "ResponseMetadata": ResponseMetadataTypeDef,
309
458
  },
310
459
  )
311
460
 
312
- class UpdateDbInstanceInputRequestTypeDef(TypedDict):
461
+ class UpdateDbClusterInputTypeDef(TypedDict):
462
+ dbClusterId: str
463
+ logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
464
+ dbParameterGroupIdentifier: NotRequired[str]
465
+ port: NotRequired[int]
466
+ dbInstanceType: NotRequired[DbInstanceTypeType]
467
+ failoverMode: NotRequired[FailoverModeType]
468
+
469
+ class UpdateDbInstanceInputTypeDef(TypedDict):
313
470
  identifier: str
314
471
  logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
315
472
  dbParameterGroupIdentifier: NotRequired[str]
316
473
  port: NotRequired[int]
317
474
  dbInstanceType: NotRequired[DbInstanceTypeType]
318
475
  deploymentType: NotRequired[DeploymentTypeType]
476
+ dbStorageType: NotRequired[DbStorageTypeType]
477
+ allocatedStorage: NotRequired[int]
319
478
 
320
479
  UpdateDbInstanceOutputTypeDef = TypedDict(
321
480
  "UpdateDbInstanceOutputTypeDef",
@@ -339,11 +498,13 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
339
498
  "secondaryAvailabilityZone": str,
340
499
  "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
341
500
  "influxAuthParametersSecretArn": str,
501
+ "dbClusterId": str,
502
+ "instanceMode": InstanceModeType,
342
503
  "ResponseMetadata": ResponseMetadataTypeDef,
343
504
  },
344
505
  )
345
506
 
346
- class CreateDbParameterGroupInputRequestTypeDef(TypedDict):
507
+ class CreateDbParameterGroupInputTypeDef(TypedDict):
347
508
  name: str
348
509
  description: NotRequired[str]
349
510
  parameters: NotRequired[ParametersTypeDef]
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.36.0"
7
+ __version__ = "1.36.22"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: types-boto3-timestream-influxdb
3
- Version: 1.36.0
4
- Summary: Type annotations for boto3 TimestreamInfluxDB 1.36.0 service generated with mypy-boto3-builder 8.8.0
3
+ Version: 1.36.22
4
+ Summary: Type annotations for boto3 TimestreamInfluxDB 1.36.22 service generated with mypy-boto3-builder 8.9.1
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
@@ -56,7 +56,7 @@ Dynamic: summary
56
56
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
57
 
58
58
  Type annotations for
59
- [boto3 TimestreamInfluxDB 1.36.0](https://pypi.org/project/boto3/) compatible
59
+ [boto3 TimestreamInfluxDB 1.36.22](https://pypi.org/project/boto3/) compatible
60
60
  with [VSCode](https://code.visualstudio.com/),
61
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -65,7 +65,7 @@ with [VSCode](https://code.visualstudio.com/),
65
65
  [pyright](https://github.com/microsoft/pyright) and other tools.
66
66
 
67
67
  Generated with
68
- [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
68
+ [mypy-boto3-builder 8.9.1](https://github.com/youtype/mypy_boto3_builder).
69
69
 
70
70
  More information can be found on
71
71
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
118
118
  isolation.
119
119
 
120
120
  1. Run mypy-boto3-builder in your package root directory:
121
- `uvx --with 'boto3==1.36.0' mypy_boto3_builder`
121
+ `uvx --with 'boto3==1.36.22' mypy_boto3_builder`
122
122
  2. Select `boto3` AWS SDK.
123
123
  3. Add `TimestreamInfluxDB` service.
124
124
  4. Use provided commands to install generated packages.
@@ -354,6 +354,8 @@ from boto3.session import Session
354
354
 
355
355
  from types_boto3_timestream_influxdb import TimestreamInfluxDBClient
356
356
  from types_boto3_timestream_influxdb.paginator import (
357
+ ListDbClustersPaginator,
358
+ ListDbInstancesForClusterPaginator,
357
359
  ListDbInstancesPaginator,
358
360
  ListDbParameterGroupsPaginator,
359
361
  )
@@ -362,6 +364,10 @@ client: TimestreamInfluxDBClient = Session().client("timestream-influxdb")
362
364
 
363
365
  # Explicit type annotations are optional here
364
366
  # Types should be correctly discovered by mypy and IDEs
367
+ list_db_clusters_paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters")
368
+ list_db_instances_for_cluster_paginator: ListDbInstancesForClusterPaginator = client.get_paginator(
369
+ "list_db_instances_for_cluster"
370
+ )
365
371
  list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
366
372
  list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator(
367
373
  "list_db_parameter_groups"
@@ -379,10 +385,10 @@ Full list of `TimestreamInfluxDB` Literals can be found in
379
385
  [docs](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/).
380
386
 
381
387
  ```python
382
- from types_boto3_timestream_influxdb.literals import DbInstanceTypeType
388
+ from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
383
389
 
384
390
 
385
- def check_value(value: DbInstanceTypeType) -> bool: ...
391
+ def check_value(value: ClusterDeploymentTypeType) -> bool: ...
386
392
  ```
387
393
 
388
394
  <a id="type-definitions"></a>
@@ -454,8 +460,8 @@ Builder changelog can be found in
454
460
  ## Versioning
455
461
 
456
462
  `types-boto3-timestream-influxdb` version is the same as related `boto3`
457
- version and follows [PEP 440](https://www.python.org/dev/peps/pep-0440/)
458
- format.
463
+ version and follows
464
+ [Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
459
465
 
460
466
  <a id="thank-you"></a>
461
467
 
@@ -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=jUk4vvc8UMmgtx-a8bjnFZa2FwjenskzqA2U7LEcOt0,1030
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=BksWyUm92sWBmOLtM64IwclovnWbVzF2NFXodNFhHj0,10795
7
+ types_boto3_timestream_influxdb/literals.pyi,sha256=R4-sD3rUjNU4huOk07pak3W7kMLqW49Jn6t-erfnQaI,10793
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=O25asQGdqqKyXfH9wZKQJ3wPzR4qKCw45o0KVsly1u4,93
14
+ types_boto3_timestream_influxdb-1.36.22.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ types_boto3_timestream_influxdb-1.36.22.dist-info/METADATA,sha256=-NFC9WgRLJY6vKjmaOJleZ0tlGJl1Pwlv9rXhLiInfk,16026
16
+ types_boto3_timestream_influxdb-1.36.22.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
17
+ types_boto3_timestream_influxdb-1.36.22.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
18
+ types_boto3_timestream_influxdb-1.36.22.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- types_boto3_timestream_influxdb/__init__.py,sha256=OltOfYynfO4BEmkoSraTZluH_pbbPcnnrodjfFH4IjA,957
2
- types_boto3_timestream_influxdb/__init__.pyi,sha256=6XGeJdgJ968oOd6x34_jqJvcGF5mQX-WiZWdBzAvhiU,956
3
- types_boto3_timestream_influxdb/__main__.py,sha256=5yLxYNOpFmyvGMnEmHmV9c5_rOGYIByMMsYl5ZO_sT4,1027
4
- types_boto3_timestream_influxdb/client.py,sha256=k2tYFBvItijcyceAkPoZDJ_-dLYzlHKqLx0QjQL5mTY,11094
5
- types_boto3_timestream_influxdb/client.pyi,sha256=nbXnxVna20KbZO1Ux3XrnsbPKKwAObdmQPgt0GjxaV0,11091
6
- types_boto3_timestream_influxdb/literals.py,sha256=_C8BhkU-sMEtFVB2eFSBez4rMo0aZaETYAL7Yf1w7gY,10099
7
- types_boto3_timestream_influxdb/literals.pyi,sha256=9FQW-CERIc-VAEZzaqklD6SnOB2_-BF-34HwpdoAK8I,10097
8
- types_boto3_timestream_influxdb/paginator.py,sha256=fskUBMkvk2H9AbomoMM6blnDFa6d7CGQPiBOIF3Byzc,3759
9
- types_boto3_timestream_influxdb/paginator.pyi,sha256=cV73GsaAzub0m3oGbOZjrVUKfgbaWowGexPnIsUB9nU,3752
10
- types_boto3_timestream_influxdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_timestream_influxdb/type_defs.py,sha256=GvFEA-0C4whUcllF0inYfBH3aoz38ycpbNljXOmqWKY,12039
12
- types_boto3_timestream_influxdb/type_defs.pyi,sha256=lr7Enf60sz-AGISAzOt4UP6LlNcuBuoMWTfS-dS0U8Q,12010
13
- types_boto3_timestream_influxdb/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
14
- types_boto3_timestream_influxdb-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
- types_boto3_timestream_influxdb-1.36.0.dist-info/METADATA,sha256=kCO6h99n1doqlWfxqjep0EAVw9pcdwpwDAJAMPoqYug,15653
16
- types_boto3_timestream_influxdb-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
17
- types_boto3_timestream_influxdb-1.36.0.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
18
- types_boto3_timestream_influxdb-1.36.0.dist-info/RECORD,,