types-boto3-timestream-influxdb 1.35.79__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 +3 -2
- types_boto3_timestream_influxdb/literals.pyi +3 -2
- types_boto3_timestream_influxdb/paginator.py +25 -21
- types_boto3_timestream_influxdb/paginator.pyi +24 -20
- types_boto3_timestream_influxdb/type_defs.py +14 -7
- types_boto3_timestream_influxdb/type_defs.pyi +14 -7
- types_boto3_timestream_influxdb/version.py +2 -2
- {types_boto3_timestream_influxdb-1.35.79.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_timestream_influxdb-1.35.79.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/METADATA +6 -6
- types_boto3_timestream_influxdb-1.35.93.dist-info/RECORD +18 -0
- {types_boto3_timestream_influxdb-1.35.79.dist-info → types_boto3_timestream_influxdb-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_timestream_influxdb-1.35.79.dist-info/RECORD +0 -18
- {types_boto3_timestream_influxdb-1.35.79.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
|
|
@@ -105,6 +105,7 @@ ServiceName = Literal[
|
|
|
105
105
|
"b2bi",
|
|
106
106
|
"backup",
|
|
107
107
|
"backup-gateway",
|
|
108
|
+
"backupsearch",
|
|
108
109
|
"batch",
|
|
109
110
|
"bcm-data-exports",
|
|
110
111
|
"bcm-pricing-calculator",
|
|
@@ -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
|
|
@@ -103,6 +103,7 @@ ServiceName = Literal[
|
|
|
103
103
|
"b2bi",
|
|
104
104
|
"backup",
|
|
105
105
|
"backup-gateway",
|
|
106
|
+
"backupsearch",
|
|
106
107
|
"batch",
|
|
107
108
|
"bcm-data-exports",
|
|
108
109
|
"bcm-pricing-calculator",
|
|
@@ -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,
|
|
@@ -28,6 +29,12 @@ from .literals import (
|
|
|
28
29
|
TracingTypeType,
|
|
29
30
|
)
|
|
30
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
|
|
31
38
|
if sys.version_info >= (3, 12):
|
|
32
39
|
from typing import NotRequired, TypedDict
|
|
33
40
|
else:
|
|
@@ -50,10 +57,10 @@ __all__ = (
|
|
|
50
57
|
"GetDbParameterGroupInputRequestTypeDef",
|
|
51
58
|
"GetDbParameterGroupOutputTypeDef",
|
|
52
59
|
"InfluxDBv2ParametersTypeDef",
|
|
53
|
-
"
|
|
60
|
+
"ListDbInstancesInputPaginateTypeDef",
|
|
54
61
|
"ListDbInstancesInputRequestTypeDef",
|
|
55
62
|
"ListDbInstancesOutputTypeDef",
|
|
56
|
-
"
|
|
63
|
+
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
57
64
|
"ListDbParameterGroupsInputRequestTypeDef",
|
|
58
65
|
"ListDbParameterGroupsOutputTypeDef",
|
|
59
66
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
@@ -215,11 +222,11 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
215
222
|
uiDisabled: NotRequired[bool]
|
|
216
223
|
|
|
217
224
|
|
|
218
|
-
class
|
|
225
|
+
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
219
226
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
220
227
|
|
|
221
228
|
|
|
222
|
-
class
|
|
229
|
+
class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
|
|
223
230
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
224
231
|
|
|
225
232
|
|
|
@@ -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,
|
|
@@ -28,6 +29,12 @@ from .literals import (
|
|
|
28
29
|
TracingTypeType,
|
|
29
30
|
)
|
|
30
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
|
|
31
38
|
if sys.version_info >= (3, 12):
|
|
32
39
|
from typing import NotRequired, TypedDict
|
|
33
40
|
else:
|
|
@@ -49,10 +56,10 @@ __all__ = (
|
|
|
49
56
|
"GetDbParameterGroupInputRequestTypeDef",
|
|
50
57
|
"GetDbParameterGroupOutputTypeDef",
|
|
51
58
|
"InfluxDBv2ParametersTypeDef",
|
|
52
|
-
"
|
|
59
|
+
"ListDbInstancesInputPaginateTypeDef",
|
|
53
60
|
"ListDbInstancesInputRequestTypeDef",
|
|
54
61
|
"ListDbInstancesOutputTypeDef",
|
|
55
|
-
"
|
|
62
|
+
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
56
63
|
"ListDbParameterGroupsInputRequestTypeDef",
|
|
57
64
|
"ListDbParameterGroupsOutputTypeDef",
|
|
58
65
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
@@ -195,10 +202,10 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
195
202
|
storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
|
|
196
203
|
uiDisabled: NotRequired[bool]
|
|
197
204
|
|
|
198
|
-
class
|
|
205
|
+
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
199
206
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
200
207
|
|
|
201
|
-
class
|
|
208
|
+
class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
|
|
202
209
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
203
210
|
|
|
204
211
|
class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
@@ -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
|
|
@@ -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/),
|
|
@@ -53,7 +53,7 @@ with [VSCode](https://code.visualstudio.com/),
|
|
|
53
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
54
|
|
|
55
55
|
Generated with
|
|
56
|
-
[mypy-boto3-builder 8.
|
|
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
|
|
@@ -106,7 +106,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
106
106
|
isolation.
|
|
107
107
|
|
|
108
108
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.35.
|
|
109
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
110
110
|
2. Select `boto3` AWS SDK.
|
|
111
111
|
3. Add `TimestreamInfluxDB` service.
|
|
112
112
|
4. Use provided commands to install generated packages.
|
|
@@ -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=Afij2V4YSKH1v6ISGHC8nH2MYMi9kiyhqhqR9uOiJ1I,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=WjjcfpddVOSFxEa_Ofvop6KTL6P16ZFhLasjKbFB5sc,10135
|
|
7
|
-
types_boto3_timestream_influxdb/literals.pyi,sha256=vopjjewNcw6yQSvuiimqJku1_SOzowdV88KuSDh5wQ4,10133
|
|
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=L3DafLHXHGtRCJY7ZJJMB-jUhst5HcocIoF4sSelfJ4,11913
|
|
12
|
-
types_boto3_timestream_influxdb/type_defs.pyi,sha256=Tr0uxilOK8f0iYpZyPcZ5uLv5V04qhLIl4zmKytoFr8,11884
|
|
13
|
-
types_boto3_timestream_influxdb/version.py,sha256=CqxszC83Bjd61i7zZ1sk4YvgCUxpvXG-P6Bs1YPItJE,93
|
|
14
|
-
types_boto3_timestream_influxdb-1.35.79.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
-
types_boto3_timestream_influxdb-1.35.79.dist-info/METADATA,sha256=MVdw6qAB4QNIM3quxqTrrWmeUYWcecru8OlT0xHcbjU,15411
|
|
16
|
-
types_boto3_timestream_influxdb-1.35.79.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
17
|
-
types_boto3_timestream_influxdb-1.35.79.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
-
types_boto3_timestream_influxdb-1.35.79.dist-info/RECORD,,
|