types-boto3-timestream-influxdb 1.36.8__py3-none-any.whl → 1.40.0__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,11 +452,21 @@ 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]
@@ -341,11 +498,13 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
341
498
  "secondaryAvailabilityZone": str,
342
499
  "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
343
500
  "influxAuthParametersSecretArn": str,
501
+ "dbClusterId": str,
502
+ "instanceMode": InstanceModeType,
344
503
  "ResponseMetadata": ResponseMetadataTypeDef,
345
504
  },
346
505
  )
347
506
 
348
- class CreateDbParameterGroupInputRequestTypeDef(TypedDict):
507
+ class CreateDbParameterGroupInputTypeDef(TypedDict):
349
508
  name: str
350
509
  description: NotRequired[str]
351
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.8"
7
+ __version__ = "1.40.0"
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: types-boto3-timestream-influxdb
3
- Version: 1.36.8
4
- Summary: Type annotations for boto3 TimestreamInfluxDB 1.36.8 service generated with mypy-boto3-builder 8.8.0
3
+ Version: 1.40.0
4
+ Summary: Type annotations for boto3 TimestreamInfluxDB 1.40.0 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
@@ -39,6 +39,7 @@ Dynamic: description-content-type
39
39
  Dynamic: home-page
40
40
  Dynamic: keywords
41
41
  Dynamic: license
42
+ Dynamic: license-file
42
43
  Dynamic: project-url
43
44
  Dynamic: requires-dist
44
45
  Dynamic: requires-python
@@ -56,7 +57,7 @@ Dynamic: summary
56
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
58
 
58
59
  Type annotations for
59
- [boto3 TimestreamInfluxDB 1.36.8](https://pypi.org/project/boto3/) compatible
60
+ [boto3 TimestreamInfluxDB 1.40.0](https://pypi.org/project/boto3/) compatible
60
61
  with [VSCode](https://code.visualstudio.com/),
61
62
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
63
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -65,7 +66,7 @@ with [VSCode](https://code.visualstudio.com/),
65
66
  [pyright](https://github.com/microsoft/pyright) and other tools.
66
67
 
67
68
  Generated with
68
- [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
69
+ [mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
69
70
 
70
71
  More information can be found on
71
72
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -113,12 +114,12 @@ See how it helps you find and fix potential bugs:
113
114
  ### Generate locally (recommended)
114
115
 
115
116
  You can generate type annotations for `boto3` package locally with
116
- `mypy_boto3_builder`. Use
117
+ `mypy-boto3-builder`. Use
117
118
  [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
118
119
  isolation.
119
120
 
120
121
  1. Run mypy-boto3-builder in your package root directory:
121
- `uvx --with 'boto3==1.36.8' mypy_boto3_builder`
122
+ `uvx --with 'boto3==1.40.0' mypy-boto3-builder`
122
123
  2. Select `boto3` AWS SDK.
123
124
  3. Add `TimestreamInfluxDB` service.
124
125
  4. Use provided commands to install generated packages.
@@ -354,6 +355,8 @@ from boto3.session import Session
354
355
 
355
356
  from types_boto3_timestream_influxdb import TimestreamInfluxDBClient
356
357
  from types_boto3_timestream_influxdb.paginator import (
358
+ ListDbClustersPaginator,
359
+ ListDbInstancesForClusterPaginator,
357
360
  ListDbInstancesPaginator,
358
361
  ListDbParameterGroupsPaginator,
359
362
  )
@@ -362,6 +365,10 @@ client: TimestreamInfluxDBClient = Session().client("timestream-influxdb")
362
365
 
363
366
  # Explicit type annotations are optional here
364
367
  # Types should be correctly discovered by mypy and IDEs
368
+ list_db_clusters_paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters")
369
+ list_db_instances_for_cluster_paginator: ListDbInstancesForClusterPaginator = client.get_paginator(
370
+ "list_db_instances_for_cluster"
371
+ )
365
372
  list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
366
373
  list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator(
367
374
  "list_db_parameter_groups"
@@ -379,10 +386,10 @@ Full list of `TimestreamInfluxDB` Literals can be found in
379
386
  [docs](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/).
380
387
 
381
388
  ```python
382
- from types_boto3_timestream_influxdb.literals import DbInstanceTypeType
389
+ from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
383
390
 
384
391
 
385
- def check_value(value: DbInstanceTypeType) -> bool: ...
392
+ def check_value(value: ClusterDeploymentTypeType) -> bool: ...
386
393
  ```
387
394
 
388
395
  <a id="type-definitions"></a>
@@ -396,11 +403,14 @@ Full list of `TimestreamInfluxDB` TypeDefs can be found in
396
403
  [docs](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/).
397
404
 
398
405
  ```python
406
+ # TypedDict usage example
399
407
  from types_boto3_timestream_influxdb.type_defs import ResponseMetadataTypeDef
400
408
 
401
409
 
402
410
  def get_value() -> ResponseMetadataTypeDef:
403
- return {...}
411
+ return {
412
+ "RequestId": ...,
413
+ }
404
414
  ```
405
415
 
406
416
  <a id="how-it-works"></a>
@@ -454,8 +464,8 @@ Builder changelog can be found in
454
464
  ## Versioning
455
465
 
456
466
  `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.
467
+ version and follows
468
+ [Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
459
469
 
460
470
  <a id="thank-you"></a>
461
471
 
@@ -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=Ni3PDoU7viCzsP6bmnjjF7Ip4OgOb32LhICF-GQedd8,1028
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=C_XAgKX7WBD4hjb5P3KvcIOm8UAv89bUHgDcd9ICgqg,11006
7
+ types_boto3_timestream_influxdb/literals.pyi,sha256=8Dv97q4huo9HqQHE7Bbr3jrO3OUskqK2fuLBrFawO-w,11004
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=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
14
+ types_boto3_timestream_influxdb-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ types_boto3_timestream_influxdb-1.40.0.dist-info/METADATA,sha256=u4CWUmQYNPULLr-bRRtW2EP9VqIMzKsG50if3153xAg,16100
16
+ types_boto3_timestream_influxdb-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ types_boto3_timestream_influxdb-1.40.0.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
18
+ types_boto3_timestream_influxdb-1.40.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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=eBQhR6uN0Go42hSynz5Euej0a49k_ggGv3kWkaxlobE,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=nQNDnM1UQgYcRZgwyAvZ9NUweU4DErl_FlCJvpGqsrA,12128
12
- types_boto3_timestream_influxdb/type_defs.pyi,sha256=w6g4-LZR1J-NK4T0Wz8II3VNzJXr9e4_mDBXjJ-aKVs,12099
13
- types_boto3_timestream_influxdb/version.py,sha256=IvSp3Xib3aaUW1R0mbc7yXsJlSEwPvLpSDUMn_Wtnis,92
14
- types_boto3_timestream_influxdb-1.36.8.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
- types_boto3_timestream_influxdb-1.36.8.dist-info/METADATA,sha256=tKjxcAO9np9Ck2srHa25ARDmuT1txkkR8zTHy9Ogx9M,15653
16
- types_boto3_timestream_influxdb-1.36.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
17
- types_boto3_timestream_influxdb-1.36.8.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
18
- types_boto3_timestream_influxdb-1.36.8.dist-info/RECORD,,