mypy-boto3-workspaces-web 1.40.54__py3-none-any.whl → 1.41.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,7 @@ Usage::
17
17
  from __future__ import annotations
18
18
 
19
19
  import sys
20
+ from collections.abc import Mapping, Sequence
20
21
  from datetime import datetime
21
22
  from typing import IO, Any, Union
22
23
 
@@ -24,6 +25,7 @@ from botocore.response import StreamingBody
24
25
 
25
26
  from .literals import (
26
27
  AuthenticationTypeType,
28
+ CategoryType,
27
29
  EnabledTypeType,
28
30
  EventType,
29
31
  FolderStructureType,
@@ -39,12 +41,6 @@ from .literals import (
39
41
  VisualModeType,
40
42
  )
41
43
 
42
- if sys.version_info >= (3, 9):
43
- from builtins import dict as Dict
44
- from builtins import list as List
45
- from collections.abc import Mapping, Sequence
46
- else:
47
- from typing import Dict, List, Mapping, Sequence
48
44
  if sys.version_info >= (3, 12):
49
45
  from typing import Literal, NotRequired, TypedDict
50
46
  else:
@@ -231,6 +227,9 @@ __all__ = (
231
227
  "UserAccessLoggingSettingsTypeDef",
232
228
  "UserSettingsSummaryTypeDef",
233
229
  "UserSettingsTypeDef",
230
+ "WebContentFilteringPolicyOutputTypeDef",
231
+ "WebContentFilteringPolicyTypeDef",
232
+ "WebContentFilteringPolicyUnionTypeDef",
234
233
  )
235
234
 
236
235
  class AssociateBrowserSettingsRequestTypeDef(TypedDict):
@@ -240,7 +239,7 @@ class AssociateBrowserSettingsRequestTypeDef(TypedDict):
240
239
  class ResponseMetadataTypeDef(TypedDict):
241
240
  RequestId: str
242
241
  HTTPStatusCode: int
243
- HTTPHeaders: Dict[str, str]
242
+ HTTPHeaders: dict[str, str]
244
243
  RetryAttempts: int
245
244
  HostId: NotRequired[str]
246
245
 
@@ -277,12 +276,10 @@ BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
277
276
  class BrowserSettingsSummaryTypeDef(TypedDict):
278
277
  browserSettingsArn: str
279
278
 
280
- class BrowserSettingsTypeDef(TypedDict):
281
- browserSettingsArn: str
282
- associatedPortalArns: NotRequired[List[str]]
283
- browserPolicy: NotRequired[str]
284
- customerManagedKey: NotRequired[str]
285
- additionalEncryptionContext: NotRequired[Dict[str, str]]
279
+ class WebContentFilteringPolicyOutputTypeDef(TypedDict):
280
+ blockedCategories: NotRequired[list[CategoryType]]
281
+ allowedUrls: NotRequired[list[str]]
282
+ blockedUrls: NotRequired[list[str]]
286
283
 
287
284
  class CertificateSummaryTypeDef(TypedDict):
288
285
  thumbprint: NotRequired[str]
@@ -381,8 +378,8 @@ class DisassociateUserSettingsRequestTypeDef(TypedDict):
381
378
  EventFilterOutputTypeDef = TypedDict(
382
379
  "EventFilterOutputTypeDef",
383
380
  {
384
- "all": NotRequired[Dict[str, Any]],
385
- "include": NotRequired[List[EventType]],
381
+ "all": NotRequired[dict[str, Any]],
382
+ "include": NotRequired[list[EventType]],
386
383
  },
387
384
  )
388
385
  EventFilterTypeDef = TypedDict(
@@ -410,7 +407,7 @@ class IdentityProviderTypeDef(TypedDict):
410
407
  identityProviderArn: str
411
408
  identityProviderName: NotRequired[str]
412
409
  identityProviderType: NotRequired[IdentityProviderTypeType]
413
- identityProviderDetails: NotRequired[Dict[str, str]]
410
+ identityProviderDetails: NotRequired[dict[str, str]]
414
411
 
415
412
  class GetIpAccessSettingsRequestTypeDef(TypedDict):
416
413
  ipAccessSettingsArn: str
@@ -420,10 +417,10 @@ class GetNetworkSettingsRequestTypeDef(TypedDict):
420
417
 
421
418
  class NetworkSettingsTypeDef(TypedDict):
422
419
  networkSettingsArn: str
423
- associatedPortalArns: NotRequired[List[str]]
420
+ associatedPortalArns: NotRequired[list[str]]
424
421
  vpcId: NotRequired[str]
425
- subnetIds: NotRequired[List[str]]
426
- securityGroupIds: NotRequired[List[str]]
422
+ subnetIds: NotRequired[list[str]]
423
+ securityGroupIds: NotRequired[list[str]]
427
424
 
428
425
  class GetPortalRequestTypeDef(TypedDict):
429
426
  portalArn: str
@@ -447,7 +444,7 @@ class PortalTypeDef(TypedDict):
447
444
  authenticationType: NotRequired[AuthenticationTypeType]
448
445
  ipAccessSettingsArn: NotRequired[str]
449
446
  customerManagedKey: NotRequired[str]
450
- additionalEncryptionContext: NotRequired[Dict[str, str]]
447
+ additionalEncryptionContext: NotRequired[dict[str, str]]
451
448
  instanceType: NotRequired[InstanceTypeType]
452
449
  maxConcurrentSessions: NotRequired[int]
453
450
 
@@ -465,7 +462,7 @@ class SessionTypeDef(TypedDict):
465
462
  portalArn: NotRequired[str]
466
463
  sessionId: NotRequired[str]
467
464
  username: NotRequired[str]
468
- clientIpAddresses: NotRequired[List[str]]
465
+ clientIpAddresses: NotRequired[list[str]]
469
466
  status: NotRequired[SessionStatusType]
470
467
  startTime: NotRequired[datetime]
471
468
  endTime: NotRequired[datetime]
@@ -479,14 +476,14 @@ class GetTrustStoreRequestTypeDef(TypedDict):
479
476
 
480
477
  class TrustStoreTypeDef(TypedDict):
481
478
  trustStoreArn: str
482
- associatedPortalArns: NotRequired[List[str]]
479
+ associatedPortalArns: NotRequired[list[str]]
483
480
 
484
481
  class GetUserAccessLoggingSettingsRequestTypeDef(TypedDict):
485
482
  userAccessLoggingSettingsArn: str
486
483
 
487
484
  class UserAccessLoggingSettingsTypeDef(TypedDict):
488
485
  userAccessLoggingSettingsArn: str
489
- associatedPortalArns: NotRequired[List[str]]
486
+ associatedPortalArns: NotRequired[list[str]]
490
487
  kinesisStreamArn: NotRequired[str]
491
488
 
492
489
  class GetUserSettingsRequestTypeDef(TypedDict):
@@ -619,7 +616,7 @@ class S3LogConfigurationTypeDef(TypedDict):
619
616
  class ToolbarConfigurationOutputTypeDef(TypedDict):
620
617
  toolbarType: NotRequired[ToolbarTypeType]
621
618
  visualMode: NotRequired[VisualModeType]
622
- hiddenToolbarItems: NotRequired[List[ToolbarItemType]]
619
+ hiddenToolbarItems: NotRequired[list[ToolbarItemType]]
623
620
  maxDisplayResolution: NotRequired[MaxDisplayResolutionType]
624
621
 
625
622
  class ToolbarConfigurationTypeDef(TypedDict):
@@ -632,11 +629,6 @@ class UntagResourceRequestTypeDef(TypedDict):
632
629
  resourceArn: str
633
630
  tagKeys: Sequence[str]
634
631
 
635
- class UpdateBrowserSettingsRequestTypeDef(TypedDict):
636
- browserSettingsArn: str
637
- browserPolicy: NotRequired[str]
638
- clientToken: NotRequired[str]
639
-
640
632
  class UpdateIdentityProviderRequestTypeDef(TypedDict):
641
633
  identityProviderArn: str
642
634
  identityProviderName: NotRequired[str]
@@ -663,6 +655,11 @@ class UpdateUserAccessLoggingSettingsRequestTypeDef(TypedDict):
663
655
  kinesisStreamArn: NotRequired[str]
664
656
  clientToken: NotRequired[str]
665
657
 
658
+ class WebContentFilteringPolicyTypeDef(TypedDict):
659
+ blockedCategories: NotRequired[Sequence[CategoryType]]
660
+ allowedUrls: NotRequired[Sequence[str]]
661
+ blockedUrls: NotRequired[Sequence[str]]
662
+
666
663
  class AssociateBrowserSettingsResponseTypeDef(TypedDict):
667
664
  portalArn: str
668
665
  browserSettingsArn: str
@@ -760,20 +757,20 @@ class UpdateTrustStoreRequestTypeDef(TypedDict):
760
757
  clientToken: NotRequired[str]
761
758
 
762
759
  class ListBrowserSettingsResponseTypeDef(TypedDict):
763
- browserSettings: List[BrowserSettingsSummaryTypeDef]
760
+ browserSettings: list[BrowserSettingsSummaryTypeDef]
764
761
  ResponseMetadata: ResponseMetadataTypeDef
765
762
  nextToken: NotRequired[str]
766
763
 
767
- class GetBrowserSettingsResponseTypeDef(TypedDict):
768
- browserSettings: BrowserSettingsTypeDef
769
- ResponseMetadata: ResponseMetadataTypeDef
770
-
771
- class UpdateBrowserSettingsResponseTypeDef(TypedDict):
772
- browserSettings: BrowserSettingsTypeDef
773
- ResponseMetadata: ResponseMetadataTypeDef
764
+ class BrowserSettingsTypeDef(TypedDict):
765
+ browserSettingsArn: str
766
+ associatedPortalArns: NotRequired[list[str]]
767
+ browserPolicy: NotRequired[str]
768
+ customerManagedKey: NotRequired[str]
769
+ additionalEncryptionContext: NotRequired[dict[str, str]]
770
+ webContentFilteringPolicy: NotRequired[WebContentFilteringPolicyOutputTypeDef]
774
771
 
775
772
  class ListTrustStoreCertificatesResponseTypeDef(TypedDict):
776
- certificateList: List[CertificateSummaryTypeDef]
773
+ certificateList: list[CertificateSummaryTypeDef]
777
774
  trustStoreArn: str
778
775
  ResponseMetadata: ResponseMetadataTypeDef
779
776
  nextToken: NotRequired[str]
@@ -784,20 +781,13 @@ class GetTrustStoreCertificateResponseTypeDef(TypedDict):
784
781
  ResponseMetadata: ResponseMetadataTypeDef
785
782
 
786
783
  class CookieSynchronizationConfigurationOutputTypeDef(TypedDict):
787
- allowlist: List[CookieSpecificationTypeDef]
788
- blocklist: NotRequired[List[CookieSpecificationTypeDef]]
784
+ allowlist: list[CookieSpecificationTypeDef]
785
+ blocklist: NotRequired[list[CookieSpecificationTypeDef]]
789
786
 
790
787
  class CookieSynchronizationConfigurationTypeDef(TypedDict):
791
788
  allowlist: Sequence[CookieSpecificationTypeDef]
792
789
  blocklist: NotRequired[Sequence[CookieSpecificationTypeDef]]
793
790
 
794
- class CreateBrowserSettingsRequestTypeDef(TypedDict):
795
- browserPolicy: str
796
- tags: NotRequired[Sequence[TagTypeDef]]
797
- customerManagedKey: NotRequired[str]
798
- additionalEncryptionContext: NotRequired[Mapping[str, str]]
799
- clientToken: NotRequired[str]
800
-
801
791
  class CreateIdentityProviderRequestTypeDef(TypedDict):
802
792
  portalArn: str
803
793
  identityProviderName: str
@@ -834,7 +824,7 @@ class CreateUserAccessLoggingSettingsRequestTypeDef(TypedDict):
834
824
  clientToken: NotRequired[str]
835
825
 
836
826
  class ListTagsForResourceResponseTypeDef(TypedDict):
837
- tags: List[TagTypeDef]
827
+ tags: list[TagTypeDef]
838
828
  ResponseMetadata: ResponseMetadataTypeDef
839
829
 
840
830
  class TagResourceRequestTypeDef(TypedDict):
@@ -853,13 +843,13 @@ class CreateIpAccessSettingsRequestTypeDef(TypedDict):
853
843
 
854
844
  class IpAccessSettingsTypeDef(TypedDict):
855
845
  ipAccessSettingsArn: str
856
- associatedPortalArns: NotRequired[List[str]]
857
- ipRules: NotRequired[List[IpRuleTypeDef]]
846
+ associatedPortalArns: NotRequired[list[str]]
847
+ ipRules: NotRequired[list[IpRuleTypeDef]]
858
848
  displayName: NotRequired[str]
859
849
  description: NotRequired[str]
860
850
  creationDate: NotRequired[datetime]
861
851
  customerManagedKey: NotRequired[str]
862
- additionalEncryptionContext: NotRequired[Dict[str, str]]
852
+ additionalEncryptionContext: NotRequired[dict[str, str]]
863
853
 
864
854
  class UpdateIpAccessSettingsRequestTypeDef(TypedDict):
865
855
  ipAccessSettingsArn: str
@@ -869,7 +859,7 @@ class UpdateIpAccessSettingsRequestTypeDef(TypedDict):
869
859
  clientToken: NotRequired[str]
870
860
 
871
861
  class ListDataProtectionSettingsResponseTypeDef(TypedDict):
872
- dataProtectionSettings: List[DataProtectionSettingsSummaryTypeDef]
862
+ dataProtectionSettings: list[DataProtectionSettingsSummaryTypeDef]
873
863
  ResponseMetadata: ResponseMetadataTypeDef
874
864
  nextToken: NotRequired[str]
875
865
 
@@ -916,7 +906,7 @@ class UpdateUserAccessLoggingSettingsResponseTypeDef(TypedDict):
916
906
  ResponseMetadata: ResponseMetadataTypeDef
917
907
 
918
908
  class ListIdentityProvidersResponseTypeDef(TypedDict):
919
- identityProviders: List[IdentityProviderSummaryTypeDef]
909
+ identityProviders: list[IdentityProviderSummaryTypeDef]
920
910
  ResponseMetadata: ResponseMetadataTypeDef
921
911
  nextToken: NotRequired[str]
922
912
 
@@ -924,8 +914,8 @@ class InlineRedactionPatternOutputTypeDef(TypedDict):
924
914
  redactionPlaceHolder: RedactionPlaceHolderTypeDef
925
915
  builtInPatternId: NotRequired[str]
926
916
  customPattern: NotRequired[CustomPatternTypeDef]
927
- enforcedUrls: NotRequired[List[str]]
928
- exemptUrls: NotRequired[List[str]]
917
+ enforcedUrls: NotRequired[list[str]]
918
+ exemptUrls: NotRequired[list[str]]
929
919
  confidenceLevel: NotRequired[int]
930
920
 
931
921
  class InlineRedactionPatternTypeDef(TypedDict):
@@ -937,7 +927,7 @@ class InlineRedactionPatternTypeDef(TypedDict):
937
927
  confidenceLevel: NotRequired[int]
938
928
 
939
929
  class ListIpAccessSettingsResponseTypeDef(TypedDict):
940
- ipAccessSettings: List[IpAccessSettingsSummaryTypeDef]
930
+ ipAccessSettings: list[IpAccessSettingsSummaryTypeDef]
941
931
  ResponseMetadata: ResponseMetadataTypeDef
942
932
  nextToken: NotRequired[str]
943
933
 
@@ -956,27 +946,27 @@ class ListSessionsRequestPaginateTypeDef(TypedDict):
956
946
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
957
947
 
958
948
  class ListNetworkSettingsResponseTypeDef(TypedDict):
959
- networkSettings: List[NetworkSettingsSummaryTypeDef]
949
+ networkSettings: list[NetworkSettingsSummaryTypeDef]
960
950
  ResponseMetadata: ResponseMetadataTypeDef
961
951
  nextToken: NotRequired[str]
962
952
 
963
953
  class ListPortalsResponseTypeDef(TypedDict):
964
- portals: List[PortalSummaryTypeDef]
954
+ portals: list[PortalSummaryTypeDef]
965
955
  ResponseMetadata: ResponseMetadataTypeDef
966
956
  nextToken: NotRequired[str]
967
957
 
968
958
  class ListSessionsResponseTypeDef(TypedDict):
969
- sessions: List[SessionSummaryTypeDef]
959
+ sessions: list[SessionSummaryTypeDef]
970
960
  ResponseMetadata: ResponseMetadataTypeDef
971
961
  nextToken: NotRequired[str]
972
962
 
973
963
  class ListTrustStoresResponseTypeDef(TypedDict):
974
- trustStores: List[TrustStoreSummaryTypeDef]
964
+ trustStores: list[TrustStoreSummaryTypeDef]
975
965
  ResponseMetadata: ResponseMetadataTypeDef
976
966
  nextToken: NotRequired[str]
977
967
 
978
968
  class ListUserAccessLoggingSettingsResponseTypeDef(TypedDict):
979
- userAccessLoggingSettings: List[UserAccessLoggingSettingsSummaryTypeDef]
969
+ userAccessLoggingSettings: list[UserAccessLoggingSettingsSummaryTypeDef]
980
970
  ResponseMetadata: ResponseMetadataTypeDef
981
971
  nextToken: NotRequired[str]
982
972
 
@@ -986,6 +976,17 @@ class LogConfigurationTypeDef(TypedDict):
986
976
  ToolbarConfigurationUnionTypeDef = Union[
987
977
  ToolbarConfigurationTypeDef, ToolbarConfigurationOutputTypeDef
988
978
  ]
979
+ WebContentFilteringPolicyUnionTypeDef = Union[
980
+ WebContentFilteringPolicyTypeDef, WebContentFilteringPolicyOutputTypeDef
981
+ ]
982
+
983
+ class GetBrowserSettingsResponseTypeDef(TypedDict):
984
+ browserSettings: BrowserSettingsTypeDef
985
+ ResponseMetadata: ResponseMetadataTypeDef
986
+
987
+ class UpdateBrowserSettingsResponseTypeDef(TypedDict):
988
+ browserSettings: BrowserSettingsTypeDef
989
+ ResponseMetadata: ResponseMetadataTypeDef
989
990
 
990
991
  class UserSettingsSummaryTypeDef(TypedDict):
991
992
  userSettingsArn: str
@@ -1002,7 +1003,7 @@ class UserSettingsSummaryTypeDef(TypedDict):
1002
1003
 
1003
1004
  class UserSettingsTypeDef(TypedDict):
1004
1005
  userSettingsArn: str
1005
- associatedPortalArns: NotRequired[List[str]]
1006
+ associatedPortalArns: NotRequired[list[str]]
1006
1007
  copyAllowed: NotRequired[EnabledTypeType]
1007
1008
  pasteAllowed: NotRequired[EnabledTypeType]
1008
1009
  downloadAllowed: NotRequired[EnabledTypeType]
@@ -1012,7 +1013,7 @@ class UserSettingsTypeDef(TypedDict):
1012
1013
  idleDisconnectTimeoutInMinutes: NotRequired[int]
1013
1014
  cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationOutputTypeDef]
1014
1015
  customerManagedKey: NotRequired[str]
1015
- additionalEncryptionContext: NotRequired[Dict[str, str]]
1016
+ additionalEncryptionContext: NotRequired[dict[str, str]]
1016
1017
  deepLinkAllowed: NotRequired[EnabledTypeType]
1017
1018
  toolbarConfiguration: NotRequired[ToolbarConfigurationOutputTypeDef]
1018
1019
 
@@ -1029,9 +1030,9 @@ class UpdateIpAccessSettingsResponseTypeDef(TypedDict):
1029
1030
  ResponseMetadata: ResponseMetadataTypeDef
1030
1031
 
1031
1032
  class InlineRedactionConfigurationOutputTypeDef(TypedDict):
1032
- inlineRedactionPatterns: List[InlineRedactionPatternOutputTypeDef]
1033
- globalEnforcedUrls: NotRequired[List[str]]
1034
- globalExemptUrls: NotRequired[List[str]]
1033
+ inlineRedactionPatterns: list[InlineRedactionPatternOutputTypeDef]
1034
+ globalEnforcedUrls: NotRequired[list[str]]
1035
+ globalExemptUrls: NotRequired[list[str]]
1035
1036
  globalConfidenceLevel: NotRequired[int]
1036
1037
 
1037
1038
  class InlineRedactionConfigurationTypeDef(TypedDict):
@@ -1060,8 +1061,8 @@ class SessionLoggerTypeDef(TypedDict):
1060
1061
  eventFilter: NotRequired[EventFilterOutputTypeDef]
1061
1062
  logConfiguration: NotRequired[LogConfigurationTypeDef]
1062
1063
  customerManagedKey: NotRequired[str]
1063
- additionalEncryptionContext: NotRequired[Dict[str, str]]
1064
- associatedPortalArns: NotRequired[List[str]]
1064
+ additionalEncryptionContext: NotRequired[dict[str, str]]
1065
+ associatedPortalArns: NotRequired[list[str]]
1065
1066
  displayName: NotRequired[str]
1066
1067
  creationDate: NotRequired[datetime]
1067
1068
 
@@ -1071,8 +1072,22 @@ class UpdateSessionLoggerRequestTypeDef(TypedDict):
1071
1072
  logConfiguration: NotRequired[LogConfigurationTypeDef]
1072
1073
  displayName: NotRequired[str]
1073
1074
 
1075
+ class CreateBrowserSettingsRequestTypeDef(TypedDict):
1076
+ tags: NotRequired[Sequence[TagTypeDef]]
1077
+ customerManagedKey: NotRequired[str]
1078
+ additionalEncryptionContext: NotRequired[Mapping[str, str]]
1079
+ browserPolicy: NotRequired[str]
1080
+ clientToken: NotRequired[str]
1081
+ webContentFilteringPolicy: NotRequired[WebContentFilteringPolicyUnionTypeDef]
1082
+
1083
+ class UpdateBrowserSettingsRequestTypeDef(TypedDict):
1084
+ browserSettingsArn: str
1085
+ browserPolicy: NotRequired[str]
1086
+ clientToken: NotRequired[str]
1087
+ webContentFilteringPolicy: NotRequired[WebContentFilteringPolicyUnionTypeDef]
1088
+
1074
1089
  class ListUserSettingsResponseTypeDef(TypedDict):
1075
- userSettings: List[UserSettingsSummaryTypeDef]
1090
+ userSettings: list[UserSettingsSummaryTypeDef]
1076
1091
  ResponseMetadata: ResponseMetadataTypeDef
1077
1092
  nextToken: NotRequired[str]
1078
1093
 
@@ -1117,19 +1132,19 @@ class UpdateUserSettingsRequestTypeDef(TypedDict):
1117
1132
  class DataProtectionSettingsTypeDef(TypedDict):
1118
1133
  dataProtectionSettingsArn: str
1119
1134
  inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationOutputTypeDef]
