mypy-boto3-workspaces-web 1.35.0__py3-none-any.whl → 1.35.66__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.
- mypy_boto3_workspaces_web/__init__.py +15 -1
- mypy_boto3_workspaces_web/__init__.pyi +14 -1
- mypy_boto3_workspaces_web/__main__.py +7 -5
- mypy_boto3_workspaces_web/client.py +362 -234
- mypy_boto3_workspaces_web/client.pyi +361 -234
- mypy_boto3_workspaces_web/literals.py +29 -6
- mypy_boto3_workspaces_web/literals.pyi +27 -6
- mypy_boto3_workspaces_web/paginator.py +88 -0
- mypy_boto3_workspaces_web/paginator.pyi +81 -0
- mypy_boto3_workspaces_web/type_defs.py +1058 -1084
- mypy_boto3_workspaces_web/type_defs.pyi +901 -1084
- mypy_boto3_workspaces_web/version.py +3 -1
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.66.dist-info}/METADATA +61 -19
- mypy_boto3_workspaces_web-1.35.66.dist-info/RECORD +18 -0
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.66.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.35.0.dist-info/RECORD +0 -16
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.66.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.66.dist-info}/top_level.txt +0 -0
|
@@ -7,16 +7,30 @@ Usage::
|
|
|
7
7
|
from boto3.session import Session
|
|
8
8
|
from mypy_boto3_workspaces_web import (
|
|
9
9
|
Client,
|
|
10
|
+
ListDataProtectionSettingsPaginator,
|
|
11
|
+
ListSessionsPaginator,
|
|
10
12
|
WorkSpacesWebClient,
|
|
11
13
|
)
|
|
12
14
|
|
|
13
15
|
session = Session()
|
|
14
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")
|
|
15
20
|
```
|
|
21
|
+
|
|
22
|
+
Copyright 2024 Vlad Emelianov
|
|
16
23
|
"""
|
|
17
24
|
|
|
18
25
|
from .client import WorkSpacesWebClient
|
|
26
|
+
from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
|
|
19
27
|
|
|
20
28
|
Client = WorkSpacesWebClient
|
|
21
29
|
|
|
22
|
-
|
|
30
|
+
|
|
31
|
+
__all__ = (
|
|
32
|
+
"Client",
|
|
33
|
+
"ListDataProtectionSettingsPaginator",
|
|
34
|
+
"ListSessionsPaginator",
|
|
35
|
+
"WorkSpacesWebClient",
|
|
36
|
+
)
|
|
@@ -7,16 +7,29 @@ Usage::
|
|
|
7
7
|
from boto3.session import Session
|
|
8
8
|
from mypy_boto3_workspaces_web import (
|
|
9
9
|
Client,
|
|
10
|
+
ListDataProtectionSettingsPaginator,
|
|
11
|
+
ListSessionsPaginator,
|
|
10
12
|
WorkSpacesWebClient,
|
|
11
13
|
)
|
|
12
14
|
|
|
13
15
|
session = Session()
|
|
14
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")
|
|
15
20
|
```
|
|
21
|
+
|
|
22
|
+
Copyright 2024 Vlad Emelianov
|
|
16
23
|
"""
|
|
17
24
|
|
|
18
25
|
from .client import WorkSpacesWebClient
|
|
26
|
+
from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
|
|
19
27
|
|
|
20
28
|
Client = WorkSpacesWebClient
|
|
21
29
|
|
|
22
|
-
__all__ = (
|
|
30
|
+
__all__ = (
|
|
31
|
+
"Client",
|
|
32
|
+
"ListDataProtectionSettingsPaginator",
|
|
33
|
+
"ListSessionsPaginator",
|
|
34
|
+
"WorkSpacesWebClient",
|
|
35
|
+
)
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2024 Vlad Emelianov
|
|
3
5
|
"""
|
|
4
6
|
|
|
5
7
|
import sys
|
|
@@ -10,11 +12,11 @@ def print_info() -> None:
|
|
|
10
12
|
Print package info to stdout.
|
|
11
13
|
"""
|
|
12
14
|
print(
|
|
13
|
-
"Type annotations for boto3
|
|
14
|
-
"Version: 1.35.
|
|
15
|
-
"Builder version:
|
|
15
|
+
"Type annotations for boto3 WorkSpacesWeb 1.35.66\n"
|
|
16
|
+
"Version: 1.35.66\n"
|
|
17
|
+
"Builder version: 8.3.1\n"
|
|
16
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\n"
|
|
17
|
-
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#workspacesweb\n"
|
|
18
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
21
|
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
20
22
|
)
|
|
@@ -24,7 +26,7 @@ def print_version() -> None:
|
|
|
24
26
|
"""
|
|
25
27
|
Print package version to stdout.
|
|
26
28
|
"""
|
|
27
|
-
print("1.35.
|
|
29
|
+
print("1.35.66")
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
def main() -> None:
|