mypy-boto3-workspaces-web 1.39.0__py3-none-any.whl → 1.40.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.
- mypy_boto3_workspaces_web/__init__.py +8 -1
- mypy_boto3_workspaces_web/__init__.pyi +8 -1
- mypy_boto3_workspaces_web/__main__.py +3 -3
- mypy_boto3_workspaces_web/client.py +98 -1
- mypy_boto3_workspaces_web/client.pyi +98 -1
- mypy_boto3_workspaces_web/literals.py +30 -1
- mypy_boto3_workspaces_web/literals.pyi +30 -1
- mypy_boto3_workspaces_web/paginator.py +30 -1
- mypy_boto3_workspaces_web/paginator.pyi +27 -1
- mypy_boto3_workspaces_web/type_defs.py +289 -145
- mypy_boto3_workspaces_web/type_defs.pyi +270 -145
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.0.dist-info}/METADATA +9 -5
- mypy_boto3_workspaces_web-1.40.0.dist-info/RECORD +18 -0
- mypy_boto3_workspaces_web-1.39.0.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.39.0.dist-info → mypy_boto3_workspaces_web-1.40.0.dist-info}/top_level.txt +0 -0
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
from mypy_boto3_workspaces_web.client import WorkSpacesWebClient
|
|
14
14
|
from mypy_boto3_workspaces_web.paginator import (
|
|
15
15
|
ListDataProtectionSettingsPaginator,
|
|
16
|
+
ListSessionLoggersPaginator,
|
|
16
17
|
ListSessionsPaginator,
|
|
17
18
|
)
|
|
18
19
|
|
|
@@ -20,6 +21,7 @@ Usage::
|
|
|
20
21
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
21
22
|
|
|
22
23
|
list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
|
|
24
|
+
list_session_loggers_paginator: ListSessionLoggersPaginator = client.get_paginator("list_session_loggers")
|
|
23
25
|
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
24
26
|
```
|
|
25
27
|
"""
|
|
@@ -34,6 +36,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
34
36
|
from .type_defs import (
|
|
35
37
|
ListDataProtectionSettingsRequestPaginateTypeDef,
|
|
36
38
|
ListDataProtectionSettingsResponseTypeDef,
|
|
39
|
+
ListSessionLoggersRequestPaginateTypeDef,
|
|
40
|
+
ListSessionLoggersResponseTypeDef,
|
|
37
41
|
ListSessionsRequestPaginateTypeDef,
|
|
38
42
|
ListSessionsResponseTypeDef,
|
|
39
43
|
)
|
|
@@ -44,7 +48,11 @@ else:
|
|
|
44
48
|
from typing_extensions import Unpack
|
|
45
49
|
|
|
46
50
|
|
|
47
|
-
__all__ = (
|
|
51
|
+
__all__ = (
|
|
52
|
+
"ListDataProtectionSettingsPaginator",
|
|
53
|
+
"ListSessionLoggersPaginator",
|
|
54
|
+
"ListSessionsPaginator",
|
|
55
|
+
)
|
|
48
56
|
|
|
49
57
|
|
|
50
58
|
if TYPE_CHECKING:
|
|
@@ -68,6 +76,27 @@ class ListDataProtectionSettingsPaginator(_ListDataProtectionSettingsPaginatorBa
|
|
|
68
76
|
"""
|
|
69
77
|
|
|
70
78
|
|
|
79
|
+
if TYPE_CHECKING:
|
|
80
|
+
_ListSessionLoggersPaginatorBase = Paginator[ListSessionLoggersResponseTypeDef]
|
|
81
|
+
else:
|
|
82
|
+
_ListSessionLoggersPaginatorBase = Paginator # type: ignore[assignment]
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class ListSessionLoggersPaginator(_ListSessionLoggersPaginatorBase):
|
|
86
|
+
"""
|
|
87
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers)
|
|
88
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
89
|
+
"""
|
|
90
|
+
|
|
91
|
+
def paginate( # type: ignore[override]
|
|
92
|
+
self, **kwargs: Unpack[ListSessionLoggersRequestPaginateTypeDef]
|
|
93
|
+
) -> PageIterator[ListSessionLoggersResponseTypeDef]:
|
|
94
|
+
"""
|
|
95
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers.paginate)
|
|
96
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
97
|
+
"""
|
|
98
|
+
|
|
99
|
+
|
|
71
100
|
if TYPE_CHECKING:
|
|
72
101
|
_ListSessionsPaginatorBase = Paginator[ListSessionsResponseTypeDef]
|
|
73
102
|
else:
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
from mypy_boto3_workspaces_web.client import WorkSpacesWebClient
|
|
14
14
|
from mypy_boto3_workspaces_web.paginator import (
|
|
15
15
|
ListDataProtectionSettingsPaginator,
|
|
16
|
+
ListSessionLoggersPaginator,
|
|
16
17
|
ListSessionsPaginator,
|
|
17
18
|
)
|
|
18
19
|
|
|
@@ -20,6 +21,7 @@ Usage::
|
|
|
20
21
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
21
22
|
|
|
22
23
|
list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
|
|
24
|
+
list_session_loggers_paginator: ListSessionLoggersPaginator = client.get_paginator("list_session_loggers")
|
|
23
25
|
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
24
26
|
```
|
|
25
27
|
"""
|
|
@@ -34,6 +36,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
34
36
|
from .type_defs import (
|
|
35
37
|
ListDataProtectionSettingsRequestPaginateTypeDef,
|
|
36
38
|
ListDataProtectionSettingsResponseTypeDef,
|
|
39
|
+
ListSessionLoggersRequestPaginateTypeDef,
|
|
40
|
+
ListSessionLoggersResponseTypeDef,
|
|
37
41
|
ListSessionsRequestPaginateTypeDef,
|
|
38
42
|
ListSessionsResponseTypeDef,
|
|
39
43
|
)
|
|
@@ -43,7 +47,11 @@ if sys.version_info >= (3, 12):
|
|
|
43
47
|
else:
|
|
44
48
|
from typing_extensions import Unpack
|
|
45
49
|
|
|
46
|
-
__all__ = (
|
|
50
|
+
__all__ = (
|
|
51
|
+
"ListDataProtectionSettingsPaginator",
|
|
52
|
+
"ListSessionLoggersPaginator",
|
|
53
|
+
"ListSessionsPaginator",
|
|
54
|
+
)
|
|
47
55
|
|
|
48
56
|
if TYPE_CHECKING:
|
|
49
57
|
_ListDataProtectionSettingsPaginatorBase = Paginator[ListDataProtectionSettingsResponseTypeDef]
|
|
@@ -63,6 +71,24 @@ class ListDataProtectionSettingsPaginator(_ListDataProtectionSettingsPaginatorBa
|
|
|
63
71
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listdataprotectionsettingspaginator)
|
|
64
72
|
"""
|
|
65
73
|
|
|
74
|
+
if TYPE_CHECKING:
|
|
75
|
+
_ListSessionLoggersPaginatorBase = Paginator[ListSessionLoggersResponseTypeDef]
|
|
76
|
+
else:
|
|
77
|
+
_ListSessionLoggersPaginatorBase = Paginator # type: ignore[assignment]
|
|
78
|
+
|
|
79
|
+
class ListSessionLoggersPaginator(_ListSessionLoggersPaginatorBase):
|
|
80
|
+
"""
|
|
81
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers)
|
|
82
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
83
|
+
"""
|
|
84
|
+
def paginate( # type: ignore[override]
|
|
85
|
+
self, **kwargs: Unpack[ListSessionLoggersRequestPaginateTypeDef]
|
|
86
|
+
) -> PageIterator[ListSessionLoggersResponseTypeDef]:
|
|
87
|
+
"""
|
|
88
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessionLoggers.html#WorkSpacesWeb.Paginator.ListSessionLoggers.paginate)
|
|
89
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/#listsessionloggerspaginator)
|
|
90
|
+
"""
|
|
91
|
+
|
|
66
92
|
if TYPE_CHECKING:
|
|
67
93
|
_ListSessionsPaginatorBase = Paginator[ListSessionsResponseTypeDef]
|
|
68
94
|
else:
|