mypy-boto3-workspaces-web 1.35.23__py3-none-any.whl → 1.35.93__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 +11 -2
- mypy_boto3_workspaces_web/__init__.pyi +11 -2
- mypy_boto3_workspaces_web/__main__.py +11 -8
- mypy_boto3_workspaces_web/client.py +199 -109
- mypy_boto3_workspaces_web/client.pyi +199 -108
- mypy_boto3_workspaces_web/literals.py +32 -8
- mypy_boto3_workspaces_web/literals.pyi +32 -8
- mypy_boto3_workspaces_web/paginator.py +42 -14
- mypy_boto3_workspaces_web/paginator.pyi +40 -14
- mypy_boto3_workspaces_web/type_defs.py +1068 -1169
- mypy_boto3_workspaces_web/type_defs.pyi +912 -1169
- mypy_boto3_workspaces_web/version.py +3 -1
- {mypy_boto3_workspaces_web-1.35.23.dist-info → mypy_boto3_workspaces_web-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_workspaces_web-1.35.23.dist-info → mypy_boto3_workspaces_web-1.35.93.dist-info}/METADATA +84 -22
- mypy_boto3_workspaces_web-1.35.93.dist-info/RECORD +18 -0
- {mypy_boto3_workspaces_web-1.35.23.dist-info → mypy_boto3_workspaces_web-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.35.23.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.35.23.dist-info → mypy_boto3_workspaces_web-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for workspaces-web service
|
|
2
|
+
Type annotations for workspaces-web service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -12,17 +12,25 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
17
21
|
import sys
|
|
18
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
19
23
|
|
|
20
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
21
27
|
|
|
22
|
-
from .paginator import ListSessionsPaginator
|
|
28
|
+
from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
|
|
23
29
|
from .type_defs import (
|
|
24
30
|
AssociateBrowserSettingsRequestRequestTypeDef,
|
|
25
31
|
AssociateBrowserSettingsResponseTypeDef,
|
|
32
|
+
AssociateDataProtectionSettingsRequestRequestTypeDef,
|
|
33
|
+
AssociateDataProtectionSettingsResponseTypeDef,
|
|
26
34
|
AssociateIpAccessSettingsRequestRequestTypeDef,
|
|
27
35
|
AssociateIpAccessSettingsResponseTypeDef,
|
|
28
36
|
AssociateNetworkSettingsRequestRequestTypeDef,
|
|
@@ -35,6 +43,8 @@ from .type_defs import (
|
|
|
35
43
|
AssociateUserSettingsResponseTypeDef,
|
|
36
44
|
CreateBrowserSettingsRequestRequestTypeDef,
|
|
37
45
|
CreateBrowserSettingsResponseTypeDef,
|
|
46
|
+
CreateDataProtectionSettingsRequestRequestTypeDef,
|
|
47
|
+
CreateDataProtectionSettingsResponseTypeDef,
|
|
38
48
|
CreateIdentityProviderRequestRequestTypeDef,
|
|
39
49
|
CreateIdentityProviderResponseTypeDef,
|
|
40
50
|
CreateIpAccessSettingsRequestRequestTypeDef,
|
|
@@ -50,6 +60,7 @@ from .type_defs import (
|
|
|
50
60
|
CreateUserSettingsRequestRequestTypeDef,
|
|
51
61
|
CreateUserSettingsResponseTypeDef,
|
|
52
62
|
DeleteBrowserSettingsRequestRequestTypeDef,
|
|
63
|
+
DeleteDataProtectionSettingsRequestRequestTypeDef,
|
|
53
64
|
DeleteIdentityProviderRequestRequestTypeDef,
|
|
54
65
|
DeleteIpAccessSettingsRequestRequestTypeDef,
|
|
55
66
|
DeleteNetworkSettingsRequestRequestTypeDef,
|
|
@@ -58,6 +69,7 @@ from .type_defs import (
|
|
|
58
69
|
DeleteUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
59
70
|
DeleteUserSettingsRequestRequestTypeDef,
|
|
60
71
|
DisassociateBrowserSettingsRequestRequestTypeDef,
|
|
72
|
+
DisassociateDataProtectionSettingsRequestRequestTypeDef,
|
|
61
73
|
DisassociateIpAccessSettingsRequestRequestTypeDef,
|
|
62
74
|
DisassociateNetworkSettingsRequestRequestTypeDef,
|
|
63
75
|
DisassociateTrustStoreRequestRequestTypeDef,
|
|
@@ -66,6 +78,8 @@ from .type_defs import (
|
|
|
66
78
|
ExpireSessionRequestRequestTypeDef,
|
|
67
79
|
GetBrowserSettingsRequestRequestTypeDef,
|
|
68
80
|
GetBrowserSettingsResponseTypeDef,
|
|
81
|
+
GetDataProtectionSettingsRequestRequestTypeDef,
|
|
82
|
+
GetDataProtectionSettingsResponseTypeDef,
|
|
69
83
|
GetIdentityProviderRequestRequestTypeDef,
|
|
70
84
|
GetIdentityProviderResponseTypeDef,
|
|
71
85
|
GetIpAccessSettingsRequestRequestTypeDef,
|
|
@@ -88,6 +102,8 @@ from .type_defs import (
|
|
|
88
102
|
GetUserSettingsResponseTypeDef,
|
|
89
103
|
ListBrowserSettingsRequestRequestTypeDef,
|
|
90
104
|
ListBrowserSettingsResponseTypeDef,
|
|
105
|
+
ListDataProtectionSettingsRequestRequestTypeDef,
|
|
106
|
+
ListDataProtectionSettingsResponseTypeDef,
|
|
91
107
|
ListIdentityProvidersRequestRequestTypeDef,
|
|
92
108
|
ListIdentityProvidersResponseTypeDef,
|
|
93
109
|
ListIpAccessSettingsRequestRequestTypeDef,
|
|
@@ -112,6 +128,8 @@ from .type_defs import (
|
|
|
112
128
|
UntagResourceRequestRequestTypeDef,
|
|
113
129
|
UpdateBrowserSettingsRequestRequestTypeDef,
|
|
114
130
|
UpdateBrowserSettingsResponseTypeDef,
|
|
131
|
+
UpdateDataProtectionSettingsRequestRequestTypeDef,
|
|
132
|
+
UpdateDataProtectionSettingsResponseTypeDef,
|
|
115
133
|
UpdateIdentityProviderRequestRequestTypeDef,
|
|
116
134
|
UpdateIdentityProviderResponseTypeDef,
|
|
117
135
|
UpdateIpAccessSettingsRequestRequestTypeDef,
|
|
@@ -128,6 +146,12 @@ from .type_defs import (
|
|
|
128
146
|
UpdateUserSettingsResponseTypeDef,
|
|
129
147
|
)
|
|
130
148
|
|
|
149
|
+
if sys.version_info >= (3, 9):
|
|
150
|
+
from builtins import dict as Dict
|
|
151
|
+
from builtins import type as Type
|
|
152
|
+
from collections.abc import Mapping
|
|
153
|
+
else:
|
|
154
|
+
from typing import Dict, Mapping, Type
|
|
131
155
|
if sys.version_info >= (3, 12):
|
|
132
156
|
from typing import Literal, Unpack
|
|
133
157
|
else:
|
|
@@ -137,15 +161,7 @@ else:
|
|
|
137
161
|
__all__ = ("WorkSpacesWebClient",)
|
|
138
162
|
|
|
139
163
|
|
|
140
|
-
class
|
|
141
|
-
MSG_TEMPLATE: str
|
|
142
|
-
|
|
143
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
144
|
-
self.response: Dict[str, Any]
|
|
145
|
-
self.operation_name: str
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
class Exceptions:
|
|
164
|
+
class Exceptions(BaseClientExceptions):
|
|
149
165
|
AccessDeniedException: Type[BotocoreClientError]
|
|
150
166
|
ClientError: Type[BotocoreClientError]
|
|
151
167
|
ConflictException: Type[BotocoreClientError]
|
|
@@ -170,27 +186,55 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
170
186
|
"""
|
|
171
187
|
WorkSpacesWebClient exceptions.
|
|
172
188
|
|
|
173
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client)
|
|
174
190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#exceptions)
|
|
175
191
|
"""
|
|
176
192
|
|
|
193
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
194
|
+
"""
|
|
195
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/can_paginate.html)
|
|
196
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#can_paginate)
|
|
197
|
+
"""
|
|
198
|
+
|
|
199
|
+
def generate_presigned_url(
|
|
200
|
+
self,
|
|
201
|
+
ClientMethod: str,
|
|
202
|
+
Params: Mapping[str, Any] = ...,
|
|
203
|
+
ExpiresIn: int = 3600,
|
|
204
|
+
HttpMethod: str = ...,
|
|
205
|
+
) -> str:
|
|
206
|
+
"""
|
|
207
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/generate_presigned_url.html)
|
|
208
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#generate_presigned_url)
|
|
209
|
+
"""
|
|
210
|
+
|
|
177
211
|
def associate_browser_settings(
|
|
178
212
|
self, **kwargs: Unpack[AssociateBrowserSettingsRequestRequestTypeDef]
|
|
179
213
|
) -> AssociateBrowserSettingsResponseTypeDef:
|
|
180
214
|
"""
|
|
181
215
|
Associates a browser settings resource with a web portal.
|
|
182
216
|
|
|
183
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
217
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_browser_settings.html)
|
|
184
218
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_browser_settings)
|
|
185
219
|
"""
|
|
186
220
|
|
|
221
|
+
def associate_data_protection_settings(
|
|
222
|
+
self, **kwargs: Unpack[AssociateDataProtectionSettingsRequestRequestTypeDef]
|
|
223
|
+
) -> AssociateDataProtectionSettingsResponseTypeDef:
|
|
224
|
+
"""
|
|
225
|
+
Associates a data protection settings resource with a web portal.
|
|
226
|
+
|
|
227
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_data_protection_settings.html)
|
|
228
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_data_protection_settings)
|
|
229
|
+
"""
|
|
230
|
+
|
|
187
231
|
def associate_ip_access_settings(
|
|
188
232
|
self, **kwargs: Unpack[AssociateIpAccessSettingsRequestRequestTypeDef]
|
|
189
233
|
) -> AssociateIpAccessSettingsResponseTypeDef:
|
|
190
234
|
"""
|
|
191
235
|
Associates an IP access settings resource with a web portal.
|
|
192
236
|
|
|
193
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_ip_access_settings.html)
|
|
194
238
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_ip_access_settings)
|
|
195
239
|
"""
|
|
196
240
|
|
|
@@ -200,7 +244,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
200
244
|
"""
|
|
201
245
|
Associates a network settings resource with a web portal.
|
|
202
246
|
|
|
203
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
247
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_network_settings.html)
|
|
204
248
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_network_settings)
|
|
205
249
|
"""
|
|
206
250
|
|
|
@@ -210,7 +254,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
210
254
|
"""
|
|
211
255
|
Associates a trust store with a web portal.
|
|
212
256
|
|
|
213
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
257
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_trust_store.html)
|
|
214
258
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_trust_store)
|
|
215
259
|
"""
|
|
216
260
|
|
|
@@ -220,7 +264,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
220
264
|
"""
|
|
221
265
|
Associates a user access logging settings resource with a web portal.
|
|
222
266
|
|
|
223
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
267
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_user_access_logging_settings.html)
|
|
224
268
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_user_access_logging_settings)
|
|
225
269
|
"""
|
|
226
270
|
|
|
@@ -230,43 +274,38 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
230
274
|
"""
|
|
231
275
|
Associates a user settings resource with a web portal.
|
|
232
276
|
|
|
233
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_user_settings.html)
|
|
234
278
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_user_settings)
|
|
235
279
|
"""
|
|
236
280
|
|
|
237
|
-
def can_paginate(self, operation_name: str) -> bool:
|
|
238
|
-
"""
|
|
239
|
-
Check if an operation can be paginated.
|
|
240
|
-
|
|
241
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.can_paginate)
|
|
242
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#can_paginate)
|
|
243
|
-
"""
|
|
244
|
-
|
|
245
|
-
def close(self) -> None:
|
|
246
|
-
"""
|
|
247
|
-
Closes underlying endpoint connections.
|
|
248
|
-
|
|
249
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.close)
|
|
250
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#close)
|
|
251
|
-
"""
|
|
252
|
-
|
|
253
281
|
def create_browser_settings(
|
|
254
282
|
self, **kwargs: Unpack[CreateBrowserSettingsRequestRequestTypeDef]
|
|
255
283
|
) -> CreateBrowserSettingsResponseTypeDef:
|
|
256
284
|
"""
|
|
257
285
|
Creates a browser settings resource that can be associated with a web portal.
|
|
258
286
|
|
|
259
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
287
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_browser_settings.html)
|
|
260
288
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_browser_settings)
|
|
261
289
|
"""
|
|
262
290
|
|
|
291
|
+
def create_data_protection_settings(
|
|
292
|
+
self, **kwargs: Unpack[CreateDataProtectionSettingsRequestRequestTypeDef]
|
|
293
|
+
) -> CreateDataProtectionSettingsResponseTypeDef:
|
|
294
|
+
"""
|
|
295
|
+
Creates a data protection settings resource that can be associated with a web
|
|
296
|
+
portal.
|
|
297
|
+
|
|
298
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_data_protection_settings.html)
|
|
299
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_data_protection_settings)
|
|
300
|
+
"""
|
|
301
|
+
|
|
263
302
|
def create_identity_provider(
|
|
264
303
|
self, **kwargs: Unpack[CreateIdentityProviderRequestRequestTypeDef]
|
|
265
304
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
266
305
|
"""
|
|
267
306
|
Creates an identity provider resource that is then associated with a web portal.
|
|
268
307
|
|
|
269
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
308
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_identity_provider.html)
|
|
270
309
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_identity_provider)
|
|
271
310
|
"""
|
|
272
311
|
|
|
@@ -276,7 +315,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
276
315
|
"""
|
|
277
316
|
Creates an IP access settings resource that can be associated with a web portal.
|
|
278
317
|
|
|
279
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
318
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_ip_access_settings.html)
|
|
280
319
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_ip_access_settings)
|
|
281
320
|
"""
|
|
282
321
|
|
|
@@ -286,7 +325,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
286
325
|
"""
|
|
287
326
|
Creates a network settings resource that can be associated with a web portal.
|
|
288
327
|
|
|
289
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
328
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_network_settings.html)
|
|
290
329
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_network_settings)
|
|
291
330
|
"""
|
|
292
331
|
|
|
@@ -296,7 +335,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
296
335
|
"""
|
|
297
336
|
Creates a web portal.
|
|
298
337
|
|
|
299
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
338
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_portal.html)
|
|
300
339
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_portal)
|
|
301
340
|
"""
|
|
302
341
|
|
|
@@ -306,7 +345,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
306
345
|
"""
|
|
307
346
|
Creates a trust store that can be associated with a web portal.
|
|
308
347
|
|
|
309
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
348
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_trust_store.html)
|
|
310
349
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_trust_store)
|
|
311
350
|
"""
|
|
312
351
|
|
|
@@ -315,10 +354,9 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
315
354
|
) -> CreateUserAccessLoggingSettingsResponseTypeDef:
|
|
316
355
|
"""
|
|
317
356
|
Creates a user access logging settings resource that can be associated with a
|
|
318
|
-
web
|
|
319
|
-
portal.
|
|
357
|
+
web portal.
|
|
320
358
|
|
|
321
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
359
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_user_access_logging_settings.html)
|
|
322
360
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_user_access_logging_settings)
|
|
323
361
|
"""
|
|
324
362
|
|
|
@@ -328,7 +366,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
328
366
|
"""
|
|
329
367
|
Creates a user settings resource that can be associated with a web portal.
|
|
330
368
|
|
|
331
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
369
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_user_settings.html)
|
|
332
370
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_user_settings)
|
|
333
371
|
"""
|
|
334
372
|
|
|
@@ -338,17 +376,27 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
338
376
|
"""
|
|
339
377
|
Deletes browser settings.
|
|
340
378
|
|
|
341
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
379
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_browser_settings.html)
|
|
342
380
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_browser_settings)
|
|
343
381
|
"""
|
|
344
382
|
|
|
383
|
+
def delete_data_protection_settings(
|
|
384
|
+
self, **kwargs: Unpack[DeleteDataProtectionSettingsRequestRequestTypeDef]
|
|
385
|
+
) -> Dict[str, Any]:
|
|
386
|
+
"""
|
|
387
|
+
Deletes data protection settings.
|
|
388
|
+
|
|
389
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_data_protection_settings.html)
|
|
390
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_data_protection_settings)
|
|
391
|
+
"""
|
|
392
|
+
|
|
345
393
|
def delete_identity_provider(
|
|
346
394
|
self, **kwargs: Unpack[DeleteIdentityProviderRequestRequestTypeDef]
|
|
347
395
|
) -> Dict[str, Any]:
|
|
348
396
|
"""
|
|
349
397
|
Deletes the identity provider.
|
|
350
398
|
|
|
351
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
399
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_identity_provider.html)
|
|
352
400
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_identity_provider)
|
|
353
401
|
"""
|
|
354
402
|
|
|
@@ -358,7 +406,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
358
406
|
"""
|
|
359
407
|
Deletes IP access settings.
|
|
360
408
|
|
|
361
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
409
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_ip_access_settings.html)
|
|
362
410
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_ip_access_settings)
|
|
363
411
|
"""
|
|
364
412
|
|
|
@@ -368,7 +416,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
368
416
|
"""
|
|
369
417
|
Deletes network settings.
|
|
370
418
|
|
|
371
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
419
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_network_settings.html)
|
|
372
420
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_network_settings)
|
|
373
421
|
"""
|
|
374
422
|
|
|
@@ -376,7 +424,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
376
424
|
"""
|
|
377
425
|
Deletes a web portal.
|
|
378
426
|
|
|
379
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
427
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_portal.html)
|
|
380
428
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_portal)
|
|
381
429
|
"""
|
|
382
430
|
|
|
@@ -386,7 +434,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
386
434
|
"""
|
|
387
435
|
Deletes the trust store.
|
|
388
436
|
|
|
389
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
437
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_trust_store.html)
|
|
390
438
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_trust_store)
|
|
391
439
|
"""
|
|
392
440
|
|
|
@@ -396,7 +444,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
396
444
|
"""
|
|
397
445
|
Deletes user access logging settings.
|
|
398
446
|
|
|
399
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
447
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_user_access_logging_settings.html)
|
|
400
448
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_user_access_logging_settings)
|
|
401
449
|
"""
|
|
402
450
|
|
|
@@ -406,7 +454,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
406
454
|
"""
|
|
407
455
|
Deletes user settings.
|
|
408
456
|
|
|
409
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
457
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_user_settings.html)
|
|
410
458
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_user_settings)
|
|
411
459
|
"""
|
|
412
460
|
|
|
@@ -416,17 +464,27 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
416
464
|
"""
|
|
417
465
|
Disassociates browser settings from a web portal.
|
|
418
466
|
|
|
419
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
467
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_browser_settings.html)
|
|
420
468
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_browser_settings)
|
|
421
469
|
"""
|
|
422
470
|
|
|
471
|
+
def disassociate_data_protection_settings(
|
|
472
|
+
self, **kwargs: Unpack[DisassociateDataProtectionSettingsRequestRequestTypeDef]
|
|
473
|
+
) -> Dict[str, Any]:
|
|
474
|
+
"""
|
|
475
|
+
Disassociates data protection settings from a web portal.
|
|
476
|
+
|
|
477
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_data_protection_settings.html)
|
|
478
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_data_protection_settings)
|
|
479
|
+
"""
|
|
480
|
+
|
|
423
481
|
def disassociate_ip_access_settings(
|
|
424
482
|
self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestRequestTypeDef]
|
|
425
483
|
) -> Dict[str, Any]:
|
|
426
484
|
"""
|
|
427
485
|
Disassociates IP access settings from a web portal.
|
|
428
486
|
|
|
429
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
487
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_ip_access_settings.html)
|
|
430
488
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_ip_access_settings)
|
|
431
489
|
"""
|
|
432
490
|
|
|
@@ -436,7 +494,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
436
494
|
"""
|
|
437
495
|
Disassociates network settings from a web portal.
|
|
438
496
|
|
|
439
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
497
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_network_settings.html)
|
|
440
498
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_network_settings)
|
|
441
499
|
"""
|
|
442
500
|
|
|
@@ -446,7 +504,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
446
504
|
"""
|
|
447
505
|
Disassociates a trust store from a web portal.
|
|
448
506
|
|
|
449
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
507
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_trust_store.html)
|
|
450
508
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_trust_store)
|
|
451
509
|
"""
|
|
452
510
|
|
|
@@ -456,7 +514,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
456
514
|
"""
|
|
457
515
|
Disassociates user access logging settings from a web portal.
|
|
458
516
|
|
|
459
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
517
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_user_access_logging_settings.html)
|
|
460
518
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_user_access_logging_settings)
|
|
461
519
|
"""
|
|
462
520
|
|
|
@@ -466,7 +524,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
466
524
|
"""
|
|
467
525
|
Disassociates user settings from a web portal.
|
|
468
526
|
|
|
469
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
527
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_user_settings.html)
|
|
470
528
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_user_settings)
|
|
471
529
|
"""
|
|
472
530
|
|
|
@@ -476,41 +534,37 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
476
534
|
"""
|
|
477
535
|
Expires an active secure browser session.
|
|
478
536
|
|
|
479
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
537
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/expire_session.html)
|
|
480
538
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#expire_session)
|
|
481
539
|
"""
|
|
482
540
|
|
|
483
|
-
def generate_presigned_url(
|
|
484
|
-
self,
|
|
485
|
-
ClientMethod: str,
|
|
486
|
-
Params: Mapping[str, Any] = ...,
|
|
487
|
-
ExpiresIn: int = 3600,
|
|
488
|
-
HttpMethod: str = ...,
|
|
489
|
-
) -> str:
|
|
490
|
-
"""
|
|
491
|
-
Generate a presigned url given a client, its method, and arguments.
|
|
492
|
-
|
|
493
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.generate_presigned_url)
|
|
494
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#generate_presigned_url)
|
|
495
|
-
"""
|
|
496
|
-
|
|
497
541
|
def get_browser_settings(
|
|
498
542
|
self, **kwargs: Unpack[GetBrowserSettingsRequestRequestTypeDef]
|
|
499
543
|
) -> GetBrowserSettingsResponseTypeDef:
|
|
500
544
|
"""
|
|
501
545
|
Gets browser settings.
|
|
502
546
|
|
|
503
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
547
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_browser_settings.html)
|
|
504
548
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_browser_settings)
|
|
505
549
|
"""
|
|
506
550
|
|
|
551
|
+
def get_data_protection_settings(
|
|
552
|
+
self, **kwargs: Unpack[GetDataProtectionSettingsRequestRequestTypeDef]
|
|
553
|
+
) -> GetDataProtectionSettingsResponseTypeDef:
|
|
554
|
+
"""
|
|
555
|
+
Gets the data protection settings.
|
|
556
|
+
|
|
557
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_data_protection_settings.html)
|
|
558
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_data_protection_settings)
|
|
559
|
+
"""
|
|
560
|
+
|
|
507
561
|
def get_identity_provider(
|
|
508
562
|
self, **kwargs: Unpack[GetIdentityProviderRequestRequestTypeDef]
|
|
509
563
|
) -> GetIdentityProviderResponseTypeDef:
|
|
510
564
|
"""
|
|
511
565
|
Gets the identity provider.
|
|
512
566
|
|
|
513
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
567
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_identity_provider.html)
|
|
514
568
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_identity_provider)
|
|
515
569
|
"""
|
|
516
570
|
|
|
@@ -520,7 +574,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
520
574
|
"""
|
|
521
575
|
Gets the IP access settings.
|
|
522
576
|
|
|
523
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
577
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_ip_access_settings.html)
|
|
524
578
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_ip_access_settings)
|
|
525
579
|
"""
|
|
526
580
|
|
|
@@ -530,7 +584,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
530
584
|
"""
|
|
531
585
|
Gets the network settings.
|
|
532
586
|
|
|
533
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
587
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_network_settings.html)
|
|
534
588
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_network_settings)
|
|
535
589
|
"""
|
|
536
590
|
|
|
@@ -540,7 +594,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
540
594
|
"""
|
|
541
595
|
Gets the web portal.
|
|
542
596
|
|
|
543
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
597
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_portal.html)
|
|
544
598
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_portal)
|
|
545
599
|
"""
|
|
546
600
|
|
|
@@ -550,7 +604,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
550
604
|
"""
|
|
551
605
|
Gets the service provider metadata.
|
|
552
606
|
|
|
553
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
607
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_portal_service_provider_metadata.html)
|
|
554
608
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_portal_service_provider_metadata)
|
|
555
609
|
"""
|
|
556
610
|
|
|
@@ -560,7 +614,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
560
614
|
"""
|
|
561
615
|
Gets information for a secure browser session.
|
|
562
616
|
|
|
563
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
617
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_session.html)
|
|
564
618
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_session)
|
|
565
619
|
"""
|
|
566
620
|
|
|
@@ -570,7 +624,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
570
624
|
"""
|
|
571
625
|
Gets the trust store.
|
|
572
626
|
|
|
573
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
627
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_trust_store.html)
|
|
574
628
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_trust_store)
|
|
575
629
|
"""
|
|
576
630
|
|
|
@@ -580,7 +634,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
580
634
|
"""
|
|
581
635
|
Gets the trust store certificate.
|
|
582
636
|
|
|
583
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
637
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_trust_store_certificate.html)
|
|
584
638
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_trust_store_certificate)
|
|
585
639
|
"""
|
|
586
640
|
|
|
@@ -590,7 +644,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
590
644
|
"""
|
|
591
645
|
Gets user access logging settings.
|
|
592
646
|
|
|
593
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_user_access_logging_settings.html)
|
|
594
648
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_user_access_logging_settings)
|
|
595
649
|
"""
|
|
596
650
|
|
|
@@ -600,7 +654,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
600
654
|
"""
|
|
601
655
|
Gets user settings.
|
|
602
656
|
|
|
603
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
657
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_user_settings.html)
|
|
604
658
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_user_settings)
|
|
605
659
|
"""
|
|
606
660
|
|
|
@@ -610,17 +664,27 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
610
664
|
"""
|
|
611
665
|
Retrieves a list of browser settings.
|
|
612
666
|
|
|
613
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
667
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_browser_settings.html)
|
|
614
668
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_browser_settings)
|
|
615
669
|
"""
|
|
616
670
|
|
|
671
|
+
def list_data_protection_settings(
|
|
672
|
+
self, **kwargs: Unpack[ListDataProtectionSettingsRequestRequestTypeDef]
|
|
673
|
+
) -> ListDataProtectionSettingsResponseTypeDef:
|
|
674
|
+
"""
|
|
675
|
+
Retrieves a list of data protection settings.
|
|
676
|
+
|
|
677
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_data_protection_settings.html)
|
|
678
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_data_protection_settings)
|
|
679
|
+
"""
|
|
680
|
+
|
|
617
681
|
def list_identity_providers(
|
|
618
682
|
self, **kwargs: Unpack[ListIdentityProvidersRequestRequestTypeDef]
|
|
619
683
|
) -> ListIdentityProvidersResponseTypeDef:
|
|
620
684
|
"""
|
|
621
685
|
Retrieves a list of identity providers for a specific web portal.
|
|
622
686
|
|
|
623
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
687
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_identity_providers.html)
|
|
624
688
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_identity_providers)
|
|
625
689
|
"""
|
|
626
690
|
|
|
@@ -630,7 +694,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
630
694
|
"""
|
|
631
695
|
Retrieves a list of IP access settings.
|
|
632
696
|
|
|
633
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
697
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_ip_access_settings.html)
|
|
634
698
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_ip_access_settings)
|
|
635
699
|
"""
|
|
636
700
|
|
|
@@ -640,7 +704,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
640
704
|
"""
|
|
641
705
|
Retrieves a list of network settings.
|
|
642
706
|
|
|
643
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
707
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_network_settings.html)
|
|
644
708
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_network_settings)
|
|
645
709
|
"""
|
|
646
710
|
|
|
@@ -650,7 +714,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
650
714
|
"""
|
|
651
715
|
Retrieves a list or web portals.
|
|
652
716
|
|
|
653
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
717
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_portals.html)
|
|
654
718
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_portals)
|
|
655
719
|
"""
|
|
656
720
|
|
|
@@ -660,7 +724,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
660
724
|
"""
|
|
661
725
|
Lists information for multiple secure browser sessions from a specific portal.
|
|
662
726
|
|
|
663
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
727
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_sessions.html)
|
|
664
728
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_sessions)
|
|
665
729
|
"""
|
|
666
730
|
|
|
@@ -670,7 +734,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
670
734
|
"""
|
|
671
735
|
Retrieves a list of tags for a resource.
|
|
672
736
|
|
|
673
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
737
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_tags_for_resource.html)
|
|
674
738
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_tags_for_resource)
|
|
675
739
|
"""
|
|
676
740
|
|
|
@@ -680,7 +744,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
680
744
|
"""
|
|
681
745
|
Retrieves a list of trust store certificates.
|
|
682
746
|
|
|
683
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
747
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_trust_store_certificates.html)
|
|
684
748
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_trust_store_certificates)
|
|
685
749
|
"""
|
|
686
750
|
|
|
@@ -690,7 +754,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
690
754
|
"""
|
|
691
755
|
Retrieves a list of trust stores.
|
|
692
756
|
|
|
693
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
757
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_trust_stores.html)
|
|
694
758
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_trust_stores)
|
|
695
759
|
"""
|
|
696
760
|
|
|
@@ -700,7 +764,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
700
764
|
"""
|
|
701
765
|
Retrieves a list of user access logging settings.
|
|
702
766
|
|
|
703
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
767
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_user_access_logging_settings.html)
|
|
704
768
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_user_access_logging_settings)
|
|
705
769
|
"""
|
|
706
770
|
|
|
@@ -710,7 +774,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
710
774
|
"""
|
|
711
775
|
Retrieves a list of user settings.
|
|
712
776
|
|
|
713
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
777
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_user_settings.html)
|
|
714
778
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_user_settings)
|
|
715
779
|
"""
|
|
716
780
|
|
|
@@ -718,7 +782,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
718
782
|
"""
|
|
719
783
|
Adds or overwrites one or more tags for the specified resource.
|
|
720
784
|
|
|
721
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
785
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/tag_resource.html)
|
|
722
786
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#tag_resource)
|
|
723
787
|
"""
|
|
724
788
|
|
|
@@ -728,7 +792,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
728
792
|
"""
|
|
729
793
|
Removes one or more tags from the specified resource.
|
|
730
794
|
|
|
731
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
795
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/untag_resource.html)
|
|
732
796
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#untag_resource)
|
|
733
797
|
"""
|
|
734
798
|
|
|
@@ -738,17 +802,27 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
738
802
|
"""
|
|
739
803
|
Updates browser settings.
|
|
740
804
|
|
|
741
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
805
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_browser_settings.html)
|
|
742
806
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_browser_settings)
|
|
743
807
|
"""
|
|
744
808
|
|
|
809
|
+
def update_data_protection_settings(
|
|
810
|
+
self, **kwargs: Unpack[UpdateDataProtectionSettingsRequestRequestTypeDef]
|
|
811
|
+
) -> UpdateDataProtectionSettingsResponseTypeDef:
|
|
812
|
+
"""
|
|
813
|
+
Updates data protection settings.
|
|
814
|
+
|
|
815
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_data_protection_settings.html)
|
|
816
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_data_protection_settings)
|
|
817
|
+
"""
|
|
818
|
+
|
|
745
819
|
def update_identity_provider(
|
|
746
820
|
self, **kwargs: Unpack[UpdateIdentityProviderRequestRequestTypeDef]
|
|
747
821
|
) -> UpdateIdentityProviderResponseTypeDef:
|
|
748
822
|
"""
|
|
749
823
|
Updates the identity provider.
|
|
750
824
|
|
|
751
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
825
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_identity_provider.html)
|
|
752
826
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_identity_provider)
|
|
753
827
|
"""
|
|
754
828
|
|
|
@@ -758,7 +832,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
758
832
|
"""
|
|
759
833
|
Updates IP access settings.
|
|
760
834
|
|
|
761
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
835
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_ip_access_settings.html)
|
|
762
836
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_ip_access_settings)
|
|
763
837
|
"""
|
|
764
838
|
|
|
@@ -768,7 +842,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
768
842
|
"""
|
|
769
843
|
Updates network settings.
|
|
770
844
|
|
|
771
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
845
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_network_settings.html)
|
|
772
846
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_network_settings)
|
|
773
847
|
"""
|
|
774
848
|
|
|
@@ -778,7 +852,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
778
852
|
"""
|
|
779
853
|
Updates a web portal.
|
|
780
854
|
|
|
781
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
855
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_portal.html)
|
|
782
856
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_portal)
|
|
783
857
|
"""
|
|
784
858
|
|
|
@@ -788,7 +862,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
788
862
|
"""
|
|
789
863
|
Updates the trust store.
|
|
790
864
|
|
|
791
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
865
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_trust_store.html)
|
|
792
866
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_trust_store)
|
|
793
867
|
"""
|
|
794
868
|
|
|
@@ -798,7 +872,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
798
872
|
"""
|
|
799
873
|
Updates the user access logging settings.
|
|
800
874
|
|
|
801
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
875
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_user_access_logging_settings.html)
|
|
802
876
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_user_access_logging_settings)
|
|
803
877
|
"""
|
|
804
878
|
|
|
@@ -808,12 +882,28 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
808
882
|
"""
|
|
809
883
|
Updates the user settings.
|
|
810
884
|
|
|
811
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html
|
|
885
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_user_settings.html)
|
|
812
886
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_user_settings)
|
|
813
887
|
"""
|
|
814
888
|
|
|
815
|
-
|
|
889
|
+
@overload # type: ignore[override]
|
|
890
|
+
def get_paginator( # type: ignore[override]
|
|
891
|
+
self, operation_name: Literal["list_data_protection_settings"]
|
|
892
|
+
) -> ListDataProtectionSettingsPaginator:
|
|
893
|
+
"""
|
|
894
|
+
Create a paginator for an operation.
|
|
895
|
+
|
|
896
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_paginator.html)
|
|
897
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_paginator)
|
|
816
898
|
"""
|
|
817
|
-
|
|
899
|
+
|
|
900
|
+
@overload # type: ignore[override]
|
|
901
|
+
def get_paginator( # type: ignore[override]
|
|
902
|
+
self, operation_name: Literal["list_sessions"]
|
|
903
|
+
) -> ListSessionsPaginator:
|
|
904
|
+
"""
|
|
905
|
+
Create a paginator for an operation.
|
|
906
|
+
|
|
907
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_paginator.html)
|
|
818
908
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_paginator)
|
|
819
909
|
"""
|