types-aiobotocore-neptune-graph 2.25.2__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_aiobotocore_neptune_graph/__init__.py +103 -0
- types_aiobotocore_neptune_graph/__init__.pyi +102 -0
- types_aiobotocore_neptune_graph/__main__.py +43 -0
- types_aiobotocore_neptune_graph/client.py +702 -0
- types_aiobotocore_neptune_graph/client.pyi +699 -0
- types_aiobotocore_neptune_graph/literals.py +555 -0
- types_aiobotocore_neptune_graph/literals.pyi +553 -0
- types_aiobotocore_neptune_graph/paginator.py +171 -0
- types_aiobotocore_neptune_graph/paginator.pyi +155 -0
- types_aiobotocore_neptune_graph/py.typed +0 -0
- types_aiobotocore_neptune_graph/type_defs.py +1051 -0
- types_aiobotocore_neptune_graph/type_defs.pyi +963 -0
- types_aiobotocore_neptune_graph/version.py +7 -0
- types_aiobotocore_neptune_graph/waiter.py +249 -0
- types_aiobotocore_neptune_graph/waiter.pyi +226 -0
- types_aiobotocore_neptune_graph-2.25.2.dist-info/METADATA +547 -0
- types_aiobotocore_neptune_graph-2.25.2.dist-info/RECORD +20 -0
- types_aiobotocore_neptune_graph-2.25.2.dist-info/WHEEL +5 -0
- types_aiobotocore_neptune_graph-2.25.2.dist-info/licenses/LICENSE +21 -0
- types_aiobotocore_neptune_graph-2.25.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for neptune-graph service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_neptune_graph/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_neptune_graph import (
|
|
13
|
+
Client,
|
|
14
|
+
ExportTaskCancelledWaiter,
|
|
15
|
+
ExportTaskSuccessfulWaiter,
|
|
16
|
+
GraphAvailableWaiter,
|
|
17
|
+
GraphDeletedWaiter,
|
|
18
|
+
GraphSnapshotAvailableWaiter,
|
|
19
|
+
GraphSnapshotDeletedWaiter,
|
|
20
|
+
GraphStoppedWaiter,
|
|
21
|
+
ImportTaskCancelledWaiter,
|
|
22
|
+
ImportTaskSuccessfulWaiter,
|
|
23
|
+
ListExportTasksPaginator,
|
|
24
|
+
ListGraphSnapshotsPaginator,
|
|
25
|
+
ListGraphsPaginator,
|
|
26
|
+
ListImportTasksPaginator,
|
|
27
|
+
ListPrivateGraphEndpointsPaginator,
|
|
28
|
+
NeptuneGraphClient,
|
|
29
|
+
PrivateGraphEndpointAvailableWaiter,
|
|
30
|
+
PrivateGraphEndpointDeletedWaiter,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
session = get_session()
|
|
34
|
+
async with session.create_client("neptune-graph") as client:
|
|
35
|
+
client: NeptuneGraphClient
|
|
36
|
+
...
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
export_task_cancelled_waiter: ExportTaskCancelledWaiter = client.get_waiter("export_task_cancelled")
|
|
40
|
+
export_task_successful_waiter: ExportTaskSuccessfulWaiter = client.get_waiter("export_task_successful")
|
|
41
|
+
graph_available_waiter: GraphAvailableWaiter = client.get_waiter("graph_available")
|
|
42
|
+
graph_deleted_waiter: GraphDeletedWaiter = client.get_waiter("graph_deleted")
|
|
43
|
+
graph_snapshot_available_waiter: GraphSnapshotAvailableWaiter = client.get_waiter("graph_snapshot_available")
|
|
44
|
+
graph_snapshot_deleted_waiter: GraphSnapshotDeletedWaiter = client.get_waiter("graph_snapshot_deleted")
|
|
45
|
+
graph_stopped_waiter: GraphStoppedWaiter = client.get_waiter("graph_stopped")
|
|
46
|
+
import_task_cancelled_waiter: ImportTaskCancelledWaiter = client.get_waiter("import_task_cancelled")
|
|
47
|
+
import_task_successful_waiter: ImportTaskSuccessfulWaiter = client.get_waiter("import_task_successful")
|
|
48
|
+
private_graph_endpoint_available_waiter: PrivateGraphEndpointAvailableWaiter = client.get_waiter("private_graph_endpoint_available")
|
|
49
|
+
private_graph_endpoint_deleted_waiter: PrivateGraphEndpointDeletedWaiter = client.get_waiter("private_graph_endpoint_deleted")
|
|
50
|
+
|
|
51
|
+
list_export_tasks_paginator: ListExportTasksPaginator = client.get_paginator("list_export_tasks")
|
|
52
|
+
list_graph_snapshots_paginator: ListGraphSnapshotsPaginator = client.get_paginator("list_graph_snapshots")
|
|
53
|
+
list_graphs_paginator: ListGraphsPaginator = client.get_paginator("list_graphs")
|
|
54
|
+
list_import_tasks_paginator: ListImportTasksPaginator = client.get_paginator("list_import_tasks")
|
|
55
|
+
list_private_graph_endpoints_paginator: ListPrivateGraphEndpointsPaginator = client.get_paginator("list_private_graph_endpoints")
|
|
56
|
+
```
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
from .client import NeptuneGraphClient
|
|
60
|
+
from .paginator import (
|
|
61
|
+
ListExportTasksPaginator,
|
|
62
|
+
ListGraphSnapshotsPaginator,
|
|
63
|
+
ListGraphsPaginator,
|
|
64
|
+
ListImportTasksPaginator,
|
|
65
|
+
ListPrivateGraphEndpointsPaginator,
|
|
66
|
+
)
|
|
67
|
+
from .waiter import (
|
|
68
|
+
ExportTaskCancelledWaiter,
|
|
69
|
+
ExportTaskSuccessfulWaiter,
|
|
70
|
+
GraphAvailableWaiter,
|
|
71
|
+
GraphDeletedWaiter,
|
|
72
|
+
GraphSnapshotAvailableWaiter,
|
|
73
|
+
GraphSnapshotDeletedWaiter,
|
|
74
|
+
GraphStoppedWaiter,
|
|
75
|
+
ImportTaskCancelledWaiter,
|
|
76
|
+
ImportTaskSuccessfulWaiter,
|
|
77
|
+
PrivateGraphEndpointAvailableWaiter,
|
|
78
|
+
PrivateGraphEndpointDeletedWaiter,
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
Client = NeptuneGraphClient
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
__all__ = (
|
|
85
|
+
"Client",
|
|
86
|
+
"ExportTaskCancelledWaiter",
|
|
87
|
+
"ExportTaskSuccessfulWaiter",
|
|
88
|
+
"GraphAvailableWaiter",
|
|
89
|
+
"GraphDeletedWaiter",
|
|
90
|
+
"GraphSnapshotAvailableWaiter",
|
|
91
|
+
"GraphSnapshotDeletedWaiter",
|
|
92
|
+
"GraphStoppedWaiter",
|
|
93
|
+
"ImportTaskCancelledWaiter",
|
|
94
|
+
"ImportTaskSuccessfulWaiter",
|
|
95
|
+
"ListExportTasksPaginator",
|
|
96
|
+
"ListGraphSnapshotsPaginator",
|
|
97
|
+
"ListGraphsPaginator",
|
|
98
|
+
"ListImportTasksPaginator",
|
|
99
|
+
"ListPrivateGraphEndpointsPaginator",
|
|
100
|
+
"NeptuneGraphClient",
|
|
101
|
+
"PrivateGraphEndpointAvailableWaiter",
|
|
102
|
+
"PrivateGraphEndpointDeletedWaiter",
|
|
103
|
+
)
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for neptune-graph service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_neptune_graph/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_neptune_graph import (
|
|
13
|
+
Client,
|
|
14
|
+
ExportTaskCancelledWaiter,
|
|
15
|
+
ExportTaskSuccessfulWaiter,
|
|
16
|
+
GraphAvailableWaiter,
|
|
17
|
+
GraphDeletedWaiter,
|
|
18
|
+
GraphSnapshotAvailableWaiter,
|
|
19
|
+
GraphSnapshotDeletedWaiter,
|
|
20
|
+
GraphStoppedWaiter,
|
|
21
|
+
ImportTaskCancelledWaiter,
|
|
22
|
+
ImportTaskSuccessfulWaiter,
|
|
23
|
+
ListExportTasksPaginator,
|
|
24
|
+
ListGraphSnapshotsPaginator,
|
|
25
|
+
ListGraphsPaginator,
|
|
26
|
+
ListImportTasksPaginator,
|
|
27
|
+
ListPrivateGraphEndpointsPaginator,
|
|
28
|
+
NeptuneGraphClient,
|
|
29
|
+
PrivateGraphEndpointAvailableWaiter,
|
|
30
|
+
PrivateGraphEndpointDeletedWaiter,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
session = get_session()
|
|
34
|
+
async with session.create_client("neptune-graph") as client:
|
|
35
|
+
client: NeptuneGraphClient
|
|
36
|
+
...
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
export_task_cancelled_waiter: ExportTaskCancelledWaiter = client.get_waiter("export_task_cancelled")
|
|
40
|
+
export_task_successful_waiter: ExportTaskSuccessfulWaiter = client.get_waiter("export_task_successful")
|
|
41
|
+
graph_available_waiter: GraphAvailableWaiter = client.get_waiter("graph_available")
|
|
42
|
+
graph_deleted_waiter: GraphDeletedWaiter = client.get_waiter("graph_deleted")
|
|
43
|
+
graph_snapshot_available_waiter: GraphSnapshotAvailableWaiter = client.get_waiter("graph_snapshot_available")
|
|
44
|
+
graph_snapshot_deleted_waiter: GraphSnapshotDeletedWaiter = client.get_waiter("graph_snapshot_deleted")
|
|
45
|
+
graph_stopped_waiter: GraphStoppedWaiter = client.get_waiter("graph_stopped")
|
|
46
|
+
import_task_cancelled_waiter: ImportTaskCancelledWaiter = client.get_waiter("import_task_cancelled")
|
|
47
|
+
import_task_successful_waiter: ImportTaskSuccessfulWaiter = client.get_waiter("import_task_successful")
|
|
48
|
+
private_graph_endpoint_available_waiter: PrivateGraphEndpointAvailableWaiter = client.get_waiter("private_graph_endpoint_available")
|
|
49
|
+
private_graph_endpoint_deleted_waiter: PrivateGraphEndpointDeletedWaiter = client.get_waiter("private_graph_endpoint_deleted")
|
|
50
|
+
|
|
51
|
+
list_export_tasks_paginator: ListExportTasksPaginator = client.get_paginator("list_export_tasks")
|
|
52
|
+
list_graph_snapshots_paginator: ListGraphSnapshotsPaginator = client.get_paginator("list_graph_snapshots")
|
|
53
|
+
list_graphs_paginator: ListGraphsPaginator = client.get_paginator("list_graphs")
|
|
54
|
+
list_import_tasks_paginator: ListImportTasksPaginator = client.get_paginator("list_import_tasks")
|
|
55
|
+
list_private_graph_endpoints_paginator: ListPrivateGraphEndpointsPaginator = client.get_paginator("list_private_graph_endpoints")
|
|
56
|
+
```
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
from .client import NeptuneGraphClient
|
|
60
|
+
from .paginator import (
|
|
61
|
+
ListExportTasksPaginator,
|
|
62
|
+
ListGraphSnapshotsPaginator,
|
|
63
|
+
ListGraphsPaginator,
|
|
64
|
+
ListImportTasksPaginator,
|
|
65
|
+
ListPrivateGraphEndpointsPaginator,
|
|
66
|
+
)
|
|
67
|
+
from .waiter import (
|
|
68
|
+
ExportTaskCancelledWaiter,
|
|
69
|
+
ExportTaskSuccessfulWaiter,
|
|
70
|
+
GraphAvailableWaiter,
|
|
71
|
+
GraphDeletedWaiter,
|
|
72
|
+
GraphSnapshotAvailableWaiter,
|
|
73
|
+
GraphSnapshotDeletedWaiter,
|
|
74
|
+
GraphStoppedWaiter,
|
|
75
|
+
ImportTaskCancelledWaiter,
|
|
76
|
+
ImportTaskSuccessfulWaiter,
|
|
77
|
+
PrivateGraphEndpointAvailableWaiter,
|
|
78
|
+
PrivateGraphEndpointDeletedWaiter,
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
Client = NeptuneGraphClient
|
|
82
|
+
|
|
83
|
+
__all__ = (
|
|
84
|
+
"Client",
|
|
85
|
+
"ExportTaskCancelledWaiter",
|
|
86
|
+
"ExportTaskSuccessfulWaiter",
|
|
87
|
+
"GraphAvailableWaiter",
|
|
88
|
+
"GraphDeletedWaiter",
|
|
89
|
+
"GraphSnapshotAvailableWaiter",
|
|
90
|
+
"GraphSnapshotDeletedWaiter",
|
|
91
|
+
"GraphStoppedWaiter",
|
|
92
|
+
"ImportTaskCancelledWaiter",
|
|
93
|
+
"ImportTaskSuccessfulWaiter",
|
|
94
|
+
"ListExportTasksPaginator",
|
|
95
|
+
"ListGraphSnapshotsPaginator",
|
|
96
|
+
"ListGraphsPaginator",
|
|
97
|
+
"ListImportTasksPaginator",
|
|
98
|
+
"ListPrivateGraphEndpointsPaginator",
|
|
99
|
+
"NeptuneGraphClient",
|
|
100
|
+
"PrivateGraphEndpointAvailableWaiter",
|
|
101
|
+
"PrivateGraphEndpointDeletedWaiter",
|
|
102
|
+
)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def print_info() -> None:
|
|
11
|
+
"""
|
|
12
|
+
Print package info to stdout.
|
|
13
|
+
"""
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for aiobotocore NeptuneGraph 2.25.2\n"
|
|
16
|
+
"Version: 2.25.2\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
|
+
"Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_neptune_graph//\n"
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/neptune-graph.html#neptunegraph\n"
|
|
20
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def print_version() -> None:
|
|
26
|
+
"""
|
|
27
|
+
Print package version to stdout.
|
|
28
|
+
"""
|
|
29
|
+
sys.stdout.write("2.25.2\n")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def main() -> None:
|
|
33
|
+
"""
|
|
34
|
+
Main CLI entrypoint.
|
|
35
|
+
"""
|
|
36
|
+
if "--version" in sys.argv:
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
39
|
+
print_info()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
if __name__ == "__main__":
|
|
43
|
+
main()
|