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