types-boto3-workspaces-web 1.36.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,36 @@
1
+ """
2
+ Main interface for workspaces-web service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from boto3.session import Session
8
+ from types_boto3_workspaces_web import (
9
+ Client,
10
+ ListDataProtectionSettingsPaginator,
11
+ ListSessionsPaginator,
12
+ WorkSpacesWebClient,
13
+ )
14
+
15
+ session = Session()
16
+ client: WorkSpacesWebClient = session.client("workspaces-web")
17
+
18
+ list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
19
+ list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
20
+ ```
21
+
22
+ Copyright 2025 Vlad Emelianov
23
+ """
24
+
25
+ from .client import WorkSpacesWebClient
26
+ from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
27
+
28
+ Client = WorkSpacesWebClient
29
+
30
+
31
+ __all__ = (
32
+ "Client",
33
+ "ListDataProtectionSettingsPaginator",
34
+ "ListSessionsPaginator",
35
+ "WorkSpacesWebClient",
36
+ )
@@ -0,0 +1,35 @@
1
+ """
2
+ Main interface for workspaces-web service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from boto3.session import Session
8
+ from types_boto3_workspaces_web import (
9
+ Client,
10
+ ListDataProtectionSettingsPaginator,
11
+ ListSessionsPaginator,
12
+ WorkSpacesWebClient,
13
+ )
14
+
15
+ session = Session()
16
+ client: WorkSpacesWebClient = session.client("workspaces-web")
17
+
18
+ list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
19
+ list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
20
+ ```
21
+
22
+ Copyright 2025 Vlad Emelianov
23
+ """
24
+
25
+ from .client import WorkSpacesWebClient
26
+ from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
27
+
28
+ Client = WorkSpacesWebClient
29
+
30
+ __all__ = (
31
+ "Client",
32
+ "ListDataProtectionSettingsPaginator",
33
+ "ListSessionsPaginator",
34
+ "WorkSpacesWebClient",
35
+ )
@@ -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 boto3 WorkSpacesWeb 1.36.0\n"
16
+ "Version: 1.36.0\n"
17
+ "Builder version: 8.8.0\n"
18
+ "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#workspacesweb\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("1.36.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()