1120
- associatedPortalArns: NotRequired[List[str]]
1135
+ associatedPortalArns: NotRequired[list[str]]
1121
1136
  displayName: NotRequired[str]
1122
1137
  description: NotRequired[str]
1123
1138
  creationDate: NotRequired[datetime]
1124
1139
  customerManagedKey: NotRequired[str]
1125
- additionalEncryptionContext: NotRequired[Dict[str, str]]
1140
+ additionalEncryptionContext: NotRequired[dict[str, str]]
1126
1141
 
1127
1142
  InlineRedactionConfigurationUnionTypeDef = Union[
1128
1143
  InlineRedactionConfigurationTypeDef, InlineRedactionConfigurationOutputTypeDef
1129
1144
  ]
1130
1145
 
1131
1146
  class ListSessionLoggersResponseTypeDef(TypedDict):
1132
- sessionLoggers: List[SessionLoggerSummaryTypeDef]
1147
+ sessionLoggers: list[SessionLoggerSummaryTypeDef]
1133
1148
  ResponseMetadata: ResponseMetadataTypeDef
1134
1149
  nextToken: NotRequired[str]
1135
1150
 
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.54"
7
+ __version__ = "1.41.0"
@@ -1,23 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-workspaces-web
3
- Version: 1.40.54
4
- Summary: Type annotations for boto3 WorkSpacesWeb 1.40.54 service generated with mypy-boto3-builder 8.11.0
5
- Home-page: https://github.com/youtype/mypy_boto3_builder
6
- Author: Vlad Emelianov
7
- Author-email: vlad.emelianov.nz@gmail.com
8
- License: MIT License
3
+ Version: 1.41.0
4
+ Summary: Type annotations for boto3 WorkSpacesWeb 1.41.0 service generated with mypy-boto3-builder 8.12.0
5
+ Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
9
8
  Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/
