mypy-boto3-workspaces-web 1.36.0__py3-none-any.whl → 1.37.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 +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 -3
- mypy_boto3_workspaces_web/literals.pyi +19 -3
- 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.36.0.dist-info → mypy_boto3_workspaces_web-1.37.0.dist-info}/METADATA +14 -10
- mypy_boto3_workspaces_web-1.37.0.dist-info/RECORD +18 -0
- mypy_boto3_workspaces_web-1.36.0.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.37.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.37.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.37.0.dist-info}/top_level.txt +0 -0
|
@@ -3,6 +3,8 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -12,8 +14,6 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -27,122 +27,122 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
|
|
29
29
|
from .type_defs import (
|
|
30
|
-
|
|
30
|
+
AssociateBrowserSettingsRequestTypeDef,
|
|
31
31
|
AssociateBrowserSettingsResponseTypeDef,
|
|
32
|
-
|
|
32
|
+
AssociateDataProtectionSettingsRequestTypeDef,
|
|
33
33
|
AssociateDataProtectionSettingsResponseTypeDef,
|
|
34
|
-
|
|
34
|
+
AssociateIpAccessSettingsRequestTypeDef,
|
|
35
35
|
AssociateIpAccessSettingsResponseTypeDef,
|
|
36
|
-
|
|
36
|
+
AssociateNetworkSettingsRequestTypeDef,
|
|
37
37
|
AssociateNetworkSettingsResponseTypeDef,
|
|
38
|
-
|
|
38
|
+
AssociateTrustStoreRequestTypeDef,
|
|
39
39
|
AssociateTrustStoreResponseTypeDef,
|
|
40
|
-
|
|
40
|
+
AssociateUserAccessLoggingSettingsRequestTypeDef,
|
|
41
41
|
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
42
|
-
|
|
42
|
+
AssociateUserSettingsRequestTypeDef,
|
|
43
43
|
AssociateUserSettingsResponseTypeDef,
|
|
44
|
-
|
|
44
|
+
CreateBrowserSettingsRequestTypeDef,
|
|
45
45
|
CreateBrowserSettingsResponseTypeDef,
|
|
46
|
-
|
|
46
|
+
CreateDataProtectionSettingsRequestTypeDef,
|
|
47
47
|
CreateDataProtectionSettingsResponseTypeDef,
|
|
48
|
-
|
|
48
|
+
CreateIdentityProviderRequestTypeDef,
|
|
49
49
|
CreateIdentityProviderResponseTypeDef,
|
|
50
|
-
|
|
50
|
+
CreateIpAccessSettingsRequestTypeDef,
|
|
51
51
|
CreateIpAccessSettingsResponseTypeDef,
|
|
52
|
-
|
|
52
|
+
CreateNetworkSettingsRequestTypeDef,
|
|
53
53
|
CreateNetworkSettingsResponseTypeDef,
|
|
54
|
-
|
|
54
|
+
CreatePortalRequestTypeDef,
|
|
55
55
|
CreatePortalResponseTypeDef,
|
|
56
|
-
|
|
56
|
+
CreateTrustStoreRequestTypeDef,
|
|
57
57
|
CreateTrustStoreResponseTypeDef,
|
|
58
|
-
|
|
58
|
+
CreateUserAccessLoggingSettingsRequestTypeDef,
|
|
59
59
|
CreateUserAccessLoggingSettingsResponseTypeDef,
|
|
60
|
-
|
|
60
|
+
CreateUserSettingsRequestTypeDef,
|
|
61
61
|
CreateUserSettingsResponseTypeDef,
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
62
|
+
DeleteBrowserSettingsRequestTypeDef,
|
|
63
|
+
DeleteDataProtectionSettingsRequestTypeDef,
|
|
64
|
+
DeleteIdentityProviderRequestTypeDef,
|
|
65
|
+
DeleteIpAccessSettingsRequestTypeDef,
|
|
66
|
+
DeleteNetworkSettingsRequestTypeDef,
|
|
67
|
+
DeletePortalRequestTypeDef,
|
|
68
|
+
DeleteTrustStoreRequestTypeDef,
|
|
69
|
+
DeleteUserAccessLoggingSettingsRequestTypeDef,
|
|
70
|
+
DeleteUserSettingsRequestTypeDef,
|
|
71
|
+
DisassociateBrowserSettingsRequestTypeDef,
|
|
72
|
+
DisassociateDataProtectionSettingsRequestTypeDef,
|
|
73
|
+
DisassociateIpAccessSettingsRequestTypeDef,
|
|
74
|
+
DisassociateNetworkSettingsRequestTypeDef,
|
|
75
|
+
DisassociateTrustStoreRequestTypeDef,
|
|
76
|
+
DisassociateUserAccessLoggingSettingsRequestTypeDef,
|
|
77
|
+
DisassociateUserSettingsRequestTypeDef,
|
|
78
|
+
ExpireSessionRequestTypeDef,
|
|
79
|
+
GetBrowserSettingsRequestTypeDef,
|
|
80
80
|
GetBrowserSettingsResponseTypeDef,
|
|
81
|
-
|
|
81
|
+
GetDataProtectionSettingsRequestTypeDef,
|
|
82
82
|
GetDataProtectionSettingsResponseTypeDef,
|
|
83
|
-
|
|
83
|
+
GetIdentityProviderRequestTypeDef,
|
|
84
84
|
GetIdentityProviderResponseTypeDef,
|
|
85
|
-
|
|
85
|
+
GetIpAccessSettingsRequestTypeDef,
|
|
86
86
|
GetIpAccessSettingsResponseTypeDef,
|
|
87
|
-
|
|
87
|
+
GetNetworkSettingsRequestTypeDef,
|
|
88
88
|
GetNetworkSettingsResponseTypeDef,
|
|
89
|
-
|
|
89
|
+
GetPortalRequestTypeDef,
|
|
90
90
|
GetPortalResponseTypeDef,
|
|
91
|
-
|
|
91
|
+
GetPortalServiceProviderMetadataRequestTypeDef,
|
|
92
92
|
GetPortalServiceProviderMetadataResponseTypeDef,
|
|
93
|
-
|
|
93
|
+
GetSessionRequestTypeDef,
|
|
94
94
|
GetSessionResponseTypeDef,
|
|
95
|
-
|
|
95
|
+
GetTrustStoreCertificateRequestTypeDef,
|
|
96
96
|
GetTrustStoreCertificateResponseTypeDef,
|
|
97
|
-
|
|
97
|
+
GetTrustStoreRequestTypeDef,
|
|
98
98
|
GetTrustStoreResponseTypeDef,
|
|
99
|
-
|
|
99
|
+
GetUserAccessLoggingSettingsRequestTypeDef,
|
|
100
100
|
GetUserAccessLoggingSettingsResponseTypeDef,
|
|
101
|
-
|
|
101
|
+
GetUserSettingsRequestTypeDef,
|
|
102
102
|
GetUserSettingsResponseTypeDef,
|
|
103
|
-
|
|
103
|
+
ListBrowserSettingsRequestTypeDef,
|
|
104
104
|
ListBrowserSettingsResponseTypeDef,
|
|
105
|
-
|
|
105
|
+
ListDataProtectionSettingsRequestTypeDef,
|
|
106
106
|
ListDataProtectionSettingsResponseTypeDef,
|
|
107
|
-
|
|
107
|
+
ListIdentityProvidersRequestTypeDef,
|
|
108
108
|
ListIdentityProvidersResponseTypeDef,
|
|
109
|
-
|
|
109
|
+
ListIpAccessSettingsRequestTypeDef,
|
|
110
110
|
ListIpAccessSettingsResponseTypeDef,
|
|
111
|
-
|
|
111
|
+
ListNetworkSettingsRequestTypeDef,
|
|
112
112
|
ListNetworkSettingsResponseTypeDef,
|
|
113
|
-
|
|
113
|
+
ListPortalsRequestTypeDef,
|
|
114
114
|
ListPortalsResponseTypeDef,
|
|
115
|
-
|
|
115
|
+
ListSessionsRequestTypeDef,
|
|
116
116
|
ListSessionsResponseTypeDef,
|
|
117
|
-
|
|
117
|
+
ListTagsForResourceRequestTypeDef,
|
|
118
118
|
ListTagsForResourceResponseTypeDef,
|
|
119
|
-
|
|
119
|
+
ListTrustStoreCertificatesRequestTypeDef,
|
|
120
120
|
ListTrustStoreCertificatesResponseTypeDef,
|
|
121
|
-
|
|
121
|
+
ListTrustStoresRequestTypeDef,
|
|
122
122
|
ListTrustStoresResponseTypeDef,
|
|
123
|
-
|
|
123
|
+
ListUserAccessLoggingSettingsRequestTypeDef,
|
|
124
124
|
ListUserAccessLoggingSettingsResponseTypeDef,
|
|
125
|
-
|
|
125
|
+
ListUserSettingsRequestTypeDef,
|
|
126
126
|
ListUserSettingsResponseTypeDef,
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
127
|
+
TagResourceRequestTypeDef,
|
|
128
|
+
UntagResourceRequestTypeDef,
|
|
129
|
+
UpdateBrowserSettingsRequestTypeDef,
|
|
130
130
|
UpdateBrowserSettingsResponseTypeDef,
|
|
131
|
-
|
|
131
|
+
UpdateDataProtectionSettingsRequestTypeDef,
|
|
132
132
|
UpdateDataProtectionSettingsResponseTypeDef,
|
|
133
|
-
|
|
133
|
+
UpdateIdentityProviderRequestTypeDef,
|
|
134
134
|
UpdateIdentityProviderResponseTypeDef,
|
|
135
|
-
|
|
135
|
+
UpdateIpAccessSettingsRequestTypeDef,
|
|
136
136
|
UpdateIpAccessSettingsResponseTypeDef,
|
|
137
|
-
|
|
137
|
+
UpdateNetworkSettingsRequestTypeDef,
|
|
138
138
|
UpdateNetworkSettingsResponseTypeDef,
|
|
139
|
-
|
|
139
|
+
UpdatePortalRequestTypeDef,
|
|
140
140
|
UpdatePortalResponseTypeDef,
|
|
141
|
-
|
|
141
|
+
UpdateTrustStoreRequestTypeDef,
|
|
142
142
|
UpdateTrustStoreResponseTypeDef,
|
|
143
|
-
|
|
143
|
+
UpdateUserAccessLoggingSettingsRequestTypeDef,
|
|
144
144
|
UpdateUserAccessLoggingSettingsResponseTypeDef,
|
|
145
|
-
|
|
145
|
+
UpdateUserSettingsRequestTypeDef,
|
|
146
146
|
UpdateUserSettingsResponseTypeDef,
|
|
147
147
|
)
|
|
148
148
|
|
|
@@ -209,7 +209,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
209
209
|
"""
|
|
210
210
|
|
|
211
211
|
def associate_browser_settings(
|
|
212
|
-
self, **kwargs: Unpack[
|
|
212
|
+
self, **kwargs: Unpack[AssociateBrowserSettingsRequestTypeDef]
|
|
213
213
|
) -> AssociateBrowserSettingsResponseTypeDef:
|
|
214
214
|
"""
|
|
215
215
|
Associates a browser settings resource with a web portal.
|
|
@@ -219,7 +219,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
219
219
|
"""
|
|
220
220
|
|
|
221
221
|
def associate_data_protection_settings(
|
|
222
|
-
self, **kwargs: Unpack[
|
|
222
|
+
self, **kwargs: Unpack[AssociateDataProtectionSettingsRequestTypeDef]
|
|
223
223
|
) -> AssociateDataProtectionSettingsResponseTypeDef:
|
|
224
224
|
"""
|
|
225
225
|
Associates a data protection settings resource with a web portal.
|
|
@@ -229,7 +229,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
229
229
|
"""
|
|
230
230
|
|
|
231
231
|
def associate_ip_access_settings(
|
|
232
|
-
self, **kwargs: Unpack[
|
|
232
|
+
self, **kwargs: Unpack[AssociateIpAccessSettingsRequestTypeDef]
|
|
233
233
|
) -> AssociateIpAccessSettingsResponseTypeDef:
|
|
234
234
|
"""
|
|
235
235
|
Associates an IP access settings resource with a web portal.
|
|
@@ -239,7 +239,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
239
239
|
"""
|
|
240
240
|
|
|
241
241
|
def associate_network_settings(
|
|
242
|
-
self, **kwargs: Unpack[
|
|
242
|
+
self, **kwargs: Unpack[AssociateNetworkSettingsRequestTypeDef]
|
|
243
243
|
) -> AssociateNetworkSettingsResponseTypeDef:
|
|
244
244
|
"""
|
|
245
245
|
Associates a network settings resource with a web portal.
|
|
@@ -249,7 +249,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
249
249
|
"""
|
|
250
250
|
|
|
251
251
|
def associate_trust_store(
|
|
252
|
-
self, **kwargs: Unpack[
|
|
252
|
+
self, **kwargs: Unpack[AssociateTrustStoreRequestTypeDef]
|
|
253
253
|
) -> AssociateTrustStoreResponseTypeDef:
|
|
254
254
|
"""
|
|
255
255
|
Associates a trust store with a web portal.
|
|
@@ -259,7 +259,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
259
259
|
"""
|
|
260
260
|
|
|
261
261
|
def associate_user_access_logging_settings(
|
|
262
|
-
self, **kwargs: Unpack[
|
|
262
|
+
self, **kwargs: Unpack[AssociateUserAccessLoggingSettingsRequestTypeDef]
|
|
263
263
|
) -> AssociateUserAccessLoggingSettingsResponseTypeDef:
|
|
264
264
|
"""
|
|
265
265
|
Associates a user access logging settings resource with a web portal.
|
|
@@ -269,7 +269,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
269
269
|
"""
|
|
270
270
|
|
|
271
271
|
def associate_user_settings(
|
|
272
|
-
self, **kwargs: Unpack[
|
|
272
|
+
self, **kwargs: Unpack[AssociateUserSettingsRequestTypeDef]
|
|
273
273
|
) -> AssociateUserSettingsResponseTypeDef:
|
|
274
274
|
"""
|
|
275
275
|
Associates a user settings resource with a web portal.
|
|
@@ -279,7 +279,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
279
279
|
"""
|
|
280
280
|
|
|
281
281
|
def create_browser_settings(
|
|
282
|
-
self, **kwargs: Unpack[
|
|
282
|
+
self, **kwargs: Unpack[CreateBrowserSettingsRequestTypeDef]
|
|
283
283
|
) -> CreateBrowserSettingsResponseTypeDef:
|
|
284
284
|
"""
|
|
285
285
|
Creates a browser settings resource that can be associated with a web portal.
|
|
@@ -289,7 +289,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
289
289
|
"""
|
|
290
290
|
|
|
291
291
|
def create_data_protection_settings(
|
|
292
|
-
self, **kwargs: Unpack[
|
|
292
|
+
self, **kwargs: Unpack[CreateDataProtectionSettingsRequestTypeDef]
|
|
293
293
|
) -> CreateDataProtectionSettingsResponseTypeDef:
|
|
294
294
|
"""
|
|
295
295
|
Creates a data protection settings resource that can be associated with a web
|
|
@@ -300,7 +300,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
300
300
|
"""
|
|
301
301
|
|
|
302
302
|
def create_identity_provider(
|
|
303
|
-
self, **kwargs: Unpack[
|
|
303
|
+
self, **kwargs: Unpack[CreateIdentityProviderRequestTypeDef]
|
|
304
304
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
305
305
|
"""
|
|
306
306
|
Creates an identity provider resource that is then associated with a web portal.
|
|
@@ -310,7 +310,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
310
310
|
"""
|
|
311
311
|
|
|
312
312
|
def create_ip_access_settings(
|
|
313
|
-
self, **kwargs: Unpack[
|
|
313
|
+
self, **kwargs: Unpack[CreateIpAccessSettingsRequestTypeDef]
|
|
314
314
|
) -> CreateIpAccessSettingsResponseTypeDef:
|
|
315
315
|
"""
|
|
316
316
|
Creates an IP access settings resource that can be associated with a web portal.
|
|
@@ -320,7 +320,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
320
320
|
"""
|
|
321
321
|
|
|
322
322
|
def create_network_settings(
|
|
323
|
-
self, **kwargs: Unpack[
|
|
323
|
+
self, **kwargs: Unpack[CreateNetworkSettingsRequestTypeDef]
|
|
324
324
|
) -> CreateNetworkSettingsResponseTypeDef:
|
|
325
325
|
"""
|
|
326
326
|
Creates a network settings resource that can be associated with a web portal.
|
|
@@ -330,7 +330,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
330
330
|
"""
|
|
331
331
|
|
|
332
332
|
def create_portal(
|
|
333
|
-
self, **kwargs: Unpack[
|
|
333
|
+
self, **kwargs: Unpack[CreatePortalRequestTypeDef]
|
|
334
334
|
) -> CreatePortalResponseTypeDef:
|
|
335
335
|
"""
|
|
336
336
|
Creates a web portal.
|
|
@@ -340,7 +340,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
340
340
|
"""
|
|
341
341
|
|
|
342
342
|
def create_trust_store(
|
|
343
|
-
self, **kwargs: Unpack[
|
|
343
|
+
self, **kwargs: Unpack[CreateTrustStoreRequestTypeDef]
|
|
344
344
|
) -> CreateTrustStoreResponseTypeDef:
|
|
345
345
|
"""
|
|
346
346
|
Creates a trust store that can be associated with a web portal.
|
|
@@ -350,7 +350,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
350
350
|
"""
|
|
351
351
|
|
|
352
352
|
def create_user_access_logging_settings(
|
|
353
|
-
self, **kwargs: Unpack[
|
|
353
|
+
self, **kwargs: Unpack[CreateUserAccessLoggingSettingsRequestTypeDef]
|
|
354
354
|
) -> CreateUserAccessLoggingSettingsResponseTypeDef:
|
|
355
355
|
"""
|
|
356
356
|
Creates a user access logging settings resource that can be associated with a
|
|
@@ -361,7 +361,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
361
361
|
"""
|
|
362
362
|
|
|
363
363
|
def create_user_settings(
|
|
364
|
-
self, **kwargs: Unpack[
|
|
364
|
+
self, **kwargs: Unpack[CreateUserSettingsRequestTypeDef]
|
|
365
365
|
) -> CreateUserSettingsResponseTypeDef:
|
|
366
366
|
"""
|
|
367
367
|
Creates a user settings resource that can be associated with a web portal.
|
|
@@ -371,7 +371,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
371
371
|
"""
|
|
372
372
|
|
|
373
373
|
def delete_browser_settings(
|
|
374
|
-
self, **kwargs: Unpack[
|
|
374
|
+
self, **kwargs: Unpack[DeleteBrowserSettingsRequestTypeDef]
|
|
375
375
|
) -> Dict[str, Any]:
|
|
376
376
|
"""
|
|
377
377
|
Deletes browser settings.
|
|
@@ -381,7 +381,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
381
381
|
"""
|
|
382
382
|
|
|
383
383
|
def delete_data_protection_settings(
|
|
384
|
-
self, **kwargs: Unpack[
|
|
384
|
+
self, **kwargs: Unpack[DeleteDataProtectionSettingsRequestTypeDef]
|
|
385
385
|
) -> Dict[str, Any]:
|
|
386
386
|
"""
|
|
387
387
|
Deletes data protection settings.
|
|
@@ -391,7 +391,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
391
391
|
"""
|
|
392
392
|
|
|
393
393
|
def delete_identity_provider(
|
|
394
|
-
self, **kwargs: Unpack[
|
|
394
|
+
self, **kwargs: Unpack[DeleteIdentityProviderRequestTypeDef]
|
|
395
395
|
) -> Dict[str, Any]:
|
|
396
396
|
"""
|
|
397
397
|
Deletes the identity provider.
|
|
@@ -401,7 +401,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
401
401
|
"""
|
|
402
402
|
|
|
403
403
|
def delete_ip_access_settings(
|
|
404
|
-
self, **kwargs: Unpack[
|
|
404
|
+
self, **kwargs: Unpack[DeleteIpAccessSettingsRequestTypeDef]
|
|
405
405
|
) -> Dict[str, Any]:
|
|
406
406
|
"""
|
|
407
407
|
Deletes IP access settings.
|
|
@@ -411,7 +411,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
411
411
|
"""
|
|
412
412
|
|
|
413
413
|
def delete_network_settings(
|
|
414
|
-
self, **kwargs: Unpack[
|
|
414
|
+
self, **kwargs: Unpack[DeleteNetworkSettingsRequestTypeDef]
|
|
415
415
|
) -> Dict[str, Any]:
|
|
416
416
|
"""
|
|
417
417
|
Deletes network settings.
|
|
@@ -420,7 +420,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
420
420
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_network_settings)
|
|
421
421
|
"""
|
|
422
422
|
|
|
423
|
-
def delete_portal(self, **kwargs: Unpack[
|
|
423
|
+
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestTypeDef]) -> Dict[str, Any]:
|
|
424
424
|
"""
|
|
425
425
|
Deletes a web portal.
|
|
426
426
|
|
|
@@ -429,7 +429,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
429
429
|
"""
|
|
430
430
|
|
|
431
431
|
def delete_trust_store(
|
|
432
|
-
self, **kwargs: Unpack[
|
|
432
|
+
self, **kwargs: Unpack[DeleteTrustStoreRequestTypeDef]
|
|
433
433
|
) -> Dict[str, Any]:
|
|
434
434
|
"""
|
|
435
435
|
Deletes the trust store.
|
|
@@ -439,7 +439,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
439
439
|
"""
|
|
440
440
|
|
|
441
441
|
def delete_user_access_logging_settings(
|
|
442
|
-
self, **kwargs: Unpack[
|
|
442
|
+
self, **kwargs: Unpack[DeleteUserAccessLoggingSettingsRequestTypeDef]
|
|
443
443
|
) -> Dict[str, Any]:
|
|
444
444
|
"""
|
|
445
445
|
Deletes user access logging settings.
|
|
@@ -449,7 +449,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
449
449
|
"""
|
|
450
450
|
|
|
451
451
|
def delete_user_settings(
|
|
452
|
-
self, **kwargs: Unpack[
|
|
452
|
+
self, **kwargs: Unpack[DeleteUserSettingsRequestTypeDef]
|
|
453
453
|
) -> Dict[str, Any]:
|
|
454
454
|
"""
|
|
455
455
|
Deletes user settings.
|
|
@@ -459,7 +459,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
459
459
|
"""
|
|
460
460
|
|
|
461
461
|
def disassociate_browser_settings(
|
|
462
|
-
self, **kwargs: Unpack[
|
|
462
|
+
self, **kwargs: Unpack[DisassociateBrowserSettingsRequestTypeDef]
|
|
463
463
|
) -> Dict[str, Any]:
|
|
464
464
|
"""
|
|
465
465
|
Disassociates browser settings from a web portal.
|
|
@@ -469,7 +469,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
469
469
|
"""
|
|
470
470
|
|
|
471
471
|
def disassociate_data_protection_settings(
|
|
472
|
-
self, **kwargs: Unpack[
|
|
472
|
+
self, **kwargs: Unpack[DisassociateDataProtectionSettingsRequestTypeDef]
|
|
473
473
|
) -> Dict[str, Any]:
|
|
474
474
|
"""
|
|
475
475
|
Disassociates data protection settings from a web portal.
|
|
@@ -479,7 +479,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
479
479
|
"""
|
|
480
480
|
|
|
481
481
|
def disassociate_ip_access_settings(
|
|
482
|
-
self, **kwargs: Unpack[
|
|
482
|
+
self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestTypeDef]
|
|
483
483
|
) -> Dict[str, Any]:
|
|
484
484
|
"""
|
|
485
485
|
Disassociates IP access settings from a web portal.
|
|
@@ -489,7 +489,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
489
489
|
"""
|
|
490
490
|
|
|
491
491
|
def disassociate_network_settings(
|
|
492
|
-
self, **kwargs: Unpack[
|
|
492
|
+
self, **kwargs: Unpack[DisassociateNetworkSettingsRequestTypeDef]
|
|
493
493
|
) -> Dict[str, Any]:
|
|
494
494
|
"""
|
|
495
495
|
Disassociates network settings from a web portal.
|
|
@@ -499,7 +499,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
499
499
|
"""
|
|
500
500
|
|
|
501
501
|
def disassociate_trust_store(
|
|
502
|
-
self, **kwargs: Unpack[
|
|
502
|
+
self, **kwargs: Unpack[DisassociateTrustStoreRequestTypeDef]
|
|
503
503
|
) -> Dict[str, Any]:
|
|
504
504
|
"""
|
|
505
505
|
Disassociates a trust store from a web portal.
|
|
@@ -509,7 +509,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
509
509
|
"""
|
|
510
510
|
|
|
511
511
|
def disassociate_user_access_logging_settings(
|
|
512
|
-
self, **kwargs: Unpack[
|
|
512
|
+
self, **kwargs: Unpack[DisassociateUserAccessLoggingSettingsRequestTypeDef]
|
|
513
513
|
) -> Dict[str, Any]:
|
|
514
514
|
"""
|
|
515
515
|
Disassociates user access logging settings from a web portal.
|
|
@@ -519,7 +519,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
519
519
|
"""
|
|
520
520
|
|
|
521
521
|
def disassociate_user_settings(
|
|
522
|
-
self, **kwargs: Unpack[
|
|
522
|
+
self, **kwargs: Unpack[DisassociateUserSettingsRequestTypeDef]
|
|
523
523
|
) -> Dict[str, Any]:
|
|
524
524
|
"""
|
|
525
525
|
Disassociates user settings from a web portal.
|
|
@@ -528,9 +528,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
528
528
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_user_settings)
|
|
529
529
|
"""
|
|
530
530
|
|
|
531
|
-
def expire_session(
|
|
532
|
-
self, **kwargs: Unpack[ExpireSessionRequestRequestTypeDef]
|
|
533
|
-
) -> Dict[str, Any]:
|
|
531
|
+
def expire_session(self, **kwargs: Unpack[ExpireSessionRequestTypeDef]) -> Dict[str, Any]:
|
|
534
532
|
"""
|
|
535
533
|
Expires an active secure browser session.
|
|
536
534
|
|
|
@@ -539,7 +537,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
539
537
|
"""
|
|
540
538
|
|
|
541
539
|
def get_browser_settings(
|
|
542
|
-
self, **kwargs: Unpack[
|
|
540
|
+
self, **kwargs: Unpack[GetBrowserSettingsRequestTypeDef]
|
|
543
541
|
) -> GetBrowserSettingsResponseTypeDef:
|
|
544
542
|
"""
|
|
545
543
|
Gets browser settings.
|
|
@@ -549,7 +547,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
549
547
|
"""
|
|
550
548
|
|
|
551
549
|
def get_data_protection_settings(
|
|
552
|
-
self, **kwargs: Unpack[
|
|
550
|
+
self, **kwargs: Unpack[GetDataProtectionSettingsRequestTypeDef]
|
|
553
551
|
) -> GetDataProtectionSettingsResponseTypeDef:
|
|
554
552
|
"""
|
|
555
553
|
Gets the data protection settings.
|
|
@@ -559,7 +557,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
559
557
|
"""
|
|
560
558
|
|
|
561
559
|
def get_identity_provider(
|
|
562
|
-
self, **kwargs: Unpack[
|
|
560
|
+
self, **kwargs: Unpack[GetIdentityProviderRequestTypeDef]
|
|
563
561
|
) -> GetIdentityProviderResponseTypeDef:
|
|
564
562
|
"""
|
|
565
563
|
Gets the identity provider.
|
|
@@ -569,7 +567,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
569
567
|
"""
|
|
570
568
|
|
|
571
569
|
def get_ip_access_settings(
|
|
572
|
-
self, **kwargs: Unpack[
|
|
570
|
+
self, **kwargs: Unpack[GetIpAccessSettingsRequestTypeDef]
|
|
573
571
|
) -> GetIpAccessSettingsResponseTypeDef:
|
|
574
572
|
"""
|
|
575
573
|
Gets the IP access settings.
|
|
@@ -579,7 +577,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
579
577
|
"""
|
|
580
578
|
|
|
581
579
|
def get_network_settings(
|
|
582
|
-
self, **kwargs: Unpack[
|
|
580
|
+
self, **kwargs: Unpack[GetNetworkSettingsRequestTypeDef]
|
|
583
581
|
) -> GetNetworkSettingsResponseTypeDef:
|
|
584
582
|
"""
|
|
585
583
|
Gets the network settings.
|
|
@@ -588,9 +586,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
588
586
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_network_settings)
|
|
589
587
|
"""
|
|
590
588
|
|
|
591
|
-
def get_portal(
|
|
592
|
-
self, **kwargs: Unpack[GetPortalRequestRequestTypeDef]
|
|
593
|
-
) -> GetPortalResponseTypeDef:
|
|
589
|
+
def get_portal(self, **kwargs: Unpack[GetPortalRequestTypeDef]) -> GetPortalResponseTypeDef:
|
|
594
590
|
"""
|
|
595
591
|
Gets the web portal.
|
|
596
592
|
|
|
@@ -599,7 +595,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
599
595
|
"""
|
|
600
596
|
|
|
601
597
|
def get_portal_service_provider_metadata(
|
|
602
|
-
self, **kwargs: Unpack[
|
|
598
|
+
self, **kwargs: Unpack[GetPortalServiceProviderMetadataRequestTypeDef]
|
|
603
599
|
) -> GetPortalServiceProviderMetadataResponseTypeDef:
|
|
604
600
|
"""
|
|
605
601
|
Gets the service provider metadata.
|
|
@@ -608,9 +604,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
608
604
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_portal_service_provider_metadata)
|
|
609
605
|
"""
|
|
610
606
|
|
|
611
|
-
def get_session(
|
|
612
|
-
self, **kwargs: Unpack[GetSessionRequestRequestTypeDef]
|
|
613
|
-
) -> GetSessionResponseTypeDef:
|
|
607
|
+
def get_session(self, **kwargs: Unpack[GetSessionRequestTypeDef]) -> GetSessionResponseTypeDef:
|
|
614
608
|
"""
|
|
615
609
|
Gets information for a secure browser session.
|
|
616
610
|
|
|
@@ -619,7 +613,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
619
613
|
"""
|
|
620
614
|
|
|
621
615
|
def get_trust_store(
|
|
622
|
-
self, **kwargs: Unpack[
|
|
616
|
+
self, **kwargs: Unpack[GetTrustStoreRequestTypeDef]
|
|
623
617
|
) -> GetTrustStoreResponseTypeDef:
|
|
624
618
|
"""
|
|
625
619
|
Gets the trust store.
|
|
@@ -629,7 +623,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
629
623
|
"""
|
|
630
624
|
|
|
631
625
|
def get_trust_store_certificate(
|
|
632
|
-
self, **kwargs: Unpack[
|
|
626
|
+
self, **kwargs: Unpack[GetTrustStoreCertificateRequestTypeDef]
|
|
633
627
|
) -> GetTrustStoreCertificateResponseTypeDef:
|
|
634
628
|
"""
|
|
635
629
|
Gets the trust store certificate.
|
|
@@ -639,7 +633,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
639
633
|
"""
|
|
640
634
|
|
|
641
635
|
def get_user_access_logging_settings(
|
|
642
|
-
self, **kwargs: Unpack[
|
|
636
|
+
self, **kwargs: Unpack[GetUserAccessLoggingSettingsRequestTypeDef]
|
|
643
637
|
) -> GetUserAccessLoggingSettingsResponseTypeDef:
|
|
644
638
|
"""
|
|
645
639
|
Gets user access logging settings.
|
|
@@ -649,7 +643,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
649
643
|
"""
|
|
650
644
|
|
|
651
645
|
def get_user_settings(
|
|
652
|
-
self, **kwargs: Unpack[
|
|
646
|
+
self, **kwargs: Unpack[GetUserSettingsRequestTypeDef]
|
|
653
647
|
) -> GetUserSettingsResponseTypeDef:
|
|
654
648
|
"""
|
|
655
649
|
Gets user settings.
|
|
@@ -659,7 +653,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
659
653
|
"""
|
|
660
654
|
|
|
661
655
|
def list_browser_settings(
|
|
662
|
-
self, **kwargs: Unpack[
|
|
656
|
+
self, **kwargs: Unpack[ListBrowserSettingsRequestTypeDef]
|
|
663
657
|
) -> ListBrowserSettingsResponseTypeDef:
|
|
664
658
|
"""
|
|
665
659
|
Retrieves a list of browser settings.
|
|
@@ -669,7 +663,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
669
663
|
"""
|
|
670
664
|
|
|
671
665
|
def list_data_protection_settings(
|
|
672
|
-
self, **kwargs: Unpack[
|
|
666
|
+
self, **kwargs: Unpack[ListDataProtectionSettingsRequestTypeDef]
|
|
673
667
|
) -> ListDataProtectionSettingsResponseTypeDef:
|
|
674
668
|
"""
|
|
675
669
|
Retrieves a list of data protection settings.
|
|
@@ -679,7 +673,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
679
673
|
"""
|
|
680
674
|
|
|
681
675
|
def list_identity_providers(
|
|
682
|
-
self, **kwargs: Unpack[
|
|
676
|
+
self, **kwargs: Unpack[ListIdentityProvidersRequestTypeDef]
|
|
683
677
|
) -> ListIdentityProvidersResponseTypeDef:
|
|
684
678
|
"""
|
|
685
679
|
Retrieves a list of identity providers for a specific web portal.
|
|
@@ -689,7 +683,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
689
683
|
"""
|
|
690
684
|
|
|
691
685
|
def list_ip_access_settings(
|
|
692
|
-
self, **kwargs: Unpack[
|
|
686
|
+
self, **kwargs: Unpack[ListIpAccessSettingsRequestTypeDef]
|
|
693
687
|
) -> ListIpAccessSettingsResponseTypeDef:
|
|
694
688
|
"""
|
|
695
689
|
Retrieves a list of IP access settings.
|
|
@@ -699,7 +693,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
699
693
|
"""
|
|
700
694
|
|
|
701
695
|
def list_network_settings(
|
|
702
|
-
self, **kwargs: Unpack[
|
|
696
|
+
self, **kwargs: Unpack[ListNetworkSettingsRequestTypeDef]
|
|
703
697
|
) -> ListNetworkSettingsResponseTypeDef:
|
|
704
698
|
"""
|
|
705
699
|
Retrieves a list of network settings.
|
|
@@ -709,7 +703,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
709
703
|
"""
|
|
710
704
|
|
|
711
705
|
def list_portals(
|
|
712
|
-
self, **kwargs: Unpack[
|
|
706
|
+
self, **kwargs: Unpack[ListPortalsRequestTypeDef]
|
|
713
707
|
) -> ListPortalsResponseTypeDef:
|
|
714
708
|
"""
|
|
715
709
|
Retrieves a list or web portals.
|
|
@@ -719,7 +713,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
719
713
|
"""
|
|
720
714
|
|
|
721
715
|
def list_sessions(
|
|
722
|
-
self, **kwargs: Unpack[
|
|
716
|
+
self, **kwargs: Unpack[ListSessionsRequestTypeDef]
|
|
723
717
|
) -> ListSessionsResponseTypeDef:
|
|
724
718
|
"""
|
|
725
719
|
Lists information for multiple secure browser sessions from a specific portal.
|
|
@@ -729,7 +723,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
729
723
|
"""
|
|
730
724
|
|
|
731
725
|
def list_tags_for_resource(
|
|
732
|
-
self, **kwargs: Unpack[
|
|
726
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
733
727
|
) -> ListTagsForResourceResponseTypeDef:
|
|
734
728
|
"""
|
|
735
729
|
Retrieves a list of tags for a resource.
|
|
@@ -739,7 +733,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
739
733
|
"""
|
|
740
734
|
|
|
741
735
|
def list_trust_store_certificates(
|
|
742
|
-
self, **kwargs: Unpack[
|
|
736
|
+
self, **kwargs: Unpack[ListTrustStoreCertificatesRequestTypeDef]
|
|
743
737
|
) -> ListTrustStoreCertificatesResponseTypeDef:
|
|
744
738
|
"""
|
|
745
739
|
Retrieves a list of trust store certificates.
|
|
@@ -749,7 +743,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
749
743
|
"""
|
|
750
744
|
|
|
751
745
|
def list_trust_stores(
|
|
752
|
-
self, **kwargs: Unpack[
|
|
746
|
+
self, **kwargs: Unpack[ListTrustStoresRequestTypeDef]
|
|
753
747
|
) -> ListTrustStoresResponseTypeDef:
|
|
754
748
|
"""
|
|
755
749
|
Retrieves a list of trust stores.
|
|
@@ -759,7 +753,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
759
753
|
"""
|
|
760
754
|
|
|
761
755
|
def list_user_access_logging_settings(
|
|
762
|
-
self, **kwargs: Unpack[
|
|
756
|
+
self, **kwargs: Unpack[ListUserAccessLoggingSettingsRequestTypeDef]
|
|
763
757
|
) -> ListUserAccessLoggingSettingsResponseTypeDef:
|
|
764
758
|
"""
|
|
765
759
|
Retrieves a list of user access logging settings.
|
|
@@ -769,7 +763,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
769
763
|
"""
|
|
770
764
|
|
|
771
765
|
def list_user_settings(
|
|
772
|
-
self, **kwargs: Unpack[
|
|
766
|
+
self, **kwargs: Unpack[ListUserSettingsRequestTypeDef]
|
|
773
767
|
) -> ListUserSettingsResponseTypeDef:
|
|
774
768
|
"""
|
|
775
769
|
Retrieves a list of user settings.
|
|
@@ -778,7 +772,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
778
772
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_user_settings)
|
|
779
773
|
"""
|
|
780
774
|
|
|
781
|
-
def tag_resource(self, **kwargs: Unpack[
|
|
775
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
782
776
|
"""
|
|
783
777
|
Adds or overwrites one or more tags for the specified resource.
|
|
784
778
|
|
|
@@ -786,9 +780,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
786
780
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#tag_resource)
|
|
787
781
|
"""
|
|
788
782
|
|
|
789
|
-
def untag_resource(
|
|
790
|
-
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
791
|
-
) -> Dict[str, Any]:
|
|
783
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
792
784
|
"""
|
|
793
785
|
Removes one or more tags from the specified resource.
|
|
794
786
|
|
|
@@ -797,7 +789,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
797
789
|
"""
|
|
798
790
|
|
|
799
791
|
def update_browser_settings(
|
|
800
|
-
self, **kwargs: Unpack[
|
|
792
|
+
self, **kwargs: Unpack[UpdateBrowserSettingsRequestTypeDef]
|
|
801
793
|
) -> UpdateBrowserSettingsResponseTypeDef:
|
|
802
794
|
"""
|
|
803
795
|
Updates browser settings.
|
|
@@ -807,7 +799,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
807
799
|
"""
|
|
808
800
|
|
|
809
801
|
def update_data_protection_settings(
|
|
810
|
-
self, **kwargs: Unpack[
|
|
802
|
+
self, **kwargs: Unpack[UpdateDataProtectionSettingsRequestTypeDef]
|
|
811
803
|
) -> UpdateDataProtectionSettingsResponseTypeDef:
|
|
812
804
|
"""
|
|
813
805
|
Updates data protection settings.
|
|
@@ -817,7 +809,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
817
809
|
"""
|
|
818
810
|
|
|
819
811
|
def update_identity_provider(
|
|
820
|
-
self, **kwargs: Unpack[
|
|
812
|
+
self, **kwargs: Unpack[UpdateIdentityProviderRequestTypeDef]
|
|
821
813
|
) -> UpdateIdentityProviderResponseTypeDef:
|
|
822
814
|
"""
|
|
823
815
|
Updates the identity provider.
|
|
@@ -827,7 +819,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
827
819
|
"""
|
|
828
820
|
|
|
829
821
|
def update_ip_access_settings(
|
|
830
|
-
self, **kwargs: Unpack[
|
|
822
|
+
self, **kwargs: Unpack[UpdateIpAccessSettingsRequestTypeDef]
|
|
831
823
|
) -> UpdateIpAccessSettingsResponseTypeDef:
|
|
832
824
|
"""
|
|
833
825
|
Updates IP access settings.
|
|
@@ -837,7 +829,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
837
829
|
"""
|
|
838
830
|
|
|
839
831
|
def update_network_settings(
|
|
840
|
-
self, **kwargs: Unpack[
|
|
832
|
+
self, **kwargs: Unpack[UpdateNetworkSettingsRequestTypeDef]
|
|
841
833
|
) -> UpdateNetworkSettingsResponseTypeDef:
|
|
842
834
|
"""
|
|
843
835
|
Updates network settings.
|
|
@@ -847,7 +839,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
847
839
|
"""
|
|
848
840
|
|
|
849
841
|
def update_portal(
|
|
850
|
-
self, **kwargs: Unpack[
|
|
842
|
+
self, **kwargs: Unpack[UpdatePortalRequestTypeDef]
|
|
851
843
|
) -> UpdatePortalResponseTypeDef:
|
|
852
844
|
"""
|
|
853
845
|
Updates a web portal.
|
|
@@ -857,7 +849,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
857
849
|
"""
|
|
858
850
|
|
|
859
851
|
def update_trust_store(
|
|
860
|
-
self, **kwargs: Unpack[
|
|
852
|
+
self, **kwargs: Unpack[UpdateTrustStoreRequestTypeDef]
|
|
861
853
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
862
854
|
"""
|
|
863
855
|
Updates the trust store.
|
|
@@ -867,7 +859,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
867
859
|
"""
|
|
868
860
|
|
|
869
861
|
def update_user_access_logging_settings(
|
|
870
|
-
self, **kwargs: Unpack[
|
|
862
|
+
self, **kwargs: Unpack[UpdateUserAccessLoggingSettingsRequestTypeDef]
|
|
871
863
|
) -> UpdateUserAccessLoggingSettingsResponseTypeDef:
|
|
872
864
|
"""
|
|
873
865
|
Updates the user access logging settings.
|
|
@@ -877,7 +869,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
877
869
|
"""
|
|
878
870
|
|
|
879
871
|
def update_user_settings(
|
|
880
|
-
self, **kwargs: Unpack[
|
|
872
|
+
self, **kwargs: Unpack[UpdateUserSettingsRequestTypeDef]
|
|
881
873
|
) -> UpdateUserSettingsResponseTypeDef:
|
|
882
874
|
"""
|
|
883
875
|
Updates the user settings.
|