types-boto3-timestream-influxdb 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.
Potentially problematic release.
This version of types-boto3-timestream-influxdb might be problematic. Click here for more details.
- types_boto3_timestream_influxdb/__init__.py +1 -1
- types_boto3_timestream_influxdb/__init__.pyi +1 -1
- types_boto3_timestream_influxdb/__main__.py +9 -8
- types_boto3_timestream_influxdb/client.py +18 -23
- types_boto3_timestream_influxdb/client.pyi +18 -22
- types_boto3_timestream_influxdb/literals.py +12 -2
- types_boto3_timestream_influxdb/literals.pyi +12 -2
- types_boto3_timestream_influxdb/paginator.py +25 -21
- types_boto3_timestream_influxdb/paginator.pyi +24 -20
- types_boto3_timestream_influxdb/type_defs.py +21 -7
- types_boto3_timestream_influxdb/type_defs.pyi +21 -7
- types_boto3_timestream_influxdb/version.py +2 -2
- {types_boto3_timestream_influxdb-1.35.71.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_timestream_influxdb-1.35.71.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_timestream_influxdb-1.35.93.dist-info/RECORD +18 -0
- {types_boto3_timestream_influxdb-1.35.71.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_timestream_influxdb-1.35.71.dist-info/RECORD +0 -18
- {types_boto3_timestream_influxdb-1.35.71.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -19,7 +19,7 @@ Usage::
|
|
|
19
19
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
Copyright
|
|
22
|
+
Copyright 2025 Vlad Emelianov
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
from .client import TimestreamInfluxDBClient
|
|
@@ -19,7 +19,7 @@ Usage::
|
|
|
19
19
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
Copyright
|
|
22
|
+
Copyright 2025 Vlad Emelianov
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
from .client import TimestreamInfluxDBClient
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 TimestreamInfluxDB 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 TimestreamInfluxDB 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.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"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for timestream-influxdb service
|
|
2
|
+
Type annotations for timestream-influxdb service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import ListDbInstancesPaginator, ListDbParameterGroupsPaginator
|
|
25
29
|
from .type_defs import (
|
|
@@ -46,6 +50,11 @@ from .type_defs import (
|
|
|
46
50
|
UpdateDbInstanceOutputTypeDef,
|
|
47
51
|
)
|
|
48
52
|
|
|
53
|
+
if sys.version_info >= (3, 9):
|
|
54
|
+
from builtins import type as Type
|
|
55
|
+
from collections.abc import Mapping
|
|
56
|
+
else:
|
|
57
|
+
from typing import Mapping, Type
|
|
49
58
|
if sys.version_info >= (3, 12):
|
|
50
59
|
from typing import Literal, Unpack
|
|
51
60
|
else:
|
|
@@ -55,15 +64,7 @@ else:
|
|
|
55
64
|
__all__ = ("TimestreamInfluxDBClient",)
|
|
56
65
|
|
|
57
66
|
|
|
58
|
-
class
|
|
59
|
-
MSG_TEMPLATE: str
|
|
60
|
-
|
|
61
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
62
|
-
self.response: Dict[str, Any]
|
|
63
|
-
self.operation_name: str
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
class Exceptions:
|
|
67
|
+
class Exceptions(BaseClientExceptions):
|
|
67
68
|
AccessDeniedException: Type[BotocoreClientError]
|
|
68
69
|
ClientError: Type[BotocoreClientError]
|
|
69
70
|
ConflictException: Type[BotocoreClientError]
|
|
@@ -109,12 +110,6 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
109
110
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#generate_presigned_url)
|
|
110
111
|
"""
|
|
111
112
|
|
|
112
|
-
def close(self) -> None:
|
|
113
|
-
"""
|
|
114
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/close.html)
|
|
115
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#close)
|
|
116
|
-
"""
|
|
117
|
-
|
|
118
113
|
def create_db_instance(
|
|
119
114
|
self, **kwargs: Unpack[CreateDbInstanceInputRequestTypeDef]
|
|
120
115
|
) -> CreateDbInstanceOutputTypeDef:
|
|
@@ -226,8 +221,8 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
226
221
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#update_db_instance)
|
|
227
222
|
"""
|
|
228
223
|
|
|
229
|
-
@overload
|
|
230
|
-
def get_paginator(
|
|
224
|
+
@overload # type: ignore[override]
|
|
225
|
+
def get_paginator( # type: ignore[override]
|
|
231
226
|
self, operation_name: Literal["list_db_instances"]
|
|
232
227
|
) -> ListDbInstancesPaginator:
|
|
233
228
|
"""
|
|
@@ -237,8 +232,8 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
237
232
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_paginator)
|
|
238
233
|
"""
|
|
239
234
|
|
|
240
|
-
@overload
|
|
241
|
-
def get_paginator(
|
|
235
|
+
@overload # type: ignore[override]
|
|
236
|
+
def get_paginator( # type: ignore[override]
|
|
242
237
|
self, operation_name: Literal["list_db_parameter_groups"]
|
|
243
238
|
) -> ListDbParameterGroupsPaginator:
|
|
244
239
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for timestream-influxdb service
|
|
2
|
+
Type annotations for timestream-influxdb service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import ListDbInstancesPaginator, ListDbParameterGroupsPaginator
|
|
25
29
|
from .type_defs import (
|
|
@@ -46,6 +50,11 @@ from .type_defs import (
|
|
|
46
50
|
UpdateDbInstanceOutputTypeDef,
|
|
47
51
|
)
|
|
48
52
|
|
|
53
|
+
if sys.version_info >= (3, 9):
|
|
54
|
+
from builtins import type as Type
|
|
55
|
+
from collections.abc import Mapping
|
|
56
|
+
else:
|
|
57
|
+
from typing import Mapping, Type
|
|
49
58
|
if sys.version_info >= (3, 12):
|
|
50
59
|
from typing import Literal, Unpack
|
|
51
60
|
else:
|
|
@@ -53,14 +62,7 @@ else:
|
|
|
53
62
|
|
|
54
63
|
__all__ = ("TimestreamInfluxDBClient",)
|
|
55
64
|
|
|
56
|
-
class
|
|
57
|
-
MSG_TEMPLATE: str
|
|
58
|
-
|
|
59
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
60
|
-
self.response: Dict[str, Any]
|
|
61
|
-
self.operation_name: str
|
|
62
|
-
|
|
63
|
-
class Exceptions:
|
|
65
|
+
class Exceptions(BaseClientExceptions):
|
|
64
66
|
AccessDeniedException: Type[BotocoreClientError]
|
|
65
67
|
ClientError: Type[BotocoreClientError]
|
|
66
68
|
ConflictException: Type[BotocoreClientError]
|
|
@@ -105,12 +107,6 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
105
107
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#generate_presigned_url)
|
|
106
108
|
"""
|
|
107
109
|
|
|
108
|
-
def close(self) -> None:
|
|
109
|
-
"""
|
|
110
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/close.html)
|
|
111
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#close)
|
|
112
|
-
"""
|
|
113
|
-
|
|
114
110
|
def create_db_instance(
|
|
115
111
|
self, **kwargs: Unpack[CreateDbInstanceInputRequestTypeDef]
|
|
116
112
|
) -> CreateDbInstanceOutputTypeDef:
|
|
@@ -222,8 +218,8 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
222
218
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#update_db_instance)
|
|
223
219
|
"""
|
|
224
220
|
|
|
225
|
-
@overload
|
|
226
|
-
def get_paginator(
|
|
221
|
+
@overload # type: ignore[override]
|
|
222
|
+
def get_paginator( # type: ignore[override]
|
|
227
223
|
self, operation_name: Literal["list_db_instances"]
|
|
228
224
|
) -> ListDbInstancesPaginator:
|
|
229
225
|
"""
|
|
@@ -233,8 +229,8 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
233
229
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_paginator)
|
|
234
230
|
"""
|
|
235
231
|
|
|
236
|
-
@overload
|
|
237
|
-
def get_paginator(
|
|
232
|
+
@overload # type: ignore[override]
|
|
233
|
+
def get_paginator( # type: ignore[override]
|
|
238
234
|
self, operation_name: Literal["list_db_parameter_groups"]
|
|
239
235
|
) -> ListDbParameterGroupsPaginator:
|
|
240
236
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for timestream-influxdb service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: DbInstanceTypeType = "db.influx.12xlarge"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -30,6 +30,7 @@ __all__ = (
|
|
|
30
30
|
"ListDbInstancesPaginatorName",
|
|
31
31
|
"ListDbParameterGroupsPaginatorName",
|
|
32
32
|
"LogLevelType",
|
|
33
|
+
"NetworkTypeType",
|
|
33
34
|
"PaginatorName",
|
|
34
35
|
"ResourceServiceName",
|
|
35
36
|
"ServiceName",
|
|
@@ -55,6 +56,7 @@ DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
|
55
56
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
56
57
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
57
58
|
LogLevelType = Literal["debug", "error", "info"]
|
|
59
|
+
NetworkTypeType = Literal["DUAL", "IPV4"]
|
|
58
60
|
StatusType = Literal[
|
|
59
61
|
"AVAILABLE",
|
|
60
62
|
"CREATING",
|
|
@@ -103,12 +105,15 @@ ServiceName = Literal[
|
|
|
103
105
|
"b2bi",
|
|
104
106
|
"backup",
|
|
105
107
|
"backup-gateway",
|
|
108
|
+
"backupsearch",
|
|
106
109
|
"batch",
|
|
107
110
|
"bcm-data-exports",
|
|
108
111
|
"bcm-pricing-calculator",
|
|
109
112
|
"bedrock",
|
|
110
113
|
"bedrock-agent",
|
|
111
114
|
"bedrock-agent-runtime",
|
|
115
|
+
"bedrock-data-automation",
|
|
116
|
+
"bedrock-data-automation-runtime",
|
|
112
117
|
"bedrock-runtime",
|
|
113
118
|
"billing",
|
|
114
119
|
"billingconductor",
|
|
@@ -186,6 +191,7 @@ ServiceName = Literal[
|
|
|
186
191
|
"drs",
|
|
187
192
|
"ds",
|
|
188
193
|
"ds-data",
|
|
194
|
+
"dsql",
|
|
189
195
|
"dynamodb",
|
|
190
196
|
"dynamodbstreams",
|
|
191
197
|
"ebs",
|
|
@@ -242,6 +248,7 @@ ServiceName = Literal[
|
|
|
242
248
|
"inspector-scan",
|
|
243
249
|
"inspector2",
|
|
244
250
|
"internetmonitor",
|
|
251
|
+
"invoicing",
|
|
245
252
|
"iot",
|
|
246
253
|
"iot-data",
|
|
247
254
|
"iot-jobs-data",
|
|
@@ -328,6 +335,7 @@ ServiceName = Literal[
|
|
|
328
335
|
"neptune-graph",
|
|
329
336
|
"neptunedata",
|
|
330
337
|
"network-firewall",
|
|
338
|
+
"networkflowmonitor",
|
|
331
339
|
"networkmanager",
|
|
332
340
|
"networkmonitor",
|
|
333
341
|
"notifications",
|
|
@@ -394,6 +402,7 @@ ServiceName = Literal[
|
|
|
394
402
|
"s3",
|
|
395
403
|
"s3control",
|
|
396
404
|
"s3outposts",
|
|
405
|
+
"s3tables",
|
|
397
406
|
"sagemaker",
|
|
398
407
|
"sagemaker-a2i-runtime",
|
|
399
408
|
"sagemaker-edge",
|
|
@@ -406,6 +415,7 @@ ServiceName = Literal[
|
|
|
406
415
|
"schemas",
|
|
407
416
|
"sdb",
|
|
408
417
|
"secretsmanager",
|
|
418
|
+
"security-ir",
|
|
409
419
|
"securityhub",
|
|
410
420
|
"securitylake",
|
|
411
421
|
"serverlessrepo",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for timestream-influxdb service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: DbInstanceTypeType = "db.influx.12xlarge"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -29,6 +29,7 @@ __all__ = (
|
|
|
29
29
|
"ListDbInstancesPaginatorName",
|
|
30
30
|
"ListDbParameterGroupsPaginatorName",
|
|
31
31
|
"LogLevelType",
|
|
32
|
+
"NetworkTypeType",
|
|
32
33
|
"PaginatorName",
|
|
33
34
|
"ResourceServiceName",
|
|
34
35
|
"ServiceName",
|
|
@@ -53,6 +54,7 @@ DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
|
53
54
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
54
55
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
55
56
|
LogLevelType = Literal["debug", "error", "info"]
|
|
57
|
+
NetworkTypeType = Literal["DUAL", "IPV4"]
|
|
56
58
|
StatusType = Literal[
|
|
57
59
|
"AVAILABLE",
|
|
58
60
|
"CREATING",
|
|
@@ -101,12 +103,15 @@ ServiceName = Literal[
|
|
|
101
103
|
"b2bi",
|
|
102
104
|
"backup",
|
|
103
105
|
"backup-gateway",
|
|
106
|
+
"backupsearch",
|
|
104
107
|
"batch",
|
|
105
108
|
"bcm-data-exports",
|
|
106
109
|
"bcm-pricing-calculator",
|
|
107
110
|
"bedrock",
|
|
108
111
|
"bedrock-agent",
|
|
109
112
|
"bedrock-agent-runtime",
|
|
113
|
+
"bedrock-data-automation",
|
|
114
|
+
"bedrock-data-automation-runtime",
|
|
110
115
|
"bedrock-runtime",
|
|
111
116
|
"billing",
|
|
112
117
|
"billingconductor",
|
|
@@ -184,6 +189,7 @@ ServiceName = Literal[
|
|
|
184
189
|
"drs",
|
|
185
190
|
"ds",
|
|
186
191
|
"ds-data",
|
|
192
|
+
"dsql",
|
|
187
193
|
"dynamodb",
|
|
188
194
|
"dynamodbstreams",
|
|
189
195
|
"ebs",
|
|
@@ -240,6 +246,7 @@ ServiceName = Literal[
|
|
|
240
246
|
"inspector-scan",
|
|
241
247
|
"inspector2",
|
|
242
248
|
"internetmonitor",
|
|
249
|
+
"invoicing",
|
|
243
250
|
"iot",
|
|
244
251
|
"iot-data",
|
|
245
252
|
"iot-jobs-data",
|
|
@@ -326,6 +333,7 @@ ServiceName = Literal[
|
|
|
326
333
|
"neptune-graph",
|
|
327
334
|
"neptunedata",
|
|
328
335
|
"network-firewall",
|
|
336
|
+
"networkflowmonitor",
|
|
329
337
|
"networkmanager",
|
|
330
338
|
"networkmonitor",
|
|
331
339
|
"notifications",
|
|
@@ -392,6 +400,7 @@ ServiceName = Literal[
|
|
|
392
400
|
"s3",
|
|
393
401
|
"s3control",
|
|
394
402
|
"s3outposts",
|
|
403
|
+
"s3tables",
|
|
395
404
|
"sagemaker",
|
|
396
405
|
"sagemaker-a2i-runtime",
|
|
397
406
|
"sagemaker-edge",
|
|
@@ -404,6 +413,7 @@ ServiceName = Literal[
|
|
|
404
413
|
"schemas",
|
|
405
414
|
"sdb",
|
|
406
415
|
"secretsmanager",
|
|
416
|
+
"security-ir",
|
|
407
417
|
"securityhub",
|
|
408
418
|
"securitylake",
|
|
409
419
|
"serverlessrepo",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for timestream-influxdb service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -21,18 +21,20 @@ Usage::
|
|
|
21
21
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
Copyright
|
|
24
|
+
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
27
29
|
import sys
|
|
28
|
-
from typing import
|
|
30
|
+
from typing import TYPE_CHECKING
|
|
29
31
|
|
|
30
32
|
from botocore.paginate import PageIterator, Paginator
|
|
31
33
|
|
|
32
34
|
from .type_defs import (
|
|
33
|
-
|
|
35
|
+
ListDbInstancesInputPaginateTypeDef,
|
|
34
36
|
ListDbInstancesOutputTypeDef,
|
|
35
|
-
|
|
37
|
+
ListDbParameterGroupsInputPaginateTypeDef,
|
|
36
38
|
ListDbParameterGroupsOutputTypeDef,
|
|
37
39
|
)
|
|
38
40
|
|
|
@@ -45,40 +47,42 @@ else:
|
|
|
45
47
|
__all__ = ("ListDbInstancesPaginator", "ListDbParameterGroupsPaginator")
|
|
46
48
|
|
|
47
49
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
53
|
-
"""
|
|
54
|
-
Proxy method to specify iterator item type.
|
|
55
|
-
"""
|
|
50
|
+
if TYPE_CHECKING:
|
|
51
|
+
_ListDbInstancesPaginatorBase = Paginator[ListDbInstancesOutputTypeDef]
|
|
52
|
+
else:
|
|
53
|
+
_ListDbInstancesPaginatorBase = Paginator # type: ignore[assignment]
|
|
56
54
|
|
|
57
55
|
|
|
58
|
-
class ListDbInstancesPaginator(
|
|
56
|
+
class ListDbInstancesPaginator(_ListDbInstancesPaginatorBase):
|
|
59
57
|
"""
|
|
60
58
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances)
|
|
61
59
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
62
60
|
"""
|
|
63
61
|
|
|
64
|
-
def paginate(
|
|
65
|
-
self, **kwargs: Unpack[
|
|
66
|
-
) ->
|
|
62
|
+
def paginate( # type: ignore[override]
|
|
63
|
+
self, **kwargs: Unpack[ListDbInstancesInputPaginateTypeDef]
|
|
64
|
+
) -> PageIterator[ListDbInstancesOutputTypeDef]:
|
|
67
65
|
"""
|
|
68
66
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances.paginate)
|
|
69
67
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
70
68
|
"""
|
|
71
69
|
|
|
72
70
|
|
|
73
|
-
|
|
71
|
+
if TYPE_CHECKING:
|
|
72
|
+
_ListDbParameterGroupsPaginatorBase = Paginator[ListDbParameterGroupsOutputTypeDef]
|
|
73
|
+
else:
|
|
74
|
+
_ListDbParameterGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class ListDbParameterGroupsPaginator(_ListDbParameterGroupsPaginatorBase):
|
|
74
78
|
"""
|
|
75
79
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups)
|
|
76
80
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
77
81
|
"""
|
|
78
82
|
|
|
79
|
-
def paginate(
|
|
80
|
-
self, **kwargs: Unpack[
|
|
81
|
-
) ->
|
|
83
|
+
def paginate( # type: ignore[override]
|
|
84
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputPaginateTypeDef]
|
|
85
|
+
) -> PageIterator[ListDbParameterGroupsOutputTypeDef]:
|
|
82
86
|
"""
|
|
83
87
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups.paginate)
|
|
84
88
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for timestream-influxdb service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -21,18 +21,20 @@ Usage::
|
|
|
21
21
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
Copyright
|
|
24
|
+
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
27
29
|
import sys
|
|
28
|
-
from typing import
|
|
30
|
+
from typing import TYPE_CHECKING
|
|
29
31
|
|
|
30
32
|
from botocore.paginate import PageIterator, Paginator
|
|
31
33
|
|
|
32
34
|
from .type_defs import (
|
|
33
|
-
|
|
35
|
+
ListDbInstancesInputPaginateTypeDef,
|
|
34
36
|
ListDbInstancesOutputTypeDef,
|
|
35
|
-
|
|
37
|
+
ListDbParameterGroupsInputPaginateTypeDef,
|
|
36
38
|
ListDbParameterGroupsOutputTypeDef,
|
|
37
39
|
)
|
|
38
40
|
|
|
@@ -43,35 +45,37 @@ else:
|
|
|
43
45
|
|
|
44
46
|
__all__ = ("ListDbInstancesPaginator", "ListDbParameterGroupsPaginator")
|
|
45
47
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"""
|
|
51
|
-
Proxy method to specify iterator item type.
|
|
52
|
-
"""
|
|
48
|
+
if TYPE_CHECKING:
|
|
49
|
+
_ListDbInstancesPaginatorBase = Paginator[ListDbInstancesOutputTypeDef]
|
|
50
|
+
else:
|
|
51
|
+
_ListDbInstancesPaginatorBase = Paginator # type: ignore[assignment]
|
|
53
52
|
|
|
54
|
-
class ListDbInstancesPaginator(
|
|
53
|
+
class ListDbInstancesPaginator(_ListDbInstancesPaginatorBase):
|
|
55
54
|
"""
|
|
56
55
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances)
|
|
57
56
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
58
57
|
"""
|
|
59
|
-
def paginate(
|
|
60
|
-
self, **kwargs: Unpack[
|
|
61
|
-
) ->
|
|
58
|
+
def paginate( # type: ignore[override]
|
|
59
|
+
self, **kwargs: Unpack[ListDbInstancesInputPaginateTypeDef]
|
|
60
|
+
) -> PageIterator[ListDbInstancesOutputTypeDef]:
|
|
62
61
|
"""
|
|
63
62
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances.paginate)
|
|
64
63
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
65
64
|
"""
|
|
66
65
|
|
|
67
|
-
|
|
66
|
+
if TYPE_CHECKING:
|
|
67
|
+
_ListDbParameterGroupsPaginatorBase = Paginator[ListDbParameterGroupsOutputTypeDef]
|
|
68
|
+
else:
|
|
69
|
+
_ListDbParameterGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
70
|
+
|
|
71
|
+
class ListDbParameterGroupsPaginator(_ListDbParameterGroupsPaginatorBase):
|
|
68
72
|
"""
|
|
69
73
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups)
|
|
70
74
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
71
75
|
"""
|
|
72
|
-
def paginate(
|
|
73
|
-
self, **kwargs: Unpack[
|
|
74
|
-
) ->
|
|
76
|
+
def paginate( # type: ignore[override]
|
|
77
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputPaginateTypeDef]
|
|
78
|
+
) -> PageIterator[ListDbParameterGroupsOutputTypeDef]:
|
|
75
79
|
"""
|
|
76
80
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups.paginate)
|
|
77
81
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
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
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,11 +11,12 @@ Usage::
|
|
|
11
11
|
data: ResponseMetadataTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
|
-
from typing import Dict, List, Mapping, Sequence
|
|
19
20
|
|
|
20
21
|
from .literals import (
|
|
21
22
|
DbInstanceTypeType,
|
|
@@ -23,10 +24,17 @@ from .literals import (
|
|
|
23
24
|
DeploymentTypeType,
|
|
24
25
|
DurationTypeType,
|
|
25
26
|
LogLevelType,
|
|
27
|
+
NetworkTypeType,
|
|
26
28
|
StatusType,
|
|
27
29
|
TracingTypeType,
|
|
28
30
|
)
|
|
29
31
|
|
|
32
|
+
if sys.version_info >= (3, 9):
|
|
33
|
+
from builtins import dict as Dict
|
|
34
|
+
from builtins import list as List
|
|
35
|
+
from collections.abc import Mapping, Sequence
|
|
36
|
+
else:
|
|
37
|
+
from typing import Dict, List, Mapping, Sequence
|
|
30
38
|
if sys.version_info >= (3, 12):
|
|
31
39
|
from typing import NotRequired, TypedDict
|
|
32
40
|
else:
|
|
@@ -49,10 +57,10 @@ __all__ = (
|
|
|
49
57
|
"GetDbParameterGroupInputRequestTypeDef",
|
|
50
58
|
"GetDbParameterGroupOutputTypeDef",
|
|
51
59
|
"InfluxDBv2ParametersTypeDef",
|
|
52
|
-
"
|
|
60
|
+
"ListDbInstancesInputPaginateTypeDef",
|
|
53
61
|
"ListDbInstancesInputRequestTypeDef",
|
|
54
62
|
"ListDbInstancesOutputTypeDef",
|
|
55
|
-
"
|
|
63
|
+
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
56
64
|
"ListDbParameterGroupsInputRequestTypeDef",
|
|
57
65
|
"ListDbParameterGroupsOutputTypeDef",
|
|
58
66
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
@@ -86,6 +94,7 @@ DbInstanceSummaryTypeDef = TypedDict(
|
|
|
86
94
|
"status": NotRequired[StatusType],
|
|
87
95
|
"endpoint": NotRequired[str],
|
|
88
96
|
"port": NotRequired[int],
|
|
97
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
89
98
|
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
90
99
|
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
91
100
|
"allocatedStorage": NotRequired[int],
|
|
@@ -213,11 +222,11 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
213
222
|
uiDisabled: NotRequired[bool]
|
|
214
223
|
|
|
215
224
|
|
|
216
|
-
class
|
|
225
|
+
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
217
226
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
218
227
|
|
|
219
228
|
|
|
220
|
-
class
|
|
229
|
+
class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
|
|
221
230
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
222
231
|
|
|
223
232
|
|
|
@@ -246,6 +255,7 @@ class CreateDbInstanceInputRequestTypeDef(TypedDict):
|
|
|
246
255
|
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
247
256
|
tags: NotRequired[Mapping[str, str]]
|
|
248
257
|
port: NotRequired[int]
|
|
258
|
+
networkType: NotRequired[NetworkTypeType]
|
|
249
259
|
|
|
250
260
|
|
|
251
261
|
CreateDbInstanceOutputTypeDef = TypedDict(
|
|
@@ -257,6 +267,7 @@ CreateDbInstanceOutputTypeDef = TypedDict(
|
|
|
257
267
|
"status": StatusType,
|
|
258
268
|
"endpoint": str,
|
|
259
269
|
"port": int,
|
|
270
|
+
"networkType": NetworkTypeType,
|
|
260
271
|
"dbInstanceType": DbInstanceTypeType,
|
|
261
272
|
"dbStorageType": DbStorageTypeType,
|
|
262
273
|
"allocatedStorage": int,
|
|
@@ -281,6 +292,7 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
|
281
292
|
"status": StatusType,
|
|
282
293
|
"endpoint": str,
|
|
283
294
|
"port": int,
|
|
295
|
+
"networkType": NetworkTypeType,
|
|
284
296
|
"dbInstanceType": DbInstanceTypeType,
|
|
285
297
|
"dbStorageType": DbStorageTypeType,
|
|
286
298
|
"allocatedStorage": int,
|
|
@@ -305,6 +317,7 @@ GetDbInstanceOutputTypeDef = TypedDict(
|
|
|
305
317
|
"status": StatusType,
|
|
306
318
|
"endpoint": str,
|
|
307
319
|
"port": int,
|
|
320
|
+
"networkType": NetworkTypeType,
|
|
308
321
|
"dbInstanceType": DbInstanceTypeType,
|
|
309
322
|
"dbStorageType": DbStorageTypeType,
|
|
310
323
|
"allocatedStorage": int,
|
|
@@ -340,6 +353,7 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
|
340
353
|
"status": StatusType,
|
|
341
354
|
"endpoint": str,
|
|
342
355
|
"port": int,
|
|
356
|
+
"networkType": NetworkTypeType,
|
|
343
357
|
"dbInstanceType": DbInstanceTypeType,
|
|
344
358
|
"dbStorageType": DbStorageTypeType,
|
|
345
359
|
"allocatedStorage": int,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
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
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,11 +11,12 @@ Usage::
|
|
|
11
11
|
data: ResponseMetadataTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
|
-
from typing import Dict, List, Mapping, Sequence
|
|
19
20
|
|
|
20
21
|
from .literals import (
|
|
21
22
|
DbInstanceTypeType,
|
|
@@ -23,10 +24,17 @@ from .literals import (
|
|
|
23
24
|
DeploymentTypeType,
|
|
24
25
|
DurationTypeType,
|
|
25
26
|
LogLevelType,
|
|
27
|
+
NetworkTypeType,
|
|
26
28
|
StatusType,
|
|
27
29
|
TracingTypeType,
|
|
28
30
|
)
|
|
29
31
|
|
|
32
|
+
if sys.version_info >= (3, 9):
|
|
33
|
+
from builtins import dict as Dict
|
|
34
|
+
from builtins import list as List
|
|
35
|
+
from collections.abc import Mapping, Sequence
|
|
36
|
+
else:
|
|
37
|
+
from typing import Dict, List, Mapping, Sequence
|
|
30
38
|
if sys.version_info >= (3, 12):
|
|
31
39
|
from typing import NotRequired, TypedDict
|
|
32
40
|
else:
|
|
@@ -48,10 +56,10 @@ __all__ = (
|
|
|
48
56
|
"GetDbParameterGroupInputRequestTypeDef",
|
|
49
57
|
"GetDbParameterGroupOutputTypeDef",
|
|
50
58
|
"InfluxDBv2ParametersTypeDef",
|
|
51
|
-
"
|
|
59
|
+
"ListDbInstancesInputPaginateTypeDef",
|
|
52
60
|
"ListDbInstancesInputRequestTypeDef",
|
|
53
61
|
"ListDbInstancesOutputTypeDef",
|
|
54
|
-
"
|
|
62
|
+
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
55
63
|
"ListDbParameterGroupsInputRequestTypeDef",
|
|
56
64
|
"ListDbParameterGroupsOutputTypeDef",
|
|
57
65
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
@@ -83,6 +91,7 @@ DbInstanceSummaryTypeDef = TypedDict(
|
|
|
83
91
|
"status": NotRequired[StatusType],
|
|
84
92
|
"endpoint": NotRequired[str],
|
|
85
93
|
"port": NotRequired[int],
|
|
94
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
86
95
|
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
87
96
|
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
88
97
|
"allocatedStorage": NotRequired[int],
|
|
@@ -193,10 +202,10 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
193
202
|
storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
|
|
194
203
|
uiDisabled: NotRequired[bool]
|
|
195
204
|
|
|
196
|
-
class
|
|
205
|
+
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
197
206
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
198
207
|
|
|
199
|
-
class
|
|
208
|
+
class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
|
|
200
209
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
201
210
|
|
|
202
211
|
class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
@@ -222,6 +231,7 @@ class CreateDbInstanceInputRequestTypeDef(TypedDict):
|
|
|
222
231
|
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
223
232
|
tags: NotRequired[Mapping[str, str]]
|
|
224
233
|
port: NotRequired[int]
|
|
234
|
+
networkType: NotRequired[NetworkTypeType]
|
|
225
235
|
|
|
226
236
|
CreateDbInstanceOutputTypeDef = TypedDict(
|
|
227
237
|
"CreateDbInstanceOutputTypeDef",
|
|
@@ -232,6 +242,7 @@ CreateDbInstanceOutputTypeDef = TypedDict(
|
|
|
232
242
|
"status": StatusType,
|
|
233
243
|
"endpoint": str,
|
|
234
244
|
"port": int,
|
|
245
|
+
"networkType": NetworkTypeType,
|
|
235
246
|
"dbInstanceType": DbInstanceTypeType,
|
|
236
247
|
"dbStorageType": DbStorageTypeType,
|
|
237
248
|
"allocatedStorage": int,
|
|
@@ -256,6 +267,7 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
|
256
267
|
"status": StatusType,
|
|
257
268
|
"endpoint": str,
|
|
258
269
|
"port": int,
|
|
270
|
+
"networkType": NetworkTypeType,
|
|
259
271
|
"dbInstanceType": DbInstanceTypeType,
|
|
260
272
|
"dbStorageType": DbStorageTypeType,
|
|
261
273
|
"allocatedStorage": int,
|
|
@@ -280,6 +292,7 @@ GetDbInstanceOutputTypeDef = TypedDict(
|
|
|
280
292
|
"status": StatusType,
|
|
281
293
|
"endpoint": str,
|
|
282
294
|
"port": int,
|
|
295
|
+
"networkType": NetworkTypeType,
|
|
283
296
|
"dbInstanceType": DbInstanceTypeType,
|
|
284
297
|
"dbStorageType": DbStorageTypeType,
|
|
285
298
|
"allocatedStorage": int,
|
|
@@ -313,6 +326,7 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
|
313
326
|
"status": StatusType,
|
|
314
327
|
"endpoint": str,
|
|
315
328
|
"port": int,
|
|
329
|
+
"networkType": NetworkTypeType,
|
|
316
330
|
"dbInstanceType": DbInstanceTypeType,
|
|
317
331
|
"dbStorageType": DbStorageTypeType,
|
|
318
332
|
"allocatedStorage": int,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-boto3-timestream-influxdb
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 TimestreamInfluxDB 1.35.
|
|
3
|
+
Version: 1.35.93
|
|
4
|
+
Summary: Type annotations for boto3 TimestreamInfluxDB 1.35.93 service generated with mypy-boto3-builder 8.8.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_timestream_influxdb/
|
|
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 timestream-influxdb type-annotations
|
|
12
|
+
Keywords: boto3 timestream-influxdb 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
|
|
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
34
|
|
|
35
35
|
<a id="types-boto3-timestream-influxdb"></a>
|
|
36
36
|
|
|
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
44
44
|

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

|
|
65
65
|
|
|
66
66
|
- [types-boto3-timestream-influxdb](#types-boto3-timestream-influxdb)
|
|
67
67
|
- [How to install](#how-to-install)
|
|
68
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
68
69
|
- [VSCode extension](#vscode-extension)
|
|
69
70
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
70
71
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -76,6 +77,7 @@ See how it helps you find and fix potential bugs:
|
|
|
76
77
|
- [Other IDEs](#other-ides)
|
|
77
78
|
- [mypy](#mypy)
|
|
78
79
|
- [pyright](#pyright)
|
|
80
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
79
81
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
80
82
|
- [Client annotations](#client-annotations)
|
|
81
83
|
- [Paginators annotations](#paginators-annotations)
|
|
@@ -94,6 +96,21 @@ See how it helps you find and fix potential bugs:
|
|
|
94
96
|
|
|
95
97
|
## How to install
|
|
96
98
|
|
|
99
|
+
<a id="generate-locally-(recommended)"></a>
|
|
100
|
+
|
|
101
|
+
### Generate locally (recommended)
|
|
102
|
+
|
|
103
|
+
You can generate type annotations for `boto3` package locally with
|
|
104
|
+
`mypy_boto3_builder`. Use
|
|
105
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
106
|
+
isolation.
|
|
107
|
+
|
|
108
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
110
|
+
2. Select `boto3` AWS SDK.
|
|
111
|
+
3. Add `TimestreamInfluxDB` service.
|
|
112
|
+
4. Use provided commands to install generated packages.
|
|
113
|
+
|
|
97
114
|
<a id="vscode-extension"></a>
|
|
98
115
|
|
|
99
116
|
### VSCode extension
|
|
@@ -114,12 +131,10 @@ Install `types-boto3` for `TimestreamInfluxDB` service.
|
|
|
114
131
|
# install with boto3 type annotations
|
|
115
132
|
python -m pip install 'types-boto3[timestream-influxdb]'
|
|
116
133
|
|
|
117
|
-
|
|
118
134
|
# Lite version does not provide session.client/resource overloads
|
|
119
135
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
120
136
|
python -m pip install 'types-boto3-lite[timestream-influxdb]'
|
|
121
137
|
|
|
122
|
-
|
|
123
138
|
# standalone installation
|
|
124
139
|
python -m pip install types-boto3-timestream-influxdb
|
|
125
140
|
```
|
|
@@ -269,6 +284,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
|
|
|
269
284
|
Type checking should now work. No explicit type annotations required, write
|
|
270
285
|
your `boto3` code as usual.
|
|
271
286
|
|
|
287
|
+
<a id="pylint-compatibility"></a>
|
|
288
|
+
|
|
289
|
+
### Pylint compatibility
|
|
290
|
+
|
|
291
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
292
|
+
`types-boto3-timestream-influxdb` dependency in production. However, there is
|
|
293
|
+
an issue in `pylint` that it complains about undefined variables. To fix it,
|
|
294
|
+
set all types to `object` in non-`TYPE_CHECKING` mode.
|
|
295
|
+
|
|
296
|
+
```python
|
|
297
|
+
from typing import TYPE_CHECKING
|
|
298
|
+
|
|
299
|
+
if TYPE_CHECKING:
|
|
300
|
+
from types_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
301
|
+
from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
302
|
+
from types_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
303
|
+
else:
|
|
304
|
+
EC2Client = object
|
|
305
|
+
EC2ServiceResource = object
|
|
306
|
+
BundleTaskCompleteWaiter = object
|
|
307
|
+
DescribeVolumesPaginator = object
|
|
308
|
+
|
|
309
|
+
...
|
|
310
|
+
```
|
|
311
|
+
|
|
272
312
|
<a id="explicit-type-annotations"></a>
|
|
273
313
|
|
|
274
314
|
## Explicit type annotations
|
|
@@ -0,0 +1,18 @@
|
|
|
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=alS13ibwxjFKdeysgTEFtRPx1mAkKjXzEhIBTVfBwTY,1030
|
|
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=8NfI010eUTMYv9rsjWXFzxOs2RASrsS0jNAC5aVNNkk,10150
|
|
7
|
+
types_boto3_timestream_influxdb/literals.pyi,sha256=1RhOzDbGpj0pbVTNCCuSlgOQ3hX4aCUJo-DDjUFwRms,10148
|
|
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=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
+
types_boto3_timestream_influxdb-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_timestream_influxdb-1.35.93.dist-info/METADATA,sha256=WT-k7ztFMeFkXVPt8Ejk88A455yGzH_AzxhjW91Hprc,15404
|
|
16
|
+
types_boto3_timestream_influxdb-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
17
|
+
types_boto3_timestream_influxdb-1.35.93.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
+
types_boto3_timestream_influxdb-1.35.93.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_timestream_influxdb/__init__.py,sha256=rWCrPF5kvwT2VLE6c2QGnoENs-wqIs1Lk_DTijWoaHs,957
|
|
2
|
-
types_boto3_timestream_influxdb/__init__.pyi,sha256=4g3APPU0EZOa8-OpeirIxWJe0eCTvVHm6-aXDvz3ROE,956
|
|
3
|
-
types_boto3_timestream_influxdb/__main__.py,sha256=6fuLVRZyJKwE3RkHIqFup2WFCup9DI3r1Va4PYviS6A,996
|
|
4
|
-
types_boto3_timestream_influxdb/client.py,sha256=vvIj_LtTmJWm-ZW1VwOAa1g_ISvQ6sSq6x00e20Qzpk,11240
|
|
5
|
-
types_boto3_timestream_influxdb/client.pyi,sha256=3SH3KM3-4UhKSMEooTn7TYrxVUvwNsFcDAmTeH3YNys,11236
|
|
6
|
-
types_boto3_timestream_influxdb/literals.py,sha256=FQ4_zBgUbrKZjHtC-RuDxoD4JKPRQU6H3Anc4W9C9To,9910
|
|
7
|
-
types_boto3_timestream_influxdb/literals.pyi,sha256=Ou2c8AAsL7NTRuCcNsa_Qm5KlJkCB9WUxGmm5Kqt4qk,9908
|
|
8
|
-
types_boto3_timestream_influxdb/paginator.py,sha256=1qhu6SMx0t4ZR-ZE6BTTfyqx82UFbDfuwlufj-ZGiU4,3574
|
|
9
|
-
types_boto3_timestream_influxdb/paginator.pyi,sha256=tXqdO3t9062EAIRJzH7yQ6GHdgZLtkNdLZW28gkWjwg,3567
|
|
10
|
-
types_boto3_timestream_influxdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_timestream_influxdb/type_defs.py,sha256=NstJ4p4wPYaVvu2XdMkf1vUh6dqPoQsfBizdo1Pp84A,11633
|
|
12
|
-
types_boto3_timestream_influxdb/type_defs.pyi,sha256=PNzb3nAKHifBr44NnQ6b9eOiYI6N8fBk3T14VqwwEa0,11604
|
|
13
|
-
types_boto3_timestream_influxdb/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
|
|
14
|
-
types_boto3_timestream_influxdb-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
-
types_boto3_timestream_influxdb-1.35.71.dist-info/METADATA,sha256=1rzf-1xSq3lQmhVWOtCQ_LKzaPZSa6xVSNtiYsoOJR0,14052
|
|
16
|
-
types_boto3_timestream_influxdb-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
17
|
-
types_boto3_timestream_influxdb-1.35.71.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
-
types_boto3_timestream_influxdb-1.35.71.dist-info/RECORD,,
|