types-boto3-timestream-influxdb 1.41.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.
- types_boto3_timestream_influxdb/__init__.py +49 -0
- types_boto3_timestream_influxdb/__init__.pyi +48 -0
- types_boto3_timestream_influxdb/__main__.py +43 -0
- types_boto3_timestream_influxdb/client.py +339 -0
- types_boto3_timestream_influxdb/client.pyi +336 -0
- types_boto3_timestream_influxdb/literals.py +514 -0
- types_boto3_timestream_influxdb/literals.pyi +512 -0
- types_boto3_timestream_influxdb/paginator.py +144 -0
- types_boto3_timestream_influxdb/paginator.pyi +131 -0
- types_boto3_timestream_influxdb/py.typed +0 -0
- types_boto3_timestream_influxdb/type_defs.py +687 -0
- types_boto3_timestream_influxdb/type_defs.pyi +642 -0
- types_boto3_timestream_influxdb/version.py +7 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/METADATA +485 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/WHEEL +5 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/licenses/LICENSE +21 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for timestream-influxdb service client paginators.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from boto3.session import Session
|
|
12
|
+
|
|
13
|
+
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
14
|
+
from types_boto3_timestream_influxdb.paginator import (
|
|
15
|
+
ListDbClustersPaginator,
|
|
16
|
+
ListDbInstancesForClusterPaginator,
|
|
17
|
+
ListDbInstancesPaginator,
|
|
18
|
+
ListDbParameterGroupsPaginator,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
session = Session()
|
|
22
|
+
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
23
|
+
|
|
24
|
+
list_db_clusters_paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters")
|
|
25
|
+
list_db_instances_for_cluster_paginator: ListDbInstancesForClusterPaginator = client.get_paginator("list_db_instances_for_cluster")
|
|
26
|
+
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
27
|
+
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
28
|
+
```
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
from __future__ import annotations
|
|
32
|
+
|
|
33
|
+
import sys
|
|
34
|
+
from typing import TYPE_CHECKING
|
|
35
|
+
|
|
36
|
+
from botocore.paginate import PageIterator, Paginator
|
|
37
|
+
|
|
38
|
+
from .type_defs import (
|
|
39
|
+
ListDbClustersInputPaginateTypeDef,
|
|
40
|
+
ListDbClustersOutputTypeDef,
|
|
41
|
+
ListDbInstancesForClusterInputPaginateTypeDef,
|
|
42
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
43
|
+
ListDbInstancesInputPaginateTypeDef,
|
|
44
|
+
ListDbInstancesOutputTypeDef,
|
|
45
|
+
ListDbParameterGroupsInputPaginateTypeDef,
|
|
46
|
+
ListDbParameterGroupsOutputTypeDef,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
if sys.version_info >= (3, 12):
|
|
50
|
+
from typing import Unpack
|
|
51
|
+
else:
|
|
52
|
+
from typing_extensions import Unpack
|
|
53
|
+
|
|
54
|
+
__all__ = (
|
|
55
|
+
"ListDbClustersPaginator",
|
|
56
|
+
"ListDbInstancesForClusterPaginator",
|
|
57
|
+
"ListDbInstancesPaginator",
|
|
58
|
+
"ListDbParameterGroupsPaginator",
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
if TYPE_CHECKING:
|
|
62
|
+
_ListDbClustersPaginatorBase = Paginator[ListDbClustersOutputTypeDef]
|
|
63
|
+
else:
|
|
64
|
+
_ListDbClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
65
|
+
|
|
66
|
+
class ListDbClustersPaginator(_ListDbClustersPaginatorBase):
|
|
67
|
+
"""
|
|
68
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters)
|
|
69
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
70
|
+
"""
|
|
71
|
+
def paginate( # type: ignore[override]
|
|
72
|
+
self, **kwargs: Unpack[ListDbClustersInputPaginateTypeDef]
|
|
73
|
+
) -> PageIterator[ListDbClustersOutputTypeDef]:
|
|
74
|
+
"""
|
|
75
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters.paginate)
|
|
76
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
if TYPE_CHECKING:
|
|
80
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator[ListDbInstancesForClusterOutputTypeDef]
|
|
81
|
+
else:
|
|
82
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator # type: ignore[assignment]
|
|
83
|
+
|
|
84
|
+
class ListDbInstancesForClusterPaginator(_ListDbInstancesForClusterPaginatorBase):
|
|
85
|
+
"""
|
|
86
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster)
|
|
87
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
88
|
+
"""
|
|
89
|
+
def paginate( # type: ignore[override]
|
|
90
|
+
self, **kwargs: Unpack[ListDbInstancesForClusterInputPaginateTypeDef]
|
|
91
|
+
) -> PageIterator[ListDbInstancesForClusterOutputTypeDef]:
|
|
92
|
+
"""
|
|
93
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster.paginate)
|
|
94
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
if TYPE_CHECKING:
|
|
98
|
+
_ListDbInstancesPaginatorBase = Paginator[ListDbInstancesOutputTypeDef]
|
|
99
|
+
else:
|
|
100
|
+
_ListDbInstancesPaginatorBase = Paginator # type: ignore[assignment]
|
|
101
|
+
|
|
102
|
+
class ListDbInstancesPaginator(_ListDbInstancesPaginatorBase):
|
|
103
|
+
"""
|
|
104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances)
|
|
105
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
106
|
+
"""
|
|
107
|
+
def paginate( # type: ignore[override]
|
|
108
|
+
self, **kwargs: Unpack[ListDbInstancesInputPaginateTypeDef]
|
|
109
|
+
) -> PageIterator[ListDbInstancesOutputTypeDef]:
|
|
110
|
+
"""
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances.paginate)
|
|
112
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
if TYPE_CHECKING:
|
|
116
|
+
_ListDbParameterGroupsPaginatorBase = Paginator[ListDbParameterGroupsOutputTypeDef]
|
|
117
|
+
else:
|
|
118
|
+
_ListDbParameterGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
119
|
+
|
|
120
|
+
class ListDbParameterGroupsPaginator(_ListDbParameterGroupsPaginatorBase):
|
|
121
|
+
"""
|
|
122
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups)
|
|
123
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
124
|
+
"""
|
|
125
|
+
def paginate( # type: ignore[override]
|
|
126
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputPaginateTypeDef]
|
|
127
|
+
) -> PageIterator[ListDbParameterGroupsOutputTypeDef]:
|
|
128
|
+
"""
|
|
129
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups.paginate)
|
|
130
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
131
|
+
"""
|
|
File without changes
|