types-boto3-timestream-influxdb 1.36.8__py3-none-any.whl → 1.36.22__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of types-boto3-timestream-influxdb might be problematic. Click here for more details.
- types_boto3_timestream_influxdb/__init__.py +16 -3
- types_boto3_timestream_influxdb/__init__.pyi +16 -3
- types_boto3_timestream_influxdb/__main__.py +4 -4
- types_boto3_timestream_influxdb/client.py +124 -25
- types_boto3_timestream_influxdb/client.pyi +124 -25
- types_boto3_timestream_influxdb/literals.py +22 -5
- types_boto3_timestream_influxdb/literals.pyi +22 -5
- types_boto3_timestream_influxdb/paginator.py +58 -3
- types_boto3_timestream_influxdb/paginator.pyi +52 -3
- types_boto3_timestream_influxdb/type_defs.py +198 -26
- types_boto3_timestream_influxdb/type_defs.pyi +185 -26
- types_boto3_timestream_influxdb/version.py +1 -1
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/METADATA +15 -9
- types_boto3_timestream_influxdb-1.36.22.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.36.8.dist-info/RECORD +0 -18
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/LICENSE +0 -0
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/WHEEL +0 -0
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/top_level.txt +0 -0
|
@@ -3,15 +3,15 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_timestream_influxdb.literals import
|
|
11
|
+
from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: ClusterDeploymentTypeType = "MULTI_NODE_READ_REPLICAS"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -23,10 +23,16 @@ else:
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
__all__ = (
|
|
26
|
+
"ClusterDeploymentTypeType",
|
|
27
|
+
"ClusterStatusType",
|
|
26
28
|
"DbInstanceTypeType",
|
|
27
29
|
"DbStorageTypeType",
|
|
28
30
|
"DeploymentTypeType",
|
|
29
31
|
"DurationTypeType",
|
|
32
|
+
"FailoverModeType",
|
|
33
|
+
"InstanceModeType",
|
|
34
|
+
"ListDbClustersPaginatorName",
|
|
35
|
+
"ListDbInstancesForClusterPaginatorName",
|
|
30
36
|
"ListDbInstancesPaginatorName",
|
|
31
37
|
"ListDbParameterGroupsPaginatorName",
|
|
32
38
|
"LogLevelType",
|
|
@@ -40,6 +46,8 @@ __all__ = (
|
|
|
40
46
|
)
|
|
41
47
|
|
|
42
48
|
|
|
49
|
+
ClusterDeploymentTypeType = Literal["MULTI_NODE_READ_REPLICAS"]
|
|
50
|
+
ClusterStatusType = Literal["AVAILABLE", "CREATING", "DELETED", "DELETING", "FAILED", "UPDATING"]
|
|
43
51
|
DbInstanceTypeType = Literal[
|
|
44
52
|
"db.influx.12xlarge",
|
|
45
53
|
"db.influx.16xlarge",
|
|
@@ -53,6 +61,10 @@ DbInstanceTypeType = Literal[
|
|
|
53
61
|
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
54
62
|
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
55
63
|
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
64
|
+
FailoverModeType = Literal["AUTOMATIC", "NO_FAILOVER"]
|
|
65
|
+
InstanceModeType = Literal["PRIMARY", "REPLICA", "STANDBY"]
|
|
66
|
+
ListDbClustersPaginatorName = Literal["list_db_clusters"]
|
|
67
|
+
ListDbInstancesForClusterPaginatorName = Literal["list_db_instances_for_cluster"]
|
|
56
68
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
57
69
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
58
70
|
LogLevelType = Literal["debug", "error", "info"]
|
|
@@ -487,4 +499,9 @@ ResourceServiceName = Literal[
|
|
|
487
499
|
"sns",
|
|
488
500
|
"sqs",
|
|
489
501
|
]
|
|
490
|
-
PaginatorName = Literal[
|
|
502
|
+
PaginatorName = Literal[
|
|
503
|
+
"list_db_clusters",
|
|
504
|
+
"list_db_instances",
|
|
505
|
+
"list_db_instances_for_cluster",
|
|
506
|
+
"list_db_parameter_groups",
|
|
507
|
+
]
|
|
@@ -3,15 +3,15 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_timestream_influxdb.literals import
|
|
11
|
+
from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: ClusterDeploymentTypeType = "MULTI_NODE_READ_REPLICAS"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -22,10 +22,16 @@ else:
|
|
|
22
22
|
from typing_extensions import Literal
|
|
23
23
|
|
|
24
24
|
__all__ = (
|
|
25
|
+
"ClusterDeploymentTypeType",
|
|
26
|
+
"ClusterStatusType",
|
|
25
27
|
"DbInstanceTypeType",
|
|
26
28
|
"DbStorageTypeType",
|
|
27
29
|
"DeploymentTypeType",
|
|
28
30
|
"DurationTypeType",
|
|
31
|
+
"FailoverModeType",
|
|
32
|
+
"InstanceModeType",
|
|
33
|
+
"ListDbClustersPaginatorName",
|
|
34
|
+
"ListDbInstancesForClusterPaginatorName",
|
|
29
35
|
"ListDbInstancesPaginatorName",
|
|
30
36
|
"ListDbParameterGroupsPaginatorName",
|
|
31
37
|
"LogLevelType",
|
|
@@ -38,6 +44,8 @@ __all__ = (
|
|
|
38
44
|
"TracingTypeType",
|
|
39
45
|
)
|
|
40
46
|
|
|
47
|
+
ClusterDeploymentTypeType = Literal["MULTI_NODE_READ_REPLICAS"]
|
|
48
|
+
ClusterStatusType = Literal["AVAILABLE", "CREATING", "DELETED", "DELETING", "FAILED", "UPDATING"]
|
|
41
49
|
DbInstanceTypeType = Literal[
|
|
42
50
|
"db.influx.12xlarge",
|
|
43
51
|
"db.influx.16xlarge",
|
|
@@ -51,6 +59,10 @@ DbInstanceTypeType = Literal[
|
|
|
51
59
|
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
52
60
|
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
53
61
|
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
62
|
+
FailoverModeType = Literal["AUTOMATIC", "NO_FAILOVER"]
|
|
63
|
+
InstanceModeType = Literal["PRIMARY", "REPLICA", "STANDBY"]
|
|
64
|
+
ListDbClustersPaginatorName = Literal["list_db_clusters"]
|
|
65
|
+
ListDbInstancesForClusterPaginatorName = Literal["list_db_instances_for_cluster"]
|
|
54
66
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
55
67
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
56
68
|
LogLevelType = Literal["debug", "error", "info"]
|
|
@@ -485,4 +497,9 @@ ResourceServiceName = Literal[
|
|
|
485
497
|
"sns",
|
|
486
498
|
"sqs",
|
|
487
499
|
]
|
|
488
|
-
PaginatorName = Literal[
|
|
500
|
+
PaginatorName = Literal[
|
|
501
|
+
"list_db_clusters",
|
|
502
|
+
"list_db_instances",
|
|
503
|
+
"list_db_instances_for_cluster",
|
|
504
|
+
"list_db_parameter_groups",
|
|
505
|
+
]
|
|
@@ -3,6 +3,8 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,6 +12,8 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
12
14
|
from types_boto3_timestream_influxdb.paginator import (
|
|
15
|
+
ListDbClustersPaginator,
|
|
16
|
+
ListDbInstancesForClusterPaginator,
|
|
13
17
|
ListDbInstancesPaginator,
|
|
14
18
|
ListDbParameterGroupsPaginator,
|
|
15
19
|
)
|
|
@@ -17,11 +21,11 @@ Usage::
|
|
|
17
21
|
session = Session()
|
|
18
22
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
19
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")
|
|
20
26
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
21
27
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
28
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
29
|
"""
|
|
26
30
|
|
|
27
31
|
from __future__ import annotations
|
|
@@ -32,6 +36,10 @@ from typing import TYPE_CHECKING
|
|
|
32
36
|
from botocore.paginate import PageIterator, Paginator
|
|
33
37
|
|
|
34
38
|
from .type_defs import (
|
|
39
|
+
ListDbClustersInputPaginateTypeDef,
|
|
40
|
+
ListDbClustersOutputTypeDef,
|
|
41
|
+
ListDbInstancesForClusterInputPaginateTypeDef,
|
|
42
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
35
43
|
ListDbInstancesInputPaginateTypeDef,
|
|
36
44
|
ListDbInstancesOutputTypeDef,
|
|
37
45
|
ListDbParameterGroupsInputPaginateTypeDef,
|
|
@@ -44,7 +52,54 @@ else:
|
|
|
44
52
|
from typing_extensions import Unpack
|
|
45
53
|
|
|
46
54
|
|
|
47
|
-
__all__ = (
|
|
55
|
+
__all__ = (
|
|
56
|
+
"ListDbClustersPaginator",
|
|
57
|
+
"ListDbInstancesForClusterPaginator",
|
|
58
|
+
"ListDbInstancesPaginator",
|
|
59
|
+
"ListDbParameterGroupsPaginator",
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
if TYPE_CHECKING:
|
|
64
|
+
_ListDbClustersPaginatorBase = Paginator[ListDbClustersOutputTypeDef]
|
|
65
|
+
else:
|
|
66
|
+
_ListDbClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class ListDbClustersPaginator(_ListDbClustersPaginatorBase):
|
|
70
|
+
"""
|
|
71
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters)
|
|
72
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
73
|
+
"""
|
|
74
|
+
|
|
75
|
+
def paginate( # type: ignore[override]
|
|
76
|
+
self, **kwargs: Unpack[ListDbClustersInputPaginateTypeDef]
|
|
77
|
+
) -> PageIterator[ListDbClustersOutputTypeDef]:
|
|
78
|
+
"""
|
|
79
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters.paginate)
|
|
80
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
if TYPE_CHECKING:
|
|
85
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator[ListDbInstancesForClusterOutputTypeDef]
|
|
86
|
+
else:
|
|
87
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator # type: ignore[assignment]
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class ListDbInstancesForClusterPaginator(_ListDbInstancesForClusterPaginatorBase):
|
|
91
|
+
"""
|
|
92
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster)
|
|
93
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
def paginate( # type: ignore[override]
|
|
97
|
+
self, **kwargs: Unpack[ListDbInstancesForClusterInputPaginateTypeDef]
|
|
98
|
+
) -> PageIterator[ListDbInstancesForClusterOutputTypeDef]:
|
|
99
|
+
"""
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster.paginate)
|
|
101
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
102
|
+
"""
|
|
48
103
|
|
|
49
104
|
|
|
50
105
|
if TYPE_CHECKING:
|
|
@@ -3,6 +3,8 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,6 +12,8 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
12
14
|
from types_boto3_timestream_influxdb.paginator import (
|
|
15
|
+
ListDbClustersPaginator,
|
|
16
|
+
ListDbInstancesForClusterPaginator,
|
|
13
17
|
ListDbInstancesPaginator,
|
|
14
18
|
ListDbParameterGroupsPaginator,
|
|
15
19
|
)
|
|
@@ -17,11 +21,11 @@ Usage::
|
|
|
17
21
|
session = Session()
|
|
18
22
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
19
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")
|
|
20
26
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
21
27
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
28
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
29
|
"""
|
|
26
30
|
|
|
27
31
|
from __future__ import annotations
|
|
@@ -32,6 +36,10 @@ from typing import TYPE_CHECKING
|
|
|
32
36
|
from botocore.paginate import PageIterator, Paginator
|
|
33
37
|
|
|
34
38
|
from .type_defs import (
|
|
39
|
+
ListDbClustersInputPaginateTypeDef,
|
|
40
|
+
ListDbClustersOutputTypeDef,
|
|
41
|
+
ListDbInstancesForClusterInputPaginateTypeDef,
|
|
42
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
35
43
|
ListDbInstancesInputPaginateTypeDef,
|
|
36
44
|
ListDbInstancesOutputTypeDef,
|
|
37
45
|
ListDbParameterGroupsInputPaginateTypeDef,
|
|
@@ -43,7 +51,48 @@ if sys.version_info >= (3, 12):
|
|
|
43
51
|
else:
|
|
44
52
|
from typing_extensions import Unpack
|
|
45
53
|
|
|
46
|
-
__all__ = (
|
|
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
|
+
"""
|
|
47
96
|
|
|
48
97
|
if TYPE_CHECKING:
|
|
49
98
|
_ListDbInstancesPaginatorBase = Paginator[ListDbInstancesOutputTypeDef]
|