types-aiobotocore-devops-agent 3.4.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.
@@ -0,0 +1,64 @@
1
+ """
2
+ Main interface for devops-agent service.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_devops_agent/)
5
+
6
+ Copyright 2026 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from aiobotocore.session import get_session
12
+ from types_aiobotocore_devops_agent import (
13
+ Client,
14
+ DevOpsAgentServiceClient,
15
+ ListAgentSpacesPaginator,
16
+ ListAssociationsPaginator,
17
+ ListBacklogTasksPaginator,
18
+ ListExecutionsPaginator,
19
+ ListGoalsPaginator,
20
+ ListJournalRecordsPaginator,
21
+ ListServicesPaginator,
22
+ )
23
+
24
+ session = get_session()
25
+ async with session.create_client("devops-agent") as client:
26
+ client: DevOpsAgentServiceClient
27
+ ...
28
+
29
+
30
+ list_agent_spaces_paginator: ListAgentSpacesPaginator = client.get_paginator("list_agent_spaces")
31
+ list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
32
+ list_backlog_tasks_paginator: ListBacklogTasksPaginator = client.get_paginator("list_backlog_tasks")
33
+ list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
34
+ list_goals_paginator: ListGoalsPaginator = client.get_paginator("list_goals")
35
+ list_journal_records_paginator: ListJournalRecordsPaginator = client.get_paginator("list_journal_records")
36
+ list_services_paginator: ListServicesPaginator = client.get_paginator("list_services")
37
+ ```
38
+ """
39
+
40
+ from .client import DevOpsAgentServiceClient
41
+ from .paginator import (
42
+ ListAgentSpacesPaginator,
43
+ ListAssociationsPaginator,
44
+ ListBacklogTasksPaginator,
45
+ ListExecutionsPaginator,
46
+ ListGoalsPaginator,
47
+ ListJournalRecordsPaginator,
48
+ ListServicesPaginator,
49
+ )
50
+
51
+ Client = DevOpsAgentServiceClient
52
+
53
+
54
+ __all__ = (
55
+ "Client",
56
+ "DevOpsAgentServiceClient",
57
+ "ListAgentSpacesPaginator",
58
+ "ListAssociationsPaginator",
59
+ "ListBacklogTasksPaginator",
60
+ "ListExecutionsPaginator",
61
+ "ListGoalsPaginator",
62
+ "ListJournalRecordsPaginator",
63
+ "ListServicesPaginator",
64
+ )
@@ -0,0 +1,63 @@
1
+ """
2
+ Main interface for devops-agent service.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_devops_agent/)
5
+
6
+ Copyright 2026 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from aiobotocore.session import get_session
12
+ from types_aiobotocore_devops_agent import (
13
+ Client,
14
+ DevOpsAgentServiceClient,
15
+ ListAgentSpacesPaginator,
16
+ ListAssociationsPaginator,
17
+ ListBacklogTasksPaginator,
18
+ ListExecutionsPaginator,
19
+ ListGoalsPaginator,
20
+ ListJournalRecordsPaginator,
21
+ ListServicesPaginator,
22
+ )
23
+
24
+ session = get_session()
25
+ async with session.create_client("devops-agent") as client:
26
+ client: DevOpsAgentServiceClient
27
+ ...
28
+
29
+
30
+ list_agent_spaces_paginator: ListAgentSpacesPaginator = client.get_paginator("list_agent_spaces")
31
+ list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
32
+ list_backlog_tasks_paginator: ListBacklogTasksPaginator = client.get_paginator("list_backlog_tasks")
33
+ list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
34
+ list_goals_paginator: ListGoalsPaginator = client.get_paginator("list_goals")
35
+ list_journal_records_paginator: ListJournalRecordsPaginator = client.get_paginator("list_journal_records")
36
+ list_services_paginator: ListServicesPaginator = client.get_paginator("list_services")
37
+ ```
38
+ """
39
+
40
+ from .client import DevOpsAgentServiceClient
41
+ from .paginator import (
42
+ ListAgentSpacesPaginator,
43
+ ListAssociationsPaginator,
44
+ ListBacklogTasksPaginator,
45
+ ListExecutionsPaginator,
46
+ ListGoalsPaginator,
47
+ ListJournalRecordsPaginator,
48
+ ListServicesPaginator,
49
+ )
50
+
51
+ Client = DevOpsAgentServiceClient
52
+
53
+ __all__ = (
54
+ "Client",
55
+ "DevOpsAgentServiceClient",
56
+ "ListAgentSpacesPaginator",
57
+ "ListAssociationsPaginator",
58
+ "ListBacklogTasksPaginator",
59
+ "ListExecutionsPaginator",
60
+ "ListGoalsPaginator",
61
+ "ListJournalRecordsPaginator",
62
+ "ListServicesPaginator",
63
+ )
@@ -0,0 +1,43 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2026 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 DevOpsAgentService 3.4.0\n"
16
+ "Version: 3.4.0\n"
17
+ "Builder version: 8.12.0\n"
18
+ "Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_devops_agent//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/devops-agent.html#devopsagentservice\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("3.4.0\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()