types-boto3-workspaces-web 1.40.0__py3-none-any.whl → 1.40.73__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.
- types_boto3_workspaces_web/__main__.py +4 -4
- types_boto3_workspaces_web/client.py +31 -36
- types_boto3_workspaces_web/client.pyi +31 -36
- types_boto3_workspaces_web/literals.py +36 -20
- types_boto3_workspaces_web/literals.pyi +36 -20
- types_boto3_workspaces_web/type_defs.py +92 -75
- types_boto3_workspaces_web/type_defs.pyi +87 -72
- types_boto3_workspaces_web/version.py +1 -1
- {types_boto3_workspaces_web-1.40.0.dist-info → types_boto3_workspaces_web-1.40.73.dist-info}/METADATA +11 -25
- types_boto3_workspaces_web-1.40.73.dist-info/RECORD +18 -0
- types_boto3_workspaces_web-1.40.0.dist-info/RECORD +0 -18
- {types_boto3_workspaces_web-1.40.0.dist-info → types_boto3_workspaces_web-1.40.73.dist-info}/WHEEL +0 -0
- {types_boto3_workspaces_web-1.40.0.dist-info → types_boto3_workspaces_web-1.40.73.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_workspaces_web-1.40.0.dist-info → types_boto3_workspaces_web-1.40.73.dist-info}/top_level.txt +0 -0
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 WorkSpacesWeb 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 WorkSpacesWeb 1.40.73\n"
|
|
16
|
+
"Version: 1.40.73\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#workspacesweb\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.73\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -162,12 +163,6 @@ from .type_defs import (
|
|
|
162
163
|
UpdateUserSettingsResponseTypeDef,
|
|
163
164
|
)
|
|
164
165
|
|
|
165
|
-
if sys.version_info >= (3, 9):
|
|
166
|
-
from builtins import dict as Dict
|
|
167
|
-
from builtins import type as Type
|
|
168
|
-
from collections.abc import Mapping
|
|
169
|
-
else:
|
|
170
|
-
from typing import Dict, Mapping, Type
|
|
171
166
|
if sys.version_info >= (3, 12):
|
|
172
167
|
from typing import Literal, Unpack
|
|
173
168
|
else:
|
|
@@ -178,15 +173,15 @@ __all__ = ("WorkSpacesWebClient",)
|
|
|
178
173
|
|
|
179
174
|
|
|
180
175
|
class Exceptions(BaseClientExceptions):
|
|
181
|
-
AccessDeniedException:
|
|
182
|
-
ClientError:
|
|
183
|
-
ConflictException:
|
|
184
|
-
InternalServerException:
|
|
185
|
-
ResourceNotFoundException:
|
|
186
|
-
ServiceQuotaExceededException:
|
|
187
|
-
ThrottlingException:
|
|
188
|
-
TooManyTagsException:
|
|
189
|
-
ValidationException:
|
|
176
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
177
|
+
ClientError: type[BotocoreClientError]
|
|
178
|
+
ConflictException: type[BotocoreClientError]
|
|
179
|
+
InternalServerException: type[BotocoreClientError]
|
|
180
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
181
|
+
ServiceQuotaExceededException: type[BotocoreClientError]
|
|
182
|
+
ThrottlingException: type[BotocoreClientError]
|
|
183
|
+
TooManyTagsException: type[BotocoreClientError]
|
|
184
|
+
ValidationException: type[BotocoreClientError]
|
|
190
185
|
|
|
191
186
|
|
|
192
187
|
class WorkSpacesWebClient(BaseClient):
|
|
@@ -408,7 +403,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
408
403
|
|
|
409
404
|
def delete_browser_settings(
|
|
410
405
|
self, **kwargs: Unpack[DeleteBrowserSettingsRequestTypeDef]
|
|
411
|
-
) ->
|
|
406
|
+
) -> dict[str, Any]:
|
|
412
407
|
"""
|
|
413
408
|
Deletes browser settings.
|
|
414
409
|
|
|
@@ -418,7 +413,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
418
413
|
|
|
419
414
|
def delete_data_protection_settings(
|
|
420
415
|
self, **kwargs: Unpack[DeleteDataProtectionSettingsRequestTypeDef]
|
|
421
|
-
) ->
|
|
416
|
+
) -> dict[str, Any]:
|
|
422
417
|
"""
|
|
423
418
|
Deletes data protection settings.
|
|
424
419
|
|
|
@@ -428,7 +423,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
428
423
|
|
|
429
424
|
def delete_identity_provider(
|
|
430
425
|
self, **kwargs: Unpack[DeleteIdentityProviderRequestTypeDef]
|
|
431
|
-
) ->
|
|
426
|
+
) -> dict[str, Any]:
|
|
432
427
|
"""
|
|
433
428
|
Deletes the identity provider.
|
|
434
429
|
|
|
@@ -438,7 +433,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
438
433
|
|
|
439
434
|
def delete_ip_access_settings(
|
|
440
435
|
self, **kwargs: Unpack[DeleteIpAccessSettingsRequestTypeDef]
|
|
441
|
-
) ->
|
|
436
|
+
) -> dict[str, Any]:
|
|
442
437
|
"""
|
|
443
438
|
Deletes IP access settings.
|
|
444
439
|
|
|
@@ -448,7 +443,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
448
443
|
|
|
449
444
|
def delete_network_settings(
|
|
450
445
|
self, **kwargs: Unpack[DeleteNetworkSettingsRequestTypeDef]
|
|
451
|
-
) ->
|
|
446
|
+
) -> dict[str, Any]:
|
|
452
447
|
"""
|
|
453
448
|
Deletes network settings.
|
|
454
449
|
|
|
@@ -456,7 +451,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
456
451
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_network_settings)
|
|
457
452
|
"""
|
|
458
453
|
|
|
459
|
-
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestTypeDef]) ->
|
|
454
|
+
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestTypeDef]) -> dict[str, Any]:
|
|
460
455
|
"""
|
|
461
456
|
Deletes a web portal.
|
|
462
457
|
|
|
@@ -466,7 +461,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
466
461
|
|
|
467
462
|
def delete_session_logger(
|
|
468
463
|
self, **kwargs: Unpack[DeleteSessionLoggerRequestTypeDef]
|
|
469
|
-
) ->
|
|
464
|
+
) -> dict[str, Any]:
|
|
470
465
|
"""
|
|
471
466
|
Deletes a session logger resource.
|
|
472
467
|
|
|
@@ -476,7 +471,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
476
471
|
|
|
477
472
|
def delete_trust_store(
|
|
478
473
|
self, **kwargs: Unpack[DeleteTrustStoreRequestTypeDef]
|
|
479
|
-
) ->
|
|
474
|
+
) -> dict[str, Any]:
|
|
480
475
|
"""
|
|
481
476
|
Deletes the trust store.
|
|
482
477
|
|
|
@@ -486,7 +481,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
486
481
|
|
|
487
482
|
def delete_user_access_logging_settings(
|
|
488
483
|
self, **kwargs: Unpack[DeleteUserAccessLoggingSettingsRequestTypeDef]
|
|
489
|
-
) ->
|
|
484
|
+
) -> dict[str, Any]:
|
|
490
485
|
"""
|
|
491
486
|
Deletes user access logging settings.
|
|
492
487
|
|
|
@@ -496,7 +491,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
496
491
|
|
|
497
492
|
def delete_user_settings(
|
|
498
493
|
self, **kwargs: Unpack[DeleteUserSettingsRequestTypeDef]
|
|
499
|
-
) ->
|
|
494
|
+
) -> dict[str, Any]:
|
|
500
495
|
"""
|
|
501
496
|
Deletes user settings.
|
|
502
497
|
|
|
@@ -506,7 +501,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
506
501
|
|
|
507
502
|
def disassociate_browser_settings(
|
|
508
503
|
self, **kwargs: Unpack[DisassociateBrowserSettingsRequestTypeDef]
|
|
509
|
-
) ->
|
|
504
|
+
) -> dict[str, Any]:
|
|
510
505
|
"""
|
|
511
506
|
Disassociates browser settings from a web portal.
|
|
512
507
|
|
|
@@ -516,7 +511,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
516
511
|
|
|
517
512
|
def disassociate_data_protection_settings(
|
|
518
513
|
self, **kwargs: Unpack[DisassociateDataProtectionSettingsRequestTypeDef]
|
|
519
|
-
) ->
|
|
514
|
+
) -> dict[str, Any]:
|
|
520
515
|
"""
|
|
521
516
|
Disassociates data protection settings from a web portal.
|
|
522
517
|
|
|
@@ -526,7 +521,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
526
521
|
|
|
527
522
|
def disassociate_ip_access_settings(
|
|
528
523
|
self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestTypeDef]
|
|
529
|
-
) ->
|
|
524
|
+
) -> dict[str, Any]:
|
|
530
525
|
"""
|
|
531
526
|
Disassociates IP access settings from a web portal.
|
|
532
527
|
|
|
@@ -536,7 +531,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
536
531
|
|
|
537
532
|
def disassociate_network_settings(
|
|
538
533
|
self, **kwargs: Unpack[DisassociateNetworkSettingsRequestTypeDef]
|
|
539
|
-
) ->
|
|
534
|
+
) -> dict[str, Any]:
|
|
540
535
|
"""
|
|
541
536
|
Disassociates network settings from a web portal.
|
|
542
537
|
|
|
@@ -546,7 +541,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
546
541
|
|
|
547
542
|
def disassociate_session_logger(
|
|
548
543
|
self, **kwargs: Unpack[DisassociateSessionLoggerRequestTypeDef]
|
|
549
|
-
) ->
|
|
544
|
+
) -> dict[str, Any]:
|
|
550
545
|
"""
|
|
551
546
|
Disassociates a session logger from a portal.
|
|
552
547
|
|
|
@@ -556,7 +551,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
556
551
|
|
|
557
552
|
def disassociate_trust_store(
|
|
558
553
|
self, **kwargs: Unpack[DisassociateTrustStoreRequestTypeDef]
|
|
559
|
-
) ->
|
|
554
|
+
) -> dict[str, Any]:
|
|
560
555
|
"""
|
|
561
556
|
Disassociates a trust store from a web portal.
|
|
562
557
|
|
|
@@ -566,7 +561,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
566
561
|
|
|
567
562
|
def disassociate_user_access_logging_settings(
|
|
568
563
|
self, **kwargs: Unpack[DisassociateUserAccessLoggingSettingsRequestTypeDef]
|
|
569
|
-
) ->
|
|
564
|
+
) -> dict[str, Any]:
|
|
570
565
|
"""
|
|
571
566
|
Disassociates user access logging settings from a web portal.
|
|
572
567
|
|
|
@@ -576,7 +571,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
576
571
|
|
|
577
572
|
def disassociate_user_settings(
|
|
578
573
|
self, **kwargs: Unpack[DisassociateUserSettingsRequestTypeDef]
|
|
579
|
-
) ->
|
|
574
|
+
) -> dict[str, Any]:
|
|
580
575
|
"""
|
|
581
576
|
Disassociates user settings from a web portal.
|
|
582
577
|
|
|
@@ -584,7 +579,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
584
579
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_user_settings)
|
|
585
580
|
"""
|
|
586
581
|
|
|
587
|
-
def expire_session(self, **kwargs: Unpack[ExpireSessionRequestTypeDef]) ->
|
|
582
|
+
def expire_session(self, **kwargs: Unpack[ExpireSessionRequestTypeDef]) -> dict[str, Any]:
|
|
588
583
|
"""
|
|
589
584
|
Expires an active secure browser session.
|
|
590
585
|
|
|
@@ -848,7 +843,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
848
843
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_user_settings)
|
|
849
844
|
"""
|
|
850
845
|
|
|
851
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) ->
|
|
846
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
852
847
|
"""
|
|
853
848
|
Adds or overwrites one or more tags for the specified resource.
|
|
854
849
|
|
|
@@ -856,7 +851,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
856
851
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#tag_resource)
|
|
857
852
|
"""
|
|
858
853
|
|
|
859
|
-
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) ->
|
|
854
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
860
855
|
"""
|
|
861
856
|
Removes one or more tags from the specified resource.
|
|
862
857
|
|
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -162,12 +163,6 @@ from .type_defs import (
|
|
|
162
163
|
UpdateUserSettingsResponseTypeDef,
|
|
163
164
|
)
|
|
164
165
|
|
|
165
|
-
if sys.version_info >= (3, 9):
|
|
166
|
-
from builtins import dict as Dict
|
|
167
|
-
from builtins import type as Type
|
|
168
|
-
from collections.abc import Mapping
|
|
169
|
-
else:
|
|
170
|
-
from typing import Dict, Mapping, Type
|
|
171
166
|
if sys.version_info >= (3, 12):
|
|
172
167
|
from typing import Literal, Unpack
|
|
173
168
|
else:
|
|
@@ -176,15 +171,15 @@ else:
|
|
|
176
171
|
__all__ = ("WorkSpacesWebClient",)
|
|
177
172
|
|
|
178
173
|
class Exceptions(BaseClientExceptions):
|
|
179
|
-
AccessDeniedException:
|
|
180
|
-
ClientError:
|
|
181
|
-
ConflictException:
|
|
182
|
-
InternalServerException:
|
|
183
|
-
ResourceNotFoundException:
|
|
184
|
-
ServiceQuotaExceededException:
|
|
185
|
-
ThrottlingException:
|
|
186
|
-
TooManyTagsException:
|
|
187
|
-
ValidationException:
|
|
174
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
175
|
+
ClientError: type[BotocoreClientError]
|
|
176
|
+
ConflictException: type[BotocoreClientError]
|
|
177
|
+
InternalServerException: type[BotocoreClientError]
|
|
178
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
179
|
+
ServiceQuotaExceededException: type[BotocoreClientError]
|
|
180
|
+
ThrottlingException: type[BotocoreClientError]
|
|
181
|
+
TooManyTagsException: type[BotocoreClientError]
|
|
182
|
+
ValidationException: type[BotocoreClientError]
|
|
188
183
|
|
|
189
184
|
class WorkSpacesWebClient(BaseClient):
|
|
190
185
|
"""
|
|
@@ -405,7 +400,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
405
400
|
|
|
406
401
|
def delete_browser_settings(
|
|
407
402
|
self, **kwargs: Unpack[DeleteBrowserSettingsRequestTypeDef]
|
|
408
|
-
) ->
|
|
403
|
+
) -> dict[str, Any]:
|
|
409
404
|
"""
|
|
410
405
|
Deletes browser settings.
|
|
411
406
|
|
|
@@ -415,7 +410,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
415
410
|
|
|
416
411
|
def delete_data_protection_settings(
|
|
417
412
|
self, **kwargs: Unpack[DeleteDataProtectionSettingsRequestTypeDef]
|
|
418
|
-
) ->
|
|
413
|
+
) -> dict[str, Any]:
|
|
419
414
|
"""
|
|
420
415
|
Deletes data protection settings.
|
|
421
416
|
|
|
@@ -425,7 +420,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
425
420
|
|
|
426
421
|
def delete_identity_provider(
|
|
427
422
|
self, **kwargs: Unpack[DeleteIdentityProviderRequestTypeDef]
|
|
428
|
-
) ->
|
|
423
|
+
) -> dict[str, Any]:
|
|
429
424
|
"""
|
|
430
425
|
Deletes the identity provider.
|
|
431
426
|
|
|
@@ -435,7 +430,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
435
430
|
|
|
436
431
|
def delete_ip_access_settings(
|
|
437
432
|
self, **kwargs: Unpack[DeleteIpAccessSettingsRequestTypeDef]
|
|
438
|
-
) ->
|
|
433
|
+
) -> dict[str, Any]:
|
|
439
434
|
"""
|
|
440
435
|
Deletes IP access settings.
|
|
441
436
|
|
|
@@ -445,7 +440,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
445
440
|
|
|
446
441
|
def delete_network_settings(
|
|
447
442
|
self, **kwargs: Unpack[DeleteNetworkSettingsRequestTypeDef]
|
|
448
|
-
) ->
|
|
443
|
+
) -> dict[str, Any]:
|
|
449
444
|
"""
|
|
450
445
|
Deletes network settings.
|
|
451
446
|
|
|
@@ -453,7 +448,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
453
448
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_network_settings)
|
|
454
449
|
"""
|
|
455
450
|
|
|
456
|
-
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestTypeDef]) ->
|
|
451
|
+
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestTypeDef]) -> dict[str, Any]:
|
|
457
452
|
"""
|
|
458
453
|
Deletes a web portal.
|
|
459
454
|
|
|
@@ -463,7 +458,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
463
458
|
|
|
464
459
|
def delete_session_logger(
|
|
465
460
|
self, **kwargs: Unpack[DeleteSessionLoggerRequestTypeDef]
|
|
466
|
-
) ->
|
|
461
|
+
) -> dict[str, Any]:
|
|
467
462
|
"""
|
|
468
463
|
Deletes a session logger resource.
|
|
469
464
|
|
|
@@ -473,7 +468,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
473
468
|
|
|
474
469
|
def delete_trust_store(
|
|
475
470
|
self, **kwargs: Unpack[DeleteTrustStoreRequestTypeDef]
|
|
476
|
-
) ->
|
|
471
|
+
) -> dict[str, Any]:
|
|
477
472
|
"""
|
|
478
473
|
Deletes the trust store.
|
|
479
474
|
|
|
@@ -483,7 +478,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
483
478
|
|
|
484
479
|
def delete_user_access_logging_settings(
|
|
485
480
|
self, **kwargs: Unpack[DeleteUserAccessLoggingSettingsRequestTypeDef]
|
|
486
|
-
) ->
|
|
481
|
+
) -> dict[str, Any]:
|
|
487
482
|
"""
|
|
488
483
|
Deletes user access logging settings.
|
|
489
484
|
|
|
@@ -493,7 +488,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
493
488
|
|
|
494
489
|
def delete_user_settings(
|
|
495
490
|
self, **kwargs: Unpack[DeleteUserSettingsRequestTypeDef]
|
|
496
|
-
) ->
|
|
491
|
+
) -> dict[str, Any]:
|
|
497
492
|
"""
|
|
498
493
|
Deletes user settings.
|
|
499
494
|
|
|
@@ -503,7 +498,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
503
498
|
|
|
504
499
|
def disassociate_browser_settings(
|
|
505
500
|
self, **kwargs: Unpack[DisassociateBrowserSettingsRequestTypeDef]
|
|
506
|
-
) ->
|
|
501
|
+
) -> dict[str, Any]:
|
|
507
502
|
"""
|
|
508
503
|
Disassociates browser settings from a web portal.
|
|
509
504
|
|
|
@@ -513,7 +508,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
513
508
|
|
|
514
509
|
def disassociate_data_protection_settings(
|
|
515
510
|
self, **kwargs: Unpack[DisassociateDataProtectionSettingsRequestTypeDef]
|
|
516
|
-
) ->
|
|
511
|
+
) -> dict[str, Any]:
|
|
517
512
|
"""
|
|
518
513
|
Disassociates data protection settings from a web portal.
|
|
519
514
|
|
|
@@ -523,7 +518,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
523
518
|
|
|
524
519
|
def disassociate_ip_access_settings(
|
|
525
520
|
self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestTypeDef]
|
|
526
|
-
) ->
|
|
521
|
+
) -> dict[str, Any]:
|
|
527
522
|
"""
|
|
528
523
|
Disassociates IP access settings from a web portal.
|
|
529
524
|
|
|
@@ -533,7 +528,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
533
528
|
|
|
534
529
|
def disassociate_network_settings(
|
|
535
530
|
self, **kwargs: Unpack[DisassociateNetworkSettingsRequestTypeDef]
|
|
536
|
-
) ->
|
|
531
|
+
) -> dict[str, Any]:
|
|
537
532
|
"""
|
|
538
533
|
Disassociates network settings from a web portal.
|
|
539
534
|
|
|
@@ -543,7 +538,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
543
538
|
|
|
544
539
|
def disassociate_session_logger(
|
|
545
540
|
self, **kwargs: Unpack[DisassociateSessionLoggerRequestTypeDef]
|
|
546
|
-
) ->
|
|
541
|
+
) -> dict[str, Any]:
|
|
547
542
|
"""
|
|
548
543
|
Disassociates a session logger from a portal.
|
|
549
544
|
|
|
@@ -553,7 +548,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
553
548
|
|
|
554
549
|
def disassociate_trust_store(
|
|
555
550
|
self, **kwargs: Unpack[DisassociateTrustStoreRequestTypeDef]
|
|
556
|
-
) ->
|
|
551
|
+
) -> dict[str, Any]:
|
|
557
552
|
"""
|
|
558
553
|
Disassociates a trust store from a web portal.
|
|
559
554
|
|
|
@@ -563,7 +558,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
563
558
|
|
|
564
559
|
def disassociate_user_access_logging_settings(
|
|
565
560
|
self, **kwargs: Unpack[DisassociateUserAccessLoggingSettingsRequestTypeDef]
|
|
566
|
-
) ->
|
|
561
|
+
) -> dict[str, Any]:
|
|
567
562
|
"""
|
|
568
563
|
Disassociates user access logging settings from a web portal.
|
|
569
564
|
|
|
@@ -573,7 +568,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
573
568
|
|
|
574
569
|
def disassociate_user_settings(
|
|
575
570
|
self, **kwargs: Unpack[DisassociateUserSettingsRequestTypeDef]
|
|
576
|
-
) ->
|
|
571
|
+
) -> dict[str, Any]:
|
|
577
572
|
"""
|
|
578
573
|
Disassociates user settings from a web portal.
|
|
579
574
|
|
|
@@ -581,7 +576,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
581
576
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_user_settings)
|
|
582
577
|
"""
|
|
583
578
|
|
|
584
|
-
def expire_session(self, **kwargs: Unpack[ExpireSessionRequestTypeDef]) ->
|
|
579
|
+
def expire_session(self, **kwargs: Unpack[ExpireSessionRequestTypeDef]) -> dict[str, Any]:
|
|
585
580
|
"""
|
|
586
581
|
Expires an active secure browser session.
|
|
587
582
|
|
|
@@ -845,7 +840,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
845
840
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_user_settings)
|
|
846
841
|
"""
|
|
847
842
|
|
|
848
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) ->
|
|
843
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
849
844
|
"""
|
|
850
845
|
Adds or overwrites one or more tags for the specified resource.
|
|
851
846
|
|
|
@@ -853,7 +848,7 @@ class WorkSpacesWebClient(BaseClient):
|
|
|
853
848
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#tag_resource)
|
|
854
849
|
"""
|
|
855
850
|
|
|
856
|
-
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) ->
|
|
851
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
|
|
857
852
|
"""
|
|
858
853
|
Removes one or more tags from the specified resource.
|
|
859
854
|
|
|
@@ -25,6 +25,7 @@ else:
|
|
|
25
25
|
__all__ = (
|
|
26
26
|
"AuthenticationTypeType",
|
|
27
27
|
"BrowserTypeType",
|
|
28
|
+
"CategoryType",
|
|
28
29
|
"EnabledTypeType",
|
|
29
30
|
"EventType",
|
|
30
31
|
"FolderStructureType",
|
|
@@ -53,6 +54,35 @@ __all__ = (
|
|
|
53
54
|
|
|
54
55
|
AuthenticationTypeType = Literal["IAM_Identity_Center", "Standard"]
|
|
55
56
|
BrowserTypeType = Literal["Chrome"]
|
|
57
|
+
CategoryType = Literal[
|
|
58
|
+
"Chat",
|
|
59
|
+
"CriminalActivity",
|
|
60
|
+
"Cults",
|
|
61
|
+
"DownloadSites",
|
|
62
|
+
"Gambling",
|
|
63
|
+
"Games",
|
|
64
|
+
"GenerativeAI",
|
|
65
|
+
"Hacking",
|
|
66
|
+
"HateAndIntolerance",
|
|
67
|
+
"IllegalDrug",
|
|
68
|
+
"IllegalSoftware",
|
|
69
|
+
"ImageSharing",
|
|
70
|
+
"InstantMessaging",
|
|
71
|
+
"Nudity",
|
|
72
|
+
"ParkedDomains",
|
|
73
|
+
"PeerToPeer",
|
|
74
|
+
"Pornography",
|
|
75
|
+
"ProfessionalNetwork",
|
|
76
|
+
"SchoolCheating",
|
|
77
|
+
"SelfHarm",
|
|
78
|
+
"SexEducation",
|
|
79
|
+
"SocialNetworking",
|
|
80
|
+
"StreamingMediaAndDownloads",
|
|
81
|
+
"Tasteless",
|
|
82
|
+
"Violence",
|
|
83
|
+
"Weapons",
|
|
84
|
+
"WebBasedEmail",
|
|
85
|
+
]
|
|
56
86
|
EnabledTypeType = Literal["Disabled", "Enabled"]
|
|
57
87
|
EventType = Literal[
|
|
58
88
|
"ContentCopyFromWebsite",
|
|
@@ -69,6 +99,7 @@ EventType = Literal[
|
|
|
69
99
|
"SessionStart",
|
|
70
100
|
"TabClose",
|
|
71
101
|
"TabOpen",
|
|
102
|
+
"UrlBlockByContentFilter",
|
|
72
103
|
"UrlLoad",
|
|
73
104
|
"WebsiteInteract",
|
|
74
105
|
]
|
|
@@ -126,7 +157,7 @@ ServiceName = Literal[
|
|
|
126
157
|
"apprunner",
|
|
127
158
|
"appstream",
|
|
128
159
|
"appsync",
|
|
129
|
-
"
|
|
160
|
+
"arc-region-switch",
|
|
130
161
|
"arc-zonal-shift",
|
|
131
162
|
"artifact",
|
|
132
163
|
"athena",
|
|
@@ -138,8 +169,10 @@ ServiceName = Literal[
|
|
|
138
169
|
"backup-gateway",
|
|
139
170
|
"backupsearch",
|
|
140
171
|
"batch",
|
|
172
|
+
"bcm-dashboards",
|
|
141
173
|
"bcm-data-exports",
|
|
142
174
|
"bcm-pricing-calculator",
|
|
175
|
+
"bcm-recommended-actions",
|
|
143
176
|
"bedrock",
|
|
144
177
|
"bedrock-agent",
|
|
145
178
|
"bedrock-agent-runtime",
|
|
@@ -291,7 +324,6 @@ ServiceName = Literal[
|
|
|
291
324
|
"iotdeviceadvisor",
|
|
292
325
|
"iotevents",
|
|
293
326
|
"iotevents-data",
|
|
294
|
-
"iotfleethub",
|
|
295
327
|
"iotfleetwise",
|
|
296
328
|
"iotsecuretunneling",
|
|
297
329
|
"iotsitewise",
|
|
@@ -330,8 +362,6 @@ ServiceName = Literal[
|
|
|
330
362
|
"location",
|
|
331
363
|
"logs",
|
|
332
364
|
"lookoutequipment",
|
|
333
|
-
"lookoutmetrics",
|
|
334
|
-
"lookoutvision",
|
|
335
365
|
"m2",
|
|
336
366
|
"machinelearning",
|
|
337
367
|
"macie2",
|
|
@@ -381,8 +411,6 @@ ServiceName = Literal[
|
|
|
381
411
|
"omics",
|
|
382
412
|
"opensearch",
|
|
383
413
|
"opensearchserverless",
|
|
384
|
-
"opsworks",
|
|
385
|
-
"opsworkscm",
|
|
386
414
|
"organizations",
|
|
387
415
|
"osis",
|
|
388
416
|
"outposts",
|
|
@@ -408,8 +436,6 @@ ServiceName = Literal[
|
|
|
408
436
|
"qapps",
|
|
409
437
|
"qbusiness",
|
|
410
438
|
"qconnect",
|
|
411
|
-
"qldb",
|
|
412
|
-
"qldb-session",
|
|
413
439
|
"quicksight",
|
|
414
440
|
"ram",
|
|
415
441
|
"rbin",
|
|
@@ -424,7 +450,6 @@ ServiceName = Literal[
|
|
|
424
450
|
"resource-explorer-2",
|
|
425
451
|
"resource-groups",
|
|
426
452
|
"resourcegroupstaggingapi",
|
|
427
|
-
"robomaker",
|
|
428
453
|
"rolesanywhere",
|
|
429
454
|
"route53",
|
|
430
455
|
"route53-recovery-cluster",
|
|
@@ -433,6 +458,7 @@ ServiceName = Literal[
|
|
|
433
458
|
"route53domains",
|
|
434
459
|
"route53profiles",
|
|
435
460
|
"route53resolver",
|
|
461
|
+
"rtbfabric",
|
|
436
462
|
"rum",
|
|
437
463
|
"s3",
|
|
438
464
|
"s3control",
|
|
@@ -464,7 +490,6 @@ ServiceName = Literal[
|
|
|
464
490
|
"shield",
|
|
465
491
|
"signer",
|
|
466
492
|
"simspaceweaver",
|
|
467
|
-
"sms",
|
|
468
493
|
"snow-device-management",
|
|
469
494
|
"snowball",
|
|
470
495
|
"sns",
|
|
@@ -515,16 +540,7 @@ ServiceName = Literal[
|
|
|
515
540
|
"xray",
|
|
516
541
|
]
|
|
517
542
|
ResourceServiceName = Literal[
|
|
518
|
-
"cloudformation",
|
|
519
|
-
"cloudwatch",
|
|
520
|
-
"dynamodb",
|
|
521
|
-
"ec2",
|
|
522
|
-
"glacier",
|
|
523
|
-
"iam",
|
|
524
|
-
"opsworks",
|
|
525
|
-
"s3",
|
|
526
|
-
"sns",
|
|
527
|
-
"sqs",
|
|
543
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
528
544
|
]
|
|
529
545
|
PaginatorName = Literal["list_data_protection_settings", "list_session_loggers", "list_sessions"]
|
|
530
546
|
RegionName = Literal[
|