mypy-boto3-workspaces-web 1.28.16__py3-none-any.whl → 1.28.36__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/__main__.py +3 -3
- mypy_boto3_workspaces_web/client.py +5 -0
- mypy_boto3_workspaces_web/client.pyi +5 -0
- mypy_boto3_workspaces_web/literals.py +1 -1
- mypy_boto3_workspaces_web/literals.pyi +1 -1
- mypy_boto3_workspaces_web/type_defs.py +295 -605
- mypy_boto3_workspaces_web/type_defs.pyi +295 -555
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.28.16.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/METADATA +13 -141
- mypy_boto3_workspaces_web-1.28.36.dist-info/RECORD +16 -0
- {mypy_boto3_workspaces_web-1.28.16.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.28.16.dist-info/RECORD +0 -16
- {mypy_boto3_workspaces_web-1.28.16.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.28.16.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/top_level.txt +0 -0
{mypy_boto3_workspaces_web-1.28.16.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-workspaces-web
|
|
3
|
-
Version: 1.28.
|
|
4
|
-
Summary: Type annotations for boto3.WorkSpacesWeb 1.28.
|
|
3
|
+
Version: 1.28.36
|
|
4
|
+
Summary: Type annotations for boto3.WorkSpacesWeb 1.28.36 service generated with mypy-boto3-builder 7.18.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -29,7 +29,7 @@ Classifier: Typing :: Typed
|
|
|
29
29
|
Requires-Python: >=3.7
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
31
31
|
License-File: LICENSE
|
|
32
|
-
Requires-Dist: typing-extensions
|
|
32
|
+
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
33
33
|
|
|
34
34
|
<a id="mypy-boto3-workspaces-web"></a>
|
|
35
35
|
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.WorkSpacesWeb 1.28.
|
|
46
|
+
[boto3.WorkSpacesWeb 1.28.36](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.18.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -280,19 +280,11 @@ client: WorkSpacesWebClient = Session().client("workspaces-web")
|
|
|
280
280
|
`mypy_boto3_workspaces_web.literals` module contains literals extracted from
|
|
281
281
|
shapes that can be used in user code for type checking.
|
|
282
282
|
|
|
283
|
+
Full list of `WorkSpacesWeb` Literals can be found in
|
|
284
|
+
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/literals/).
|
|
285
|
+
|
|
283
286
|
```python
|
|
284
|
-
from mypy_boto3_workspaces_web.literals import
|
|
285
|
-
AuthenticationTypeType,
|
|
286
|
-
BrowserTypeType,
|
|
287
|
-
EnabledTypeType,
|
|
288
|
-
IdentityProviderTypeType,
|
|
289
|
-
PortalStatusType,
|
|
290
|
-
RendererTypeType,
|
|
291
|
-
WorkSpacesWebServiceName,
|
|
292
|
-
ServiceName,
|
|
293
|
-
ResourceServiceName,
|
|
294
|
-
RegionName,
|
|
295
|
-
)
|
|
287
|
+
from mypy_boto3_workspaces_web.literals import AuthenticationTypeType
|
|
296
288
|
|
|
297
289
|
|
|
298
290
|
def check_value(value: AuthenticationTypeType) -> bool:
|
|
@@ -306,131 +298,11 @@ def check_value(value: AuthenticationTypeType) -> bool:
|
|
|
306
298
|
`mypy_boto3_workspaces_web.type_defs` module contains structures and shapes
|
|
307
299
|
assembled to typed dictionaries and unions for additional type checking.
|
|
308
300
|
|
|
301
|
+
Full list of `WorkSpacesWeb` TypeDefs can be found in
|
|
302
|
+
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/type_defs/).
|
|
303
|
+
|
|
309
304
|
```python
|
|
310
|
-
from mypy_boto3_workspaces_web.type_defs import
|
|
311
|
-
AssociateBrowserSettingsRequestRequestTypeDef,
|
|
312
|
-
ResponseMetadataTypeDef,
|
|
313
|
-
AssociateIpAccessSettingsRequestRequestTypeDef,
|
|
314
|
-
AssociateNetworkSettingsRequestRequestTypeDef,
|
|
315
|
-
AssociateTrustStoreRequestRequestTypeDef,
|
|
316
|
-
AssociateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
317
|
-
AssociateUserSettingsRequestRequestTypeDef,
|
|
318
|
-
BlobTypeDef,
|
|
319
|
-
BrowserSettingsSummaryTypeDef,
|
|
320
|
-
BrowserSettingsTypeDef,
|
|
321
|
-
CertificateSummaryTypeDef,
|
|
322
|
-
CertificateTypeDef,
|
|
323
|
-
TagTypeDef,
|
|
324
|
-
CreateIdentityProviderRequestRequestTypeDef,
|
|
325
|
-
IpRuleTypeDef,
|
|
326
|
-
DeleteBrowserSettingsRequestRequestTypeDef,
|
|
327
|
-
DeleteIdentityProviderRequestRequestTypeDef,
|
|
328
|
-
DeleteIpAccessSettingsRequestRequestTypeDef,
|
|
329
|
-
DeleteNetworkSettingsRequestRequestTypeDef,
|
|
330
|
-
DeletePortalRequestRequestTypeDef,
|
|
331
|
-
DeleteTrustStoreRequestRequestTypeDef,
|
|
332
|
-
DeleteUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
333
|
-
DeleteUserSettingsRequestRequestTypeDef,
|
|
334
|
-
DisassociateBrowserSettingsRequestRequestTypeDef,
|
|
335
|
-
DisassociateIpAccessSettingsRequestRequestTypeDef,
|
|
336
|
-
DisassociateNetworkSettingsRequestRequestTypeDef,
|
|
337
|
-
DisassociateTrustStoreRequestRequestTypeDef,
|
|
338
|
-
DisassociateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
339
|
-
DisassociateUserSettingsRequestRequestTypeDef,
|
|
340
|
-
GetBrowserSettingsRequestRequestTypeDef,
|
|
341
|
-
GetIdentityProviderRequestRequestTypeDef,
|
|
342
|
-
IdentityProviderTypeDef,
|
|
343
|
-
GetIpAccessSettingsRequestRequestTypeDef,
|
|
344
|
-
GetNetworkSettingsRequestRequestTypeDef,
|
|
345
|
-
NetworkSettingsTypeDef,
|
|
346
|
-
GetPortalRequestRequestTypeDef,
|
|
347
|
-
PortalTypeDef,
|
|
348
|
-
GetPortalServiceProviderMetadataRequestRequestTypeDef,
|
|
349
|
-
GetTrustStoreCertificateRequestRequestTypeDef,
|
|
350
|
-
GetTrustStoreRequestRequestTypeDef,
|
|
351
|
-
TrustStoreTypeDef,
|
|
352
|
-
GetUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
353
|
-
UserAccessLoggingSettingsTypeDef,
|
|
354
|
-
GetUserSettingsRequestRequestTypeDef,
|
|
355
|
-
UserSettingsTypeDef,
|
|
356
|
-
IdentityProviderSummaryTypeDef,
|
|
357
|
-
IpAccessSettingsSummaryTypeDef,
|
|
358
|
-
ListBrowserSettingsRequestRequestTypeDef,
|
|
359
|
-
ListIdentityProvidersRequestRequestTypeDef,
|
|
360
|
-
ListIpAccessSettingsRequestRequestTypeDef,
|
|
361
|
-
ListNetworkSettingsRequestRequestTypeDef,
|
|
362
|
-
NetworkSettingsSummaryTypeDef,
|
|
363
|
-
ListPortalsRequestRequestTypeDef,
|
|
364
|
-
PortalSummaryTypeDef,
|
|
365
|
-
ListTagsForResourceRequestRequestTypeDef,
|
|
366
|
-
ListTrustStoreCertificatesRequestRequestTypeDef,
|
|
367
|
-
ListTrustStoresRequestRequestTypeDef,
|
|
368
|
-
TrustStoreSummaryTypeDef,
|
|
369
|
-
ListUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
370
|
-
UserAccessLoggingSettingsSummaryTypeDef,
|
|
371
|
-
ListUserSettingsRequestRequestTypeDef,
|
|
372
|
-
UserSettingsSummaryTypeDef,
|
|
373
|
-
UntagResourceRequestRequestTypeDef,
|
|
374
|
-
UpdateBrowserSettingsRequestRequestTypeDef,
|
|
375
|
-
UpdateIdentityProviderRequestRequestTypeDef,
|
|
376
|
-
UpdateNetworkSettingsRequestRequestTypeDef,
|
|
377
|
-
UpdatePortalRequestRequestTypeDef,
|
|
378
|
-
UpdateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
379
|
-
UpdateUserSettingsRequestRequestTypeDef,
|
|
380
|
-
AssociateBrowserSettingsResponseTypeDef,
|
|
381
|
-
AssociateIpAccessSettingsResponseTypeDef,
|
|
382
|
-
AssociateNetworkSettingsResponseTypeDef,
|
|
383
|
-
AssociateTrustStoreResponseTypeDef,
|
|
384
|
-
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
385
|
-
AssociateUserSettingsResponseTypeDef,
|
|
386
|
-
CreateBrowserSettingsResponseTypeDef,
|
|
387
|
-
CreateIdentityProviderResponseTypeDef,
|
|
388
|
-
CreateIpAccessSettingsResponseTypeDef,
|
|
389
|
-
CreateNetworkSettingsResponseTypeDef,
|
|
390
|
-
CreatePortalResponseTypeDef,
|
|
391
|
-
CreateTrustStoreResponseTypeDef,
|
|
392
|
-
CreateUserAccessLoggingSettingsResponseTypeDef,
|
|
393
|
-
CreateUserSettingsResponseTypeDef,
|
|
394
|
-
GetPortalServiceProviderMetadataResponseTypeDef,
|
|
395
|
-
UpdateTrustStoreResponseTypeDef,
|
|
396
|
-
UpdateTrustStoreRequestRequestTypeDef,
|
|
397
|
-
ListBrowserSettingsResponseTypeDef,
|
|
398
|
-
GetBrowserSettingsResponseTypeDef,
|
|
399
|
-
UpdateBrowserSettingsResponseTypeDef,
|
|
400
|
-
ListTrustStoreCertificatesResponseTypeDef,
|
|
401
|
-
GetTrustStoreCertificateResponseTypeDef,
|
|
402
|
-
CreateBrowserSettingsRequestRequestTypeDef,
|
|
403
|
-
CreateNetworkSettingsRequestRequestTypeDef,
|
|
404
|
-
CreatePortalRequestRequestTypeDef,
|
|
405
|
-
CreateTrustStoreRequestRequestTypeDef,
|
|
406
|
-
CreateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
407
|
-
CreateUserSettingsRequestRequestTypeDef,
|
|
408
|
-
ListTagsForResourceResponseTypeDef,
|
|
409
|
-
TagResourceRequestRequestTypeDef,
|
|
410
|
-
CreateIpAccessSettingsRequestRequestTypeDef,
|
|
411
|
-
IpAccessSettingsTypeDef,
|
|
412
|
-
UpdateIpAccessSettingsRequestRequestTypeDef,
|
|
413
|
-
GetIdentityProviderResponseTypeDef,
|
|
414
|
-
UpdateIdentityProviderResponseTypeDef,
|
|
415
|
-
GetNetworkSettingsResponseTypeDef,
|
|
416
|
-
UpdateNetworkSettingsResponseTypeDef,
|
|
417
|
-
GetPortalResponseTypeDef,
|
|
418
|
-
UpdatePortalResponseTypeDef,
|
|
419
|
-
GetTrustStoreResponseTypeDef,
|
|
420
|
-
GetUserAccessLoggingSettingsResponseTypeDef,
|
|
421
|
-
UpdateUserAccessLoggingSettingsResponseTypeDef,
|
|
422
|
-
GetUserSettingsResponseTypeDef,
|
|
423
|
-
UpdateUserSettingsResponseTypeDef,
|
|
424
|
-
ListIdentityProvidersResponseTypeDef,
|
|
425
|
-
ListIpAccessSettingsResponseTypeDef,
|
|
426
|
-
ListNetworkSettingsResponseTypeDef,
|
|
427
|
-
ListPortalsResponseTypeDef,
|
|
428
|
-
ListTrustStoresResponseTypeDef,
|
|
429
|
-
ListUserAccessLoggingSettingsResponseTypeDef,
|
|
430
|
-
ListUserSettingsResponseTypeDef,
|
|
431
|
-
GetIpAccessSettingsResponseTypeDef,
|
|
432
|
-
UpdateIpAccessSettingsResponseTypeDef,
|
|
433
|
-
)
|
|
305
|
+
from mypy_boto3_workspaces_web.type_defs import AssociateBrowserSettingsRequestRequestTypeDef
|
|
434
306
|
|
|
435
307
|
|
|
436
308
|
def get_value() -> AssociateBrowserSettingsRequestRequestTypeDef:
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_workspaces_web/__init__.py,sha256=TLFSkH6ozzTHeXVvV_C2WAVbKnoHgGv5jjxGT_x94bo,424
|
|
2
|
+
mypy_boto3_workspaces_web/__init__.pyi,sha256=7L_xIWh-ihCKqEHDJauXGx-KcoPhBYuQiduaqThFaFs,423
|
|
3
|
+
mypy_boto3_workspaces_web/__main__.py,sha256=eFAIqYWhl-H-vF0lc7nN4xJORqI6NJqFo15Kh99vJgE,933
|
|
4
|
+
mypy_boto3_workspaces_web/client.py,sha256=Ab9D3FQgxieUp9u6223L3PRfXQNDcqrDrp8hveWTaCY,38206
|
|
5
|
+
mypy_boto3_workspaces_web/client.pyi,sha256=NlJoxt1sHoHAsgKoEM5XRHX4rWOtONTWXUv_S0E5TsY,38142
|
|
6
|
+
mypy_boto3_workspaces_web/literals.py,sha256=5c-aW9qE1C1Hf7TssaHVJkR3GLZ8k--HTl9wfQnTSHA,8418
|
|
7
|
+
mypy_boto3_workspaces_web/literals.pyi,sha256=gbTOQkMpIrhfoC2IPhLqj2_MiH_r_Jz5rUirollspvQ,8416
|
|
8
|
+
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_workspaces_web/type_defs.py,sha256=NIA8O8QOBErmWpMOp1PB1pQV5qRjuOFMF6ltnI0uWlw,36228
|
|
10
|
+
mypy_boto3_workspaces_web/type_defs.pyi,sha256=ca60LeoBWpQnXdm_nVUaYS1WytNetvHmT1QQG-nssaM,36227
|
|
11
|
+
mypy_boto3_workspaces_web/version.py,sha256=TdNWFUlWkV5vJyEpme0YDjjJMYoshLhRdAlC_WfMfAo,61
|
|
12
|
+
mypy_boto3_workspaces_web-1.28.36.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
+
mypy_boto3_workspaces_web-1.28.36.dist-info/METADATA,sha256=cZKRDry2vLU67DLjGQFRFA-VCKHTa0XyQogUp0EKSFg,12479
|
|
14
|
+
mypy_boto3_workspaces_web-1.28.36.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
15
|
+
mypy_boto3_workspaces_web-1.28.36.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
+
mypy_boto3_workspaces_web-1.28.36.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_workspaces_web/__init__.py,sha256=TLFSkH6ozzTHeXVvV_C2WAVbKnoHgGv5jjxGT_x94bo,424
|
|
2
|
-
mypy_boto3_workspaces_web/__init__.pyi,sha256=7L_xIWh-ihCKqEHDJauXGx-KcoPhBYuQiduaqThFaFs,423
|
|
3
|
-
mypy_boto3_workspaces_web/__main__.py,sha256=r6ApxYq5Cp9UB7VDKIhpSEb7dmDZtULNH3lNt1Rju1A,933
|
|
4
|
-
mypy_boto3_workspaces_web/client.py,sha256=uJvrerN6rd4b4oPyb4MvREm31U3tIytFFaI5Z1rHZOU,37872
|
|
5
|
-
mypy_boto3_workspaces_web/client.pyi,sha256=oS4AVJtw6ZKagtasdlCzbkZQFRIl1s_wgmFnjM-JItg,37808
|
|
6
|
-
mypy_boto3_workspaces_web/literals.py,sha256=tVyTQvg7GF8ZYP3UfDHfNsljPuLG1xgOXwDdaUUaPjQ,8417
|
|
7
|
-
mypy_boto3_workspaces_web/literals.pyi,sha256=NCYNdhUmw_wE8Iy-74-3hBYbTS0U0lm5-B-_zElF4wc,8415
|
|
8
|
-
mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_workspaces_web/type_defs.py,sha256=8tx56z6e15XBZRj6P1oaPTB5wxd41UKCZuTLA8L446w,41319
|
|
10
|
-
mypy_boto3_workspaces_web/type_defs.pyi,sha256=0a97HqGx8TaCgPW0E2XZhO1hhx07z9q6ooa6x11rKJU,41268
|
|
11
|
-
mypy_boto3_workspaces_web/version.py,sha256=U4Nyk6u0IVhAYJrhlcsuZD7DSN47rKXZPJeLZmksuE0,61
|
|
12
|
-
mypy_boto3_workspaces_web-1.28.16.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
-
mypy_boto3_workspaces_web-1.28.16.dist-info/METADATA,sha256=HUaWHdv1TJwEMBGMQvITf_BnDW4CYEDQEqCVDF8q5oU,17520
|
|
14
|
-
mypy_boto3_workspaces_web-1.28.16.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
15
|
-
mypy_boto3_workspaces_web-1.28.16.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
|
|
16
|
-
mypy_boto3_workspaces_web-1.28.16.dist-info/RECORD,,
|
{mypy_boto3_workspaces_web-1.28.16.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|