10
9
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
10
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 workspaces-web boto3-stubs type-annotations mypy typeshed autocomplete
11
+ Keywords: boto3,workspaces-web,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
12
+ Platform: any
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
16
- Classifier: License :: OSI Approved :: MIT License
17
16
  Classifier: Natural Language :: English
18
17
  Classifier: Operating System :: OS Independent
19
18
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.8
21
19
  Classifier: Programming Language :: Python :: 3.9
22
20
  Classifier: Programming Language :: Python :: 3.10
23
21
  Classifier: Programming Language :: Python :: 3.11
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
27
25
  Classifier: Programming Language :: Python :: 3 :: Only
28
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
27
  Classifier: Typing :: Stubs Only
30
- Requires-Python: >=3.8
28
+ Requires-Python: >=3.9
31
29
  Description-Content-Type: text/markdown
32
30
  License-File: LICENSE
33
31
  Requires-Dist: typing-extensions; python_version < "3.12"
34
- Dynamic: author
35
- Dynamic: author-email
36
- Dynamic: classifier
37
- Dynamic: description
38
- Dynamic: description-content-type
39
- Dynamic: home-page
40
- Dynamic: keywords
41
- Dynamic: license
42
32
  Dynamic: license-file
43
- Dynamic: project-url
44
- Dynamic: requires-dist
45
- Dynamic: requires-python
46
- Dynamic: summary
47
33
 
