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