mypy-boto3-workspaces-web 1.35.0__py3-none-any.whl → 1.35.23__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 +6 -1
- mypy_boto3_workspaces_web/__init__.pyi +5 -1
- mypy_boto3_workspaces_web/__main__.py +4 -4
- mypy_boto3_workspaces_web/client.py +204 -170
- mypy_boto3_workspaces_web/client.pyi +203 -170
- mypy_boto3_workspaces_web/literals.py +12 -1
- mypy_boto3_workspaces_web/literals.pyi +10 -1
- mypy_boto3_workspaces_web/paginator.py +61 -0
- mypy_boto3_workspaces_web/paginator.pyi +56 -0
- mypy_boto3_workspaces_web/type_defs.py +97 -14
- mypy_boto3_workspaces_web/type_defs.pyi +96 -14
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.23.dist-info}/METADATA +28 -8
- mypy_boto3_workspaces_web-1.35.23.dist-info/RECORD +18 -0
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.23.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.23.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.35.0.dist-info → mypy_boto3_workspaces_web-1.35.23.dist-info}/top_level.txt +0 -0
|
@@ -7,16 +7,21 @@ Usage::
|
|
|
7
7
|
from boto3.session import Session
|
|
8
8
|
from mypy_boto3_workspaces_web import (
|
|
9
9
|
Client,
|
|
10
|
+
ListSessionsPaginator,
|
|
10
11
|
WorkSpacesWebClient,
|
|
11
12
|
)
|
|
12
13
|
|
|
13
14
|
session = Session()
|
|
14
15
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
16
|
+
|
|
17
|
+
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
15
18
|
```
|
|
16
19
|
"""
|
|
17
20
|
|
|
18
21
|
from .client import WorkSpacesWebClient
|
|
22
|
+
from .paginator import ListSessionsPaginator
|
|
19
23
|
|
|
20
24
|
Client = WorkSpacesWebClient
|
|
21
25
|
|
|
22
|
-
|
|
26
|
+
|
|
27
|
+
__all__ = ("Client", "ListSessionsPaginator", "WorkSpacesWebClient")
|
|
@@ -7,16 +7,20 @@ Usage::
|
|
|
7
7
|
from boto3.session import Session
|
|
8
8
|
from mypy_boto3_workspaces_web import (
|
|
9
9
|
Client,
|
|
10
|
+
ListSessionsPaginator,
|
|
10
11
|
WorkSpacesWebClient,
|
|
11
12
|
)
|
|
12
13
|
|
|
13
14
|
session = Session()
|
|
14
15
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
16
|
+
|
|
17
|
+
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
15
18
|
```
|
|
16
19
|
"""
|
|
17
20
|
|
|
18
21
|
from .client import WorkSpacesWebClient
|
|
22
|
+
from .paginator import ListSessionsPaginator
|
|
19
23
|
|
|
20
24
|
Client = WorkSpacesWebClient
|
|
21
25
|
|
|
22
|
-
__all__ = ("Client", "WorkSpacesWebClient")
|
|
26
|
+
__all__ = ("Client", "ListSessionsPaginator", "WorkSpacesWebClient")
|
|
@@ -10,9 +10,9 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.WorkSpacesWeb 1.35.
|
|
14
|
-
"Version: 1.35.
|
|
15
|
-
"Builder version:
|
|
13
|
+
"Type annotations for boto3.WorkSpacesWeb 1.35.23\n"
|
|
14
|
+
"Version: 1.35.23\n"
|
|
15
|
+
"Builder version: 8.1.1\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb\n"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.35.
|
|
27
|
+
print("1.35.23")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|