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 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
|
|
|
@@ -206,7 +206,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
206
206
|
"""
|
|
207
207
|
|
|
208
208
|
def associate_browser_settings(
|
|
209
|
-
self, **kwargs: Unpack[
|
|
209
|
+
self, **kwargs: Unpack[AssociateBrowserSettingsRequestTypeDef]
|
|
210
210
|
) -> AssociateBrowserSettingsResponseTypeDef:
|
|
211
211
|
"""
|
|
212
212
|
Associates a browser settings resource with a web portal.
|
|
@@ -216,7 +216,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
216
216
|
"""
|
|
217
217
|
|
|
218
218
|
def associate_data_protection_settings(
|
|
219
|
-
self, **kwargs: Unpack[
|
|
219
|
+
self, **kwargs: Unpack[AssociateDataProtectionSettingsRequestTypeDef]
|
|
220
220
|
) -> AssociateDataProtectionSettingsResponseTypeDef:
|
|
221
221
|
"""
|
|
222
222
|
Associates a data protection settings resource with a web portal.
|
|
@@ -226,7 +226,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
226
226
|
"""
|
|
227
227
|
|
|
228
228
|
def associate_ip_access_settings(
|
|
229
|
-
self, **kwargs: Unpack[
|
|
229
|
+
self, **kwargs: Unpack[AssociateIpAccessSettingsRequestTypeDef]
|
|
230
230
|
) -> AssociateIpAccessSettingsResponseTypeDef:
|
|
231
231
|
"""
|
|
232
232
|
Associates an IP access settings resource with a web portal.
|
|
@@ -236,7 +236,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
def associate_network_settings(
|
|
239
|
-
self, **kwargs: Unpack[
|
|
239
|
+
self, **kwargs: Unpack[AssociateNetworkSettingsRequestTypeDef]
|
|
240
240
|
) -> AssociateNetworkSettingsResponseTypeDef:
|
|
241
241
|
"""
|
|
242
242
|
Associates a network settings resource with a web portal.
|
|
@@ -246,7 +246,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
246
246
|
"""
|
|
247
247
|
|
|
248
248
|
def associate_trust_store(
|
|
249
|
-
self, **kwargs: Unpack[
|
|
249
|
+
self, **kwargs: Unpack[AssociateTrustStoreRequestTypeDef]
|
|
250
250
|
) -> AssociateTrustStoreResponseTypeDef:
|
|
251
251
|
"""
|
|
252
252
|
Associates a trust store with a web portal.
|
|
@@ -256,7 +256,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
256
256
|
"""
|
|
257
257
|
|
|
258
258
|
def associate_user_access_logging_settings(
|
|
259
|
-
self, **kwargs: Unpack[
|
|
259
|
+
self, **kwargs: Unpack[AssociateUserAccessLoggingSettingsRequestTypeDef]
|
|
260
260
|
) -> AssociateUserAccessLoggingSettingsResponseTypeDef:
|
|
261
261
|
"""
|
|
262
262
|
Associates a user access logging settings resource with a web portal.
|
|
@@ -266,7 +266,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
266
266
|
"""
|
|
267
267
|
|
|
268
268
|
def associate_user_settings(
|
|
269
|
-
self, **kwargs: Unpack[
|
|
269
|
+
self, **kwargs: Unpack[AssociateUserSettingsRequestTypeDef]
|
|
270
270
|
) -> AssociateUserSettingsResponseTypeDef:
|
|
271
271
|
"""
|
|
272
272
|
Associates a user settings resource with a web portal.
|
|
@@ -276,7 +276,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
276
276
|
"""
|
|
277
277
|
|
|
278
278
|
def create_browser_settings(
|
|
279
|
-
self, **kwargs: Unpack[
|
|
279
|
+
self, **kwargs: Unpack[CreateBrowserSettingsRequestTypeDef]
|
|
280
280
|
) -> CreateBrowserSettingsResponseTypeDef:
|
|
281
281
|
"""
|
|
282
282
|
Creates a browser settings resource that can be associated with a web portal.
|
|
@@ -286,7 +286,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
286
286
|
"""
|
|
287
287
|
|
|
288
288
|
def create_data_protection_settings(
|
|
289
|
-
self, **kwargs: Unpack[
|
|
289
|
+
self, **kwargs: Unpack[CreateDataProtectionSettingsRequestTypeDef]
|
|
290
290
|
) -> CreateDataProtectionSettingsResponseTypeDef:
|
|
291
291
|
"""
|
|
292
292
|
Creates a data protection settings resource that can be associated with a web
|
|
@@ -297,7 +297,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
297
297
|
"""
|
|
298
298
|
|
|
299
299
|
def create_identity_provider(
|
|
300
|
-
self, **kwargs: Unpack[
|
|
300
|
+
self, **kwargs: Unpack[CreateIdentityProviderRequestTypeDef]
|
|
301
301
|
) -> CreateIdentityProviderResponseTypeDef:
|
|
302
302
|
"""
|
|
303
303
|
Creates an identity provider resource that is then associated with a web portal.
|
|
@@ -307,7 +307,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
307
307
|
"""
|
|
308
308
|
|
|
309
309
|
def create_ip_access_settings(
|
|
310
|
-
self, **kwargs: Unpack[
|
|
310
|
+
self, **kwargs: Unpack[CreateIpAccessSettingsRequestTypeDef]
|
|
311
311
|
) -> CreateIpAccessSettingsResponseTypeDef:
|
|
312
312
|
"""
|
|
313
313
|
Creates an IP access settings resource that can be associated with a web portal.
|
|
@@ -317,7 +317,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
317
317
|
"""
|
|
318
318
|
|
|
319
319
|
def create_network_settings(
|
|
320
|
-
self, **kwargs: Unpack[
|
|
320
|
+
self, **kwargs: Unpack[CreateNetworkSettingsRequestTypeDef]
|
|
321
321
|
) -> CreateNetworkSettingsResponseTypeDef:
|
|
322
322
|
"""
|
|
323
323
|
Creates a network settings resource that can be associated with a web portal.
|
|
@@ -327,7 +327,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
327
327
|
"""
|
|
328
328
|
|
|
329
329
|
def create_portal(
|
|
330
|
-
self, **kwargs: Unpack[
|
|
330
|
+
self, **kwargs: Unpack[CreatePortalRequestTypeDef]
|
|
331
331
|
) -> CreatePortalResponseTypeDef:
|
|
332
332
|
"""
|
|
333
333
|
Creates a web portal.
|
|
@@ -337,7 +337,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
337
337
|
"""
|
|
338
338
|
|
|
339
339
|
def create_trust_store(
|
|
340
|
-
self, **kwargs: Unpack[
|
|
340
|
+
self, **kwargs: Unpack[CreateTrustStoreRequestTypeDef]
|
|
341
341
|
) -> CreateTrustStoreResponseTypeDef:
|
|
342
342
|
"""
|
|
343
343
|
Creates a trust store that can be associated with a web portal.
|
|
@@ -347,7 +347,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
347
347
|
"""
|
|
348
348
|
|
|
349
349
|
def create_user_access_logging_settings(
|
|
350
|
-
self, **kwargs: Unpack[
|
|
350
|
+
self, **kwargs: Unpack[CreateUserAccessLoggingSettingsRequestTypeDef]
|
|
351
351
|
) -> CreateUserAccessLoggingSettingsResponseTypeDef:
|
|
352
352
|
"""
|
|
353
353
|
Creates a user access logging settings resource that can be associated with a
|
|
@@ -358,7 +358,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
358
358
|
"""
|
|
359
359
|
|
|
360
360
|
def create_user_settings(
|
|
361
|
-
self, **kwargs: Unpack[
|
|
361
|
+
self, **kwargs: Unpack[CreateUserSettingsRequestTypeDef]
|
|
362
362
|
) -> CreateUserSettingsResponseTypeDef:
|
|
363
363
|
"""
|
|
364
364
|
Creates a user settings resource that can be associated with a web portal.
|
|
@@ -368,7 +368,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
368
368
|
"""
|
|
369
369
|
|
|
370
370
|
def delete_browser_settings(
|
|
371
|
-
self, **kwargs: Unpack[
|
|
371
|
+
self, **kwargs: Unpack[DeleteBrowserSettingsRequestTypeDef]
|
|
372
372
|
) -> Dict[str, Any]:
|
|
373
373
|
"""
|
|
374
374
|
Deletes browser settings.
|
|
@@ -378,7 +378,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
378
378
|
"""
|
|
379
379
|
|
|
380
380
|
def delete_data_protection_settings(
|
|
381
|
-
self, **kwargs: Unpack[
|
|
381
|
+
self, **kwargs: Unpack[DeleteDataProtectionSettingsRequestTypeDef]
|
|
382
382
|
) -> Dict[str, Any]:
|
|
383
383
|
"""
|
|
384
384
|
Deletes data protection settings.
|
|
@@ -388,7 +388,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
388
388
|
"""
|
|
389
389
|
|
|
390
390
|
def delete_identity_provider(
|
|
391
|
-
self, **kwargs: Unpack[
|
|
391
|
+
self, **kwargs: Unpack[DeleteIdentityProviderRequestTypeDef]
|
|
392
392
|
) -> Dict[str, Any]:
|
|
393
393
|
"""
|
|
394
394
|
Deletes the identity provider.
|
|
@@ -398,7 +398,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
398
398
|
"""
|
|
399
399
|
|
|
400
400
|
def delete_ip_access_settings(
|
|
401
|
-
self, **kwargs: Unpack[
|
|
401
|
+
self, **kwargs: Unpack[DeleteIpAccessSettingsRequestTypeDef]
|
|
402
402
|
) -> Dict[str, Any]:
|
|
403
403
|
"""
|
|
404
404
|
Deletes IP access settings.
|
|
@@ -408,7 +408,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
408
408
|
"""
|
|
409
409
|
|
|
410
410
|
def delete_network_settings(
|
|
411
|
-
self, **kwargs: Unpack[
|
|
411
|
+
self, **kwargs: Unpack[DeleteNetworkSettingsRequestTypeDef]
|
|
412
412
|
) -> Dict[str, Any]:
|
|
413
413
|
"""
|
|
414
414
|
Deletes network settings.
|
|
@@ -417,7 +417,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
417
417
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_network_settings)
|
|
418
418
|
"""
|
|
419
419
|
|
|
420
|
-
def delete_portal(self, **kwargs: Unpack[
|
|
420
|
+
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestTypeDef]) -> Dict[str, Any]:
|
|
421
421
|
"""
|
|
422
422
|
Deletes a web portal.
|
|
423
423
|
|
|
@@ -426,7 +426,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
426
426
|
"""
|
|
427
427
|
|
|
428
428
|
def delete_trust_store(
|
|
429
|
-
self, **kwargs: Unpack[
|
|
429
|
+
self, **kwargs: Unpack[DeleteTrustStoreRequestTypeDef]
|
|
430
430
|
) -> Dict[str, Any]:
|
|
431
431
|
"""
|
|
432
432
|
Deletes the trust store.
|
|
@@ -436,7 +436,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
436
436
|
"""
|
|
437
437
|
|
|
438
438
|
def delete_user_access_logging_settings(
|
|
439
|
-
self, **kwargs: Unpack[
|
|
439
|
+
self, **kwargs: Unpack[DeleteUserAccessLoggingSettingsRequestTypeDef]
|
|
440
440
|
) -> Dict[str, Any]:
|
|
441
441
|
"""
|
|
442
442
|
Deletes user access logging settings.
|
|
@@ -446,7 +446,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
446
446
|
"""
|
|
447
447
|
|
|
448
448
|
def delete_user_settings(
|
|
449
|
-
self, **kwargs: Unpack[
|
|
449
|
+
self, **kwargs: Unpack[DeleteUserSettingsRequestTypeDef]
|
|
450
450
|
) -> Dict[str, Any]:
|
|
451
451
|
"""
|
|
452
452
|
Deletes user settings.
|
|
@@ -456,7 +456,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
456
456
|
"""
|
|
457
457
|
|
|
458
458
|
def disassociate_browser_settings(
|
|
459
|
-
self, **kwargs: Unpack[
|
|
459
|
+
self, **kwargs: Unpack[DisassociateBrowserSettingsRequestTypeDef]
|
|
460
460
|
) -> Dict[str, Any]:
|
|
461
461
|
"""
|
|
462
462
|
Disassociates browser settings from a web portal.
|
|
@@ -466,7 +466,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
466
466
|
"""
|
|
467
467
|
|
|
468
468
|
def disassociate_data_protection_settings(
|
|
469
|
-
self, **kwargs: Unpack[
|
|
469
|
+
self, **kwargs: Unpack[DisassociateDataProtectionSettingsRequestTypeDef]
|
|
470
470
|
) -> Dict[str, Any]:
|
|
471
471
|
"""
|
|
472
472
|
Disassociates data protection settings from a web portal.
|
|
@@ -476,7 +476,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
476
476
|
"""
|
|
477
477
|
|
|
478
478
|
def disassociate_ip_access_settings(
|
|
479
|
-
self, **kwargs: Unpack[
|
|
479
|
+
self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestTypeDef]
|
|
480
480
|
) -> Dict[str, Any]:
|
|
481
481
|
"""
|
|
482
482
|
Disassociates IP access settings from a web portal.
|
|
@@ -486,7 +486,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
486
486
|
"""
|
|
487
487
|
|
|
488
488
|
def disassociate_network_settings(
|
|
489
|
-
self, **kwargs: Unpack[
|
|
489
|
+
self, **kwargs: Unpack[DisassociateNetworkSettingsRequestTypeDef]
|
|
490
490
|
) -> Dict[str, Any]:
|
|
491
491
|
"""
|
|
492
492
|
Disassociates network settings from a web portal.
|
|
@@ -496,7 +496,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
496
496
|
"""
|
|
497
497
|
|
|
498
498
|
def disassociate_trust_store(
|
|
499
|
-
self, **kwargs: Unpack[
|
|
499
|
+
self, **kwargs: Unpack[DisassociateTrustStoreRequestTypeDef]
|
|
500
500
|
) -> Dict[str, Any]:
|
|
501
501
|
"""
|
|
502
502
|
Disassociates a trust store from a web portal.
|
|
@@ -506,7 +506,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
506
506
|
"""
|
|
507
507
|
|
|
508
508
|
def disassociate_user_access_logging_settings(
|
|
509
|
-
self, **kwargs: Unpack[
|
|
509
|
+
self, **kwargs: Unpack[DisassociateUserAccessLoggingSettingsRequestTypeDef]
|
|
510
510
|
) -> Dict[str, Any]:
|
|
511
511
|
"""
|
|
512
512
|
Disassociates user access logging settings from a web portal.
|
|
@@ -516,7 +516,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
516
516
|
"""
|
|
517
517
|
|
|
518
518
|
def disassociate_user_settings(
|
|
519
|
-
self, **kwargs: Unpack[
|
|
519
|
+
self, **kwargs: Unpack[DisassociateUserSettingsRequestTypeDef]
|
|
520
520
|
) -> Dict[str, Any]:
|
|
521
521
|
"""
|
|
522
522
|
Disassociates user settings from a web portal.
|
|
@@ -525,9 +525,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
525
525
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_user_settings)
|
|
526
526
|
"""
|
|
527
527
|
|
|
528
|
-
def expire_session(
|
|
529
|
-
self, **kwargs: Unpack[ExpireSessionRequestRequestTypeDef]
|
|
530
|
-
) -> Dict[str, Any]:
|
|
528
|
+
def expire_session(self, **kwargs: Unpack[ExpireSessionRequestTypeDef]) -> Dict[str, Any]:
|
|
531
529
|
"""
|
|
532
530
|
Expires an active secure browser session.
|
|
533
531
|
|
|
@@ -536,7 +534,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
536
534
|
"""
|
|
537
535
|
|
|
538
536
|
def get_browser_settings(
|
|
539
|
-
self, **kwargs: Unpack[
|
|
537
|
+
self, **kwargs: Unpack[GetBrowserSettingsRequestTypeDef]
|
|
540
538
|
) -> GetBrowserSettingsResponseTypeDef:
|
|
541
539
|
"""
|
|
542
540
|
Gets browser settings.
|
|
@@ -546,7 +544,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
546
544
|
"""
|
|
547
545
|
|
|
548
546
|
def get_data_protection_settings(
|
|
549
|
-
self, **kwargs: Unpack[
|
|
547
|
+
self, **kwargs: Unpack[GetDataProtectionSettingsRequestTypeDef]
|
|
550
548
|
) -> GetDataProtectionSettingsResponseTypeDef:
|
|
551
549
|
"""
|
|
552
550
|
Gets the data protection settings.
|
|
@@ -556,7 +554,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
556
554
|
"""
|
|
557
555
|
|
|
558
556
|
def get_identity_provider(
|
|
559
|
-
self, **kwargs: Unpack[
|
|
557
|
+
self, **kwargs: Unpack[GetIdentityProviderRequestTypeDef]
|
|
560
558
|
) -> GetIdentityProviderResponseTypeDef:
|
|
561
559
|
"""
|
|
562
560
|
Gets the identity provider.
|
|
@@ -566,7 +564,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
566
564
|
"""
|
|
567
565
|
|
|
568
566
|
def get_ip_access_settings(
|
|
569
|
-
self, **kwargs: Unpack[
|
|
567
|
+
self, **kwargs: Unpack[GetIpAccessSettingsRequestTypeDef]
|
|
570
568
|
) -> GetIpAccessSettingsResponseTypeDef:
|
|
571
569
|
"""
|
|
572
570
|
Gets the IP access settings.
|
|
@@ -576,7 +574,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
576
574
|
"""
|
|
577
575
|
|
|
578
576
|
def get_network_settings(
|
|
579
|
-
self, **kwargs: Unpack[
|
|
577
|
+
self, **kwargs: Unpack[GetNetworkSettingsRequestTypeDef]
|
|
580
578
|
) -> GetNetworkSettingsResponseTypeDef:
|
|
581
579
|
"""
|
|
582
580
|
Gets the network settings.
|
|
@@ -585,9 +583,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
585
583
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_network_settings)
|
|
586
584
|
"""
|
|
587
585
|
|
|
588
|
-
def get_portal(
|
|
589
|
-
self, **kwargs: Unpack[GetPortalRequestRequestTypeDef]
|
|
590
|
-
) -> GetPortalResponseTypeDef:
|
|
586
|
+
def get_portal(self, **kwargs: Unpack[GetPortalRequestTypeDef]) -> GetPortalResponseTypeDef:
|
|
591
587
|
"""
|
|
592
588
|
Gets the web portal.
|
|
593
589
|
|
|
@@ -596,7 +592,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
596
592
|
"""
|
|
597
593
|
|
|
598
594
|
def get_portal_service_provider_metadata(
|
|
599
|
-
self, **kwargs: Unpack[
|
|
595
|
+
self, **kwargs: Unpack[GetPortalServiceProviderMetadataRequestTypeDef]
|
|
600
596
|
) -> GetPortalServiceProviderMetadataResponseTypeDef:
|
|
601
597
|
"""
|
|
602
598
|
Gets the service provider metadata.
|
|
@@ -605,9 +601,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
605
601
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_portal_service_provider_metadata)
|
|
606
602
|
"""
|
|
607
603
|
|
|
608
|
-
def get_session(
|
|
609
|
-
self, **kwargs: Unpack[GetSessionRequestRequestTypeDef]
|
|
610
|
-
) -> GetSessionResponseTypeDef:
|
|
604
|
+
def get_session(self, **kwargs: Unpack[GetSessionRequestTypeDef]) -> GetSessionResponseTypeDef:
|
|
611
605
|
"""
|
|
612
606
|
Gets information for a secure browser session.
|
|
613
607
|
|
|
@@ -616,7 +610,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
616
610
|
"""
|
|
617
611
|
|
|
618
612
|
def get_trust_store(
|
|
619
|
-
self, **kwargs: Unpack[
|
|
613
|
+
self, **kwargs: Unpack[GetTrustStoreRequestTypeDef]
|
|
620
614
|
) -> GetTrustStoreResponseTypeDef:
|
|
621
615
|
"""
|
|
622
616
|
Gets the trust store.
|
|
@@ -626,7 +620,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
626
620
|
"""
|
|
627
621
|
|
|
628
622
|
def get_trust_store_certificate(
|
|
629
|
-
self, **kwargs: Unpack[
|
|
623
|
+
self, **kwargs: Unpack[GetTrustStoreCertificateRequestTypeDef]
|
|
630
624
|
) -> GetTrustStoreCertificateResponseTypeDef:
|
|
631
625
|
"""
|
|
632
626
|
Gets the trust store certificate.
|
|
@@ -636,7 +630,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
636
630
|
"""
|
|
637
631
|
|
|
638
632
|
def get_user_access_logging_settings(
|
|
639
|
-
self, **kwargs: Unpack[
|
|
633
|
+
self, **kwargs: Unpack[GetUserAccessLoggingSettingsRequestTypeDef]
|
|
640
634
|
) -> GetUserAccessLoggingSettingsResponseTypeDef:
|
|
641
635
|
"""
|
|
642
636
|
Gets user access logging settings.
|
|
@@ -646,7 +640,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
646
640
|
"""
|
|
647
641
|
|
|
648
642
|
def get_user_settings(
|
|
649
|
-
self, **kwargs: Unpack[
|
|
643
|
+
self, **kwargs: Unpack[GetUserSettingsRequestTypeDef]
|
|
650
644
|
) -> GetUserSettingsResponseTypeDef:
|
|
651
645
|
"""
|
|
652
646
|
Gets user settings.
|
|
@@ -656,7 +650,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
656
650
|
"""
|
|
657
651
|
|
|
658
652
|
def list_browser_settings(
|
|
659
|
-
self, **kwargs: Unpack[
|
|
653
|
+
self, **kwargs: Unpack[ListBrowserSettingsRequestTypeDef]
|
|
660
654
|
) -> ListBrowserSettingsResponseTypeDef:
|
|
661
655
|
"""
|
|
662
656
|
Retrieves a list of browser settings.
|
|
@@ -666,7 +660,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
666
660
|
"""
|
|
667
661
|
|
|
668
662
|
def list_data_protection_settings(
|
|
669
|
-
self, **kwargs: Unpack[
|
|
663
|
+
self, **kwargs: Unpack[ListDataProtectionSettingsRequestTypeDef]
|
|
670
664
|
) -> ListDataProtectionSettingsResponseTypeDef:
|
|
671
665
|
"""
|
|
672
666
|
Retrieves a list of data protection settings.
|
|
@@ -676,7 +670,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
676
670
|
"""
|
|
677
671
|
|
|
678
672
|
def list_identity_providers(
|
|
679
|
-
self, **kwargs: Unpack[
|
|
673
|
+
self, **kwargs: Unpack[ListIdentityProvidersRequestTypeDef]
|
|
680
674
|
) -> ListIdentityProvidersResponseTypeDef:
|
|
681
675
|
"""
|
|
682
676
|
Retrieves a list of identity providers for a specific web portal.
|
|
@@ -686,7 +680,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
686
680
|
"""
|
|
687
681
|
|
|
688
682
|
def list_ip_access_settings(
|
|
689
|
-
self, **kwargs: Unpack[
|
|
683
|
+
self, **kwargs: Unpack[ListIpAccessSettingsRequestTypeDef]
|
|
690
684
|
) -> ListIpAccessSettingsResponseTypeDef:
|
|
691
685
|
"""
|
|
692
686
|
Retrieves a list of IP access settings.
|
|
@@ -696,7 +690,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
696
690
|
"""
|
|
697
691
|
|
|
698
692
|
def list_network_settings(
|
|
699
|
-
self, **kwargs: Unpack[
|
|
693
|
+
self, **kwargs: Unpack[ListNetworkSettingsRequestTypeDef]
|
|
700
694
|
) -> ListNetworkSettingsResponseTypeDef:
|
|
701
695
|
"""
|
|
702
696
|
Retrieves a list of network settings.
|
|
@@ -706,7 +700,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
706
700
|
"""
|
|
707
701
|
|
|
708
702
|
def list_portals(
|
|
709
|
-
self, **kwargs: Unpack[
|
|
703
|
+
self, **kwargs: Unpack[ListPortalsRequestTypeDef]
|
|
710
704
|
) -> ListPortalsResponseTypeDef:
|
|
711
705
|
"""
|
|
712
706
|
Retrieves a list or web portals.
|
|
@@ -716,7 +710,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
716
710
|
"""
|
|
717
711
|
|
|
718
712
|
def list_sessions(
|
|
719
|
-
self, **kwargs: Unpack[
|
|
713
|
+
self, **kwargs: Unpack[ListSessionsRequestTypeDef]
|
|
720
714
|
) -> ListSessionsResponseTypeDef:
|
|
721
715
|
"""
|
|
722
716
|
Lists information for multiple secure browser sessions from a specific portal.
|
|
@@ -726,7 +720,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
726
720
|
"""
|
|
727
721
|
|
|
728
722
|
def list_tags_for_resource(
|
|
729
|
-
self, **kwargs: Unpack[
|
|
723
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
730
724
|
) -> ListTagsForResourceResponseTypeDef:
|
|
731
725
|
"""
|
|
732
726
|
Retrieves a list of tags for a resource.
|
|
@@ -736,7 +730,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
736
730
|
"""
|
|
737
731
|
|
|
738
732
|
def list_trust_store_certificates(
|
|
739
|
-
self, **kwargs: Unpack[
|
|
733
|
+
self, **kwargs: Unpack[ListTrustStoreCertificatesRequestTypeDef]
|
|
740
734
|
) -> ListTrustStoreCertificatesResponseTypeDef:
|
|
741
735
|
"""
|
|
742
736
|
Retrieves a list of trust store certificates.
|
|
@@ -746,7 +740,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
746
740
|
"""
|
|
747
741
|
|
|
748
742
|
def list_trust_stores(
|
|
749
|
-
self, **kwargs: Unpack[
|
|
743
|
+
self, **kwargs: Unpack[ListTrustStoresRequestTypeDef]
|
|
750
744
|
) -> ListTrustStoresResponseTypeDef:
|
|
751
745
|
"""
|
|
752
746
|
Retrieves a list of trust stores.
|
|
@@ -756,7 +750,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
756
750
|
"""
|
|
757
751
|
|
|
758
752
|
def list_user_access_logging_settings(
|
|
759
|
-
self, **kwargs: Unpack[
|
|
753
|
+
self, **kwargs: Unpack[ListUserAccessLoggingSettingsRequestTypeDef]
|
|
760
754
|
) -> ListUserAccessLoggingSettingsResponseTypeDef:
|
|
761
755
|
"""
|
|
762
756
|
Retrieves a list of user access logging settings.
|
|
@@ -766,7 +760,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
766
760
|
"""
|
|
767
761
|
|
|
768
762
|
def list_user_settings(
|
|
769
|
-
self, **kwargs: Unpack[
|
|
763
|
+
self, **kwargs: Unpack[ListUserSettingsRequestTypeDef]
|
|
770
764
|
) -> ListUserSettingsResponseTypeDef:
|
|
771
765
|
"""
|
|
772
766
|
Retrieves a list of user settings.
|
|
@@ -775,7 +769,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
775
769
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_user_settings)
|
|
776
770
|
"""
|
|
777
771
|
|
|
778
|
-
def tag_resource(self, **kwargs: Unpack[
|
|
772
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
779
773
|
"""
|
|
780
774
|
Adds or overwrites one or more tags for the specified resource.
|
|
781
775
|
|
|
@@ -783,9 +777,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
783
777
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#tag_resource)
|
|
784
778
|
"""
|
|
785
779
|
|
|
786
|
-
def untag_resource(
|
|
787
|
-
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
788
|
-
) -> Dict[str, Any]:
|
|
780
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
789
781
|
"""
|
|
790
782
|
Removes one or more tags from the specified resource.
|
|
791
783
|
|
|
@@ -794,7 +786,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
794
786
|
"""
|
|
795
787
|
|
|
796
788
|
def update_browser_settings(
|
|
797
|
-
self, **kwargs: Unpack[
|
|
789
|
+
self, **kwargs: Unpack[UpdateBrowserSettingsRequestTypeDef]
|
|
798
790
|
) -> UpdateBrowserSettingsResponseTypeDef:
|
|
799
791
|
"""
|
|
800
792
|
Updates browser settings.
|
|
@@ -804,7 +796,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
804
796
|
"""
|
|
805
797
|
|
|
806
798
|
def update_data_protection_settings(
|
|
807
|
-
self, **kwargs: Unpack[
|
|
799
|
+
self, **kwargs: Unpack[UpdateDataProtectionSettingsRequestTypeDef]
|
|
808
800
|
) -> UpdateDataProtectionSettingsResponseTypeDef:
|
|
809
801
|
"""
|
|
810
802
|
Updates data protection settings.
|
|
@@ -814,7 +806,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
814
806
|
"""
|
|
815
807
|
|
|
816
808
|
def update_identity_provider(
|
|
817
|
-
self, **kwargs: Unpack[
|
|
809
|
+
self, **kwargs: Unpack[UpdateIdentityProviderRequestTypeDef]
|
|
818
810
|
) -> UpdateIdentityProviderResponseTypeDef:
|
|
819
811
|
"""
|
|
820
812
|
Updates the identity provider.
|
|
@@ -824,7 +816,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
824
816
|
"""
|
|
825
817
|
|
|
826
818
|
def update_ip_access_settings(
|
|
827
|
-
self, **kwargs: Unpack[
|
|
819
|
+
self, **kwargs: Unpack[UpdateIpAccessSettingsRequestTypeDef]
|
|
828
820
|
) -> UpdateIpAccessSettingsResponseTypeDef:
|
|
829
821
|
"""
|
|
830
822
|
Updates IP access settings.
|
|
@@ -834,7 +826,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
834
826
|
"""
|
|
835
827
|
|
|
836
828
|
def update_network_settings(
|
|
837
|
-
self, **kwargs: Unpack[
|
|
829
|
+
self, **kwargs: Unpack[UpdateNetworkSettingsRequestTypeDef]
|
|
838
830
|
) -> UpdateNetworkSettingsResponseTypeDef:
|
|
839
831
|
"""
|
|
840
832
|
Updates network settings.
|
|
@@ -844,7 +836,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
844
836
|
"""
|
|
845
837
|
|
|
846
838
|
def update_portal(
|
|
847
|
-
self, **kwargs: Unpack[
|
|
839
|
+
self, **kwargs: Unpack[UpdatePortalRequestTypeDef]
|
|
848
840
|
) -> UpdatePortalResponseTypeDef:
|
|
849
841
|
"""
|
|
850
842
|
Updates a web portal.
|
|
@@ -854,7 +846,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
854
846
|
"""
|
|
855
847
|
|
|
856
848
|
def update_trust_store(
|
|
857
|
-
self, **kwargs: Unpack[
|
|
849
|
+
self, **kwargs: Unpack[UpdateTrustStoreRequestTypeDef]
|
|
858
850
|
) -> UpdateTrustStoreResponseTypeDef:
|
|
859
851
|
"""
|
|
860
852
|
Updates the trust store.
|
|
@@ -864,7 +856,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
864
856
|
"""
|
|
865
857
|
|
|
866
858
|
def update_user_access_logging_settings(
|
|
867
|
-
self, **kwargs: Unpack[
|
|
859
|
+
self, **kwargs: Unpack[UpdateUserAccessLoggingSettingsRequestTypeDef]
|
|
868
860
|
) -> UpdateUserAccessLoggingSettingsResponseTypeDef:
|
|
869
861
|
"""
|
|
870
862
|
Updates the user access logging settings.
|
|
@@ -874,7 +866,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
874
866
|
"""
|
|
875
867
|
|
|
876
868
|
def update_user_settings(
|
|
877
|
-
self, **kwargs: Unpack[
|
|
869
|
+
self, **kwargs: Unpack[UpdateUserSettingsRequestTypeDef]
|
|
878
870
|
) -> UpdateUserSettingsResponseTypeDef:
|
|
879
871
|
"""
|
|
880
872
|
Updates the user settings.
|