mypy-boto3-workspaces-web 1.35.93__py3-none-any.whl → 1.36.25__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 +4 -2
- mypy_boto3_workspaces_web/__init__.pyi +4 -2
- mypy_boto3_workspaces_web/__main__.py +4 -4
- mypy_boto3_workspaces_web/client.py +138 -146
- mypy_boto3_workspaces_web/client.pyi +138 -146
- mypy_boto3_workspaces_web/literals.py +19 -4
- mypy_boto3_workspaces_web/literals.pyi +19 -4
- mypy_boto3_workspaces_web/paginator.py +2 -2
- mypy_boto3_workspaces_web/paginator.pyi +2 -2
- mypy_boto3_workspaces_web/type_defs.py +213 -177
- mypy_boto3_workspaces_web/type_defs.pyi +208 -176
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.35.93.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/METADATA +27 -11
- mypy_boto3_workspaces_web-1.36.25.dist-info/RECORD +18 -0
- {mypy_boto3_workspaces_web-1.35.93.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.35.93.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.35.93.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.35.93.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/top_level.txt +0 -0
|
@@ -3,6 +3,8 @@ Type annotations for workspaces-web service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/literals/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: AuthenticationTypeType = "IAM_Identity_Center"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -30,6 +30,7 @@ __all__ = (
|
|
|
30
30
|
"InstanceTypeType",
|
|
31
31
|
"ListDataProtectionSettingsPaginatorName",
|
|
32
32
|
"ListSessionsPaginatorName",
|
|
33
|
+
"MaxDisplayResolutionType",
|
|
33
34
|
"PaginatorName",
|
|
34
35
|
"PortalStatusType",
|
|
35
36
|
"RedactionPlaceHolderTypeType",
|
|
@@ -39,6 +40,9 @@ __all__ = (
|
|
|
39
40
|
"ServiceName",
|
|
40
41
|
"SessionSortByType",
|
|
41
42
|
"SessionStatusType",
|
|
43
|
+
"ToolbarItemType",
|
|
44
|
+
"ToolbarTypeType",
|
|
45
|
+
"VisualModeType",
|
|
42
46
|
"WorkSpacesWebServiceName",
|
|
43
47
|
)
|
|
44
48
|
|
|
@@ -52,11 +56,24 @@ IdentityProviderTypeType = Literal[
|
|
|
52
56
|
InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
|
|
53
57
|
ListDataProtectionSettingsPaginatorName = Literal["list_data_protection_settings"]
|
|
54
58
|
ListSessionsPaginatorName = Literal["list_sessions"]
|
|
59
|
+
MaxDisplayResolutionType = Literal[
|
|
60
|
+
"size1024X768",
|
|
61
|
+
"size1280X720",
|
|
62
|
+
"size1920X1080",
|
|
63
|
+
"size2560X1440",
|
|
64
|
+
"size3440X1440",
|
|
65
|
+
"size3840X2160",
|
|
66
|
+
"size4096X2160",
|
|
67
|
+
"size800X600",
|
|
68
|
+
]
|
|
55
69
|
PortalStatusType = Literal["Active", "Incomplete", "Pending"]
|
|
56
70
|
RedactionPlaceHolderTypeType = Literal["CustomText"]
|
|
57
71
|
RendererTypeType = Literal["AppStream"]
|
|
58
72
|
SessionSortByType = Literal["StartTimeAscending", "StartTimeDescending"]
|
|
59
73
|
SessionStatusType = Literal["Active", "Terminated"]
|
|
74
|
+
ToolbarItemType = Literal["DualMonitor", "FullScreen", "Microphone", "Webcam", "Windows"]
|
|
75
|
+
ToolbarTypeType = Literal["Docked", "Floating"]
|
|
76
|
+
VisualModeType = Literal["Dark", "Light"]
|
|
60
77
|
WorkSpacesWebServiceName = Literal["workspaces-web"]
|
|
61
78
|
ServiceName = Literal[
|
|
62
79
|
"accessanalyzer",
|
|
@@ -240,8 +257,6 @@ ServiceName = Literal[
|
|
|
240
257
|
"iot",
|
|
241
258
|
"iot-data",
|
|
242
259
|
"iot-jobs-data",
|
|
243
|
-
"iot1click-devices",
|
|
244
|
-
"iot1click-projects",
|
|
245
260
|
"iotanalytics",
|
|
246
261
|
"iotdeviceadvisor",
|
|
247
262
|
"iotevents",
|
|
@@ -3,6 +3,8 @@ Type annotations for workspaces-web service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/literals/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: AuthenticationTypeType = "IAM_Identity_Center"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -29,6 +29,7 @@ __all__ = (
|
|
|
29
29
|
"InstanceTypeType",
|
|
30
30
|
"ListDataProtectionSettingsPaginatorName",
|
|
31
31
|
"ListSessionsPaginatorName",
|
|
32
|
+
"MaxDisplayResolutionType",
|
|
32
33
|
"PaginatorName",
|
|
33
34
|
"PortalStatusType",
|
|
34
35
|
"RedactionPlaceHolderTypeType",
|
|
@@ -38,6 +39,9 @@ __all__ = (
|
|
|
38
39
|
"ServiceName",
|
|
39
40
|
"SessionSortByType",
|
|
40
41
|
"SessionStatusType",
|
|
42
|
+
"ToolbarItemType",
|
|
43
|
+
"ToolbarTypeType",
|
|
44
|
+
"VisualModeType",
|
|
41
45
|
"WorkSpacesWebServiceName",
|
|
42
46
|
)
|
|
43
47
|
|
|
@@ -50,11 +54,24 @@ IdentityProviderTypeType = Literal[
|
|
|
50
54
|
InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
|
|
51
55
|
ListDataProtectionSettingsPaginatorName = Literal["list_data_protection_settings"]
|
|
52
56
|
ListSessionsPaginatorName = Literal["list_sessions"]
|
|
57
|
+
MaxDisplayResolutionType = Literal[
|
|
58
|
+
"size1024X768",
|
|
59
|
+
"size1280X720",
|
|
60
|
+
"size1920X1080",
|
|
61
|
+
"size2560X1440",
|
|
62
|
+
"size3440X1440",
|
|
63
|
+
"size3840X2160",
|
|
64
|
+
"size4096X2160",
|
|
65
|
+
"size800X600",
|
|
66
|
+
]
|
|
53
67
|
PortalStatusType = Literal["Active", "Incomplete", "Pending"]
|
|
54
68
|
RedactionPlaceHolderTypeType = Literal["CustomText"]
|
|
55
69
|
RendererTypeType = Literal["AppStream"]
|
|
56
70
|
SessionSortByType = Literal["StartTimeAscending", "StartTimeDescending"]
|
|
57
71
|
SessionStatusType = Literal["Active", "Terminated"]
|
|
72
|
+
ToolbarItemType = Literal["DualMonitor", "FullScreen", "Microphone", "Webcam", "Windows"]
|
|
73
|
+
ToolbarTypeType = Literal["Docked", "Floating"]
|
|
74
|
+
VisualModeType = Literal["Dark", "Light"]
|
|
58
75
|
WorkSpacesWebServiceName = Literal["workspaces-web"]
|
|
59
76
|
ServiceName = Literal[
|
|
60
77
|
"accessanalyzer",
|
|
@@ -238,8 +255,6 @@ ServiceName = Literal[
|
|
|
238
255
|
"iot",
|
|
239
256
|
"iot-data",
|
|
240
257
|
"iot-jobs-data",
|
|
241
|
-
"iot1click-devices",
|
|
242
|
-
"iot1click-projects",
|
|
243
258
|
"iotanalytics",
|
|
244
259
|
"iotdeviceadvisor",
|
|
245
260
|
"iotevents",
|
|
@@ -3,6 +3,8 @@ Type annotations for workspaces-web service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
|
|
21
23
|
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -3,6 +3,8 @@ Type annotations for workspaces-web service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
|
|
21
23
|
list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|