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