48
34
  <a id="mypy-boto3-workspaces-web"></a>
49
35
 
@@ -57,7 +43,7 @@ Dynamic: summary
57
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
44
 
59
45
  Type annotations for
60
- [boto3 WorkSpacesWeb 1.40.54](https://pypi.org/project/boto3/) compatible with
46
+ [boto3 WorkSpacesWeb 1.41.0](https://pypi.org/project/boto3/) compatible with
61
47
  [VSCode](https://code.visualstudio.com/),
62
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
63
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -66,7 +52,7 @@ Type annotations for
66
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
67
53
 
68
54
  Generated with
69
- [mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
70
56
 
71
57
  More information can be found on
72
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -119,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
119
105
  isolation.
120
106
 
121
107
  1. Run mypy-boto3-builder in your package root directory:
122
- `uvx --with 'boto3==1.40.54' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.41.0' mypy-boto3-builder`
123
109
  2. Select `boto3-stubs` AWS SDK.
124
110
  3. Add `WorkSpacesWeb` service.
125
111
  4. Use provided commands to install generated packages.
@@ -0,0 +1,18 @@
1
+ mypy_boto3_workspaces_web/__init__.py,sha256=8rLftlo2nR-UwDrbTXMEBQuEcu2RCFJOOY2HiXaM-CE,1243
2
+ mypy_boto3_workspaces_web/__init__.pyi,sha256=W2nWSq05qNSU2m1AKDs8TKedYoN1pOuFlRO-j2_bX3c,1242
3
+ mypy_boto3_workspaces_web/__main__.py,sha256=FCShrNgq5ynhs2AidX0if4epVDI7hYlbm5qV6tQwMrQ,1007
4
+ mypy_boto3_workspaces_web/client.py,sha256=Wb88pPbWblc_57lkiydUaU1Sonj3DO-K_Iwainish_8,49549
5
+ mypy_boto3_workspaces_web/client.pyi,sha256=4famGK3IWxtkLbkbIhxxY2_BM-jcIAVAuqDsIsLXqoo,49546
6
+ mypy_boto3_workspaces_web/literals.py,sha256=LvoSEhLFDHxh_TOCFJoeQt94tHaQg0NDURqabZu-WGY,12238
7
+ mypy_boto3_workspaces_web/literals.pyi,sha256=J9ud5V7QeV7DQ8F0uf5krQik-Rtod7vW5FLHRhj6Yis,12236
8
+ mypy_boto3_workspaces_web/paginator.py,sha256=FVItsEz5UvkoOZRlAwaks9HAQVJfjvT7BmhvgOQzZCE,5177
9
+ mypy_boto3_workspaces_web/paginator.pyi,sha256=lqutwxZ-GH8uREqsDi_FES6s6gsV_BEaZygp_VxGgwU,5167
10
+ mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_workspaces_web/type_defs.py,sha256=Q3Ja4muOe0knQ1a4nMrcpvyxQNZT6smDH4C9It5EZIc,41597
12
+ mypy_boto3_workspaces_web/type_defs.pyi,sha256=jR916jH1MD6xjwISAu6CkKau6vJGSc2YbtPr2wBgkts,41415
13
+ mypy_boto3_workspaces_web/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
14
+ mypy_boto3_workspaces_web-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ mypy_boto3_workspaces_web-1.41.0.dist-info/METADATA,sha256=AoxYR47q_I8WoARsBaGxEY_z_db1mU75vlRTmgkNhp4,15321
16
+ mypy_boto3_workspaces_web-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ mypy_boto3_workspaces_web-1.41.0.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
18
+ mypy_boto3_workspaces_web-1.41.0.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- mypy_boto3_workspaces_web/__init__.py,sha256=8rLftlo2nR-UwDrbTXMEBQuEcu2RCFJOOY2HiXaM-CE,1243
2
- mypy_boto3_workspaces_web/__init__.pyi,sha256=W2nWSq05qNSU2m1AKDs8TKedYoN1pOuFlRO-j2_bX3c,1242
3
- mypy_boto3_workspaces_web/__main__.py,sha256=8lRSP4W6va7yErnbEwoPHIRvvSwmGEA0HG37JaLfkOQ,1010
4
- mypy_boto3_workspaces_web/client.py,sha256=3h-QPssXNjBZFJqzr0aDsL2weRTMXxdf5WT2T1t66rM,49709
5
- mypy_boto3_workspaces_web/client.pyi,sha256=t7E1XbsxfTGzsuV1OAebPaPZtDpwpwE5uDWbhEUYbTQ,49706
6
- mypy_boto3_workspaces_web/literals.py,sha256=og-btBLwPckjcKN_IbMU6Rh_2awdQlQcRcBTOqRSkiU,11673
7
- mypy_boto3_workspaces_web/literals.pyi,sha256=9AqooVBnKtZUbCV3dNT8xUUI8Ny5P0YP3QYGN6z6iAA,11671
8
- mypy_boto3_workspaces_web/paginator.py,sha256=FVItsEz5UvkoOZRlAwaks9HAQVJfjvT7BmhvgOQzZCE,5177
9
- mypy_boto3_workspaces_web/paginator.pyi,sha256=lqutwxZ-GH8uREqsDi_FES6s6gsV_BEaZygp_VxGgwU,5167
10
- mypy_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_workspaces_web/type_defs.py,sha256=i_aOFlHQyi31IhwUAN1sLhnFfemPefDp4T77IiPBiww,40838
12
- mypy_boto3_workspaces_web/type_defs.pyi,sha256=gsQVklh0RemKCa2QecIFYjRPiXWAe0UHg5ihuzCR274,40658
13
- mypy_boto3_workspaces_web/version.py,sha256=GE5sQ7rzQfq5K00iHgZv67oDv1I2tyLbIUfw98ORj2g,93
14
- mypy_boto3_workspaces_web-1.40.54.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
- mypy_boto3_workspaces_web-1.40.54.dist-info/METADATA,sha256=oBtVIsDZYqkUEb9Jds9P20rYaPIweDassl29Fixw8SA,15656
16
- mypy_boto3_workspaces_web-1.40.54.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- mypy_boto3_workspaces_web-1.40.54.dist-info/top_level.txt,sha256=uVGqyFrLYAjBajviVBauQuxxcr6knw6ba2vzvsNkrGg,26
18
- mypy_boto3_workspaces_web-1.40.54.dist-info/RECORD,,