types-boto3-workspaces-web 1.35.71__py3-none-any.whl → 1.35.93__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.
@@ -19,7 +19,7 @@ Usage::
19
19
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
20
20
  ```
21
21
 
22
- Copyright 2024 Vlad Emelianov
22
+ Copyright 2025 Vlad Emelianov
23
23
  """
24
24
 
25
25
  from .client import WorkSpacesWebClient
@@ -19,7 +19,7 @@ Usage::
19
19
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
20
20
  ```
21
21
 
22
- Copyright 2024 Vlad Emelianov
22
+ Copyright 2025 Vlad Emelianov
23
23
  """
24
24
 
25
25
  from .client import WorkSpacesWebClient
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
7
  import sys
@@ -11,14 +11,14 @@ def print_info() -> None:
11
11
  """
12
12
  Print package info to stdout.
13
13
  """
14
- print(
15
- "Type annotations for boto3 WorkSpacesWeb 1.35.71\n"
16
- "Version: 1.35.71\n"
17
- "Builder version: 8.4.1\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 WorkSpacesWeb 1.35.93\n"
16
+ "Version: 1.35.93\n"
17
+ "Builder version: 8.8.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"
21
- "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
22
  )
23
23
 
24
24
 
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- print("1.35.71")
29
+ sys.stdout.write("1.35.93\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -34,7 +34,8 @@ def main() -> None:
34
34
  Main CLI entrypoint.
35
35
  """
36
36
  if "--version" in sys.argv:
37
- return print_version()
37
+ print_version()
38
+ return
38
39
  print_info()
39
40
 
40
41
 
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for workspaces-web service client.
2
+ Type annotations for workspaces-web service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -13,13 +13,17 @@ Usage::
13
13
  client: WorkSpacesWebClient = session.client("workspaces-web")
14
14
  ```
15
15
 
16
- Copyright 2024 Vlad Emelianov
16
+ Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
+ from __future__ import annotations
20
+
19
21
  import sys
20
- from typing import Any, Dict, Mapping, Type, overload
22
+ from typing import Any, overload
21
23
 
22
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
23
27
 
24
28
  from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
25
29
  from .type_defs import (
@@ -142,6 +146,12 @@ from .type_defs import (
142
146
  UpdateUserSettingsResponseTypeDef,
143
147
  )
144
148
 
149
+ if sys.version_info >= (3, 9):
150
+ from builtins import dict as Dict
151
+ from builtins import type as Type
152
+ from collections.abc import Mapping
153
+ else:
154
+ from typing import Dict, Mapping, Type
145
155
  if sys.version_info >= (3, 12):
146
156
  from typing import Literal, Unpack
147
157
  else:
@@ -151,15 +161,7 @@ else:
151
161
  __all__ = ("WorkSpacesWebClient",)
152
162
 
153
163
 
154
- class BotocoreClientError(Exception):
155
- MSG_TEMPLATE: str
156
-
157
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
158
- self.response: Dict[str, Any]
159
- self.operation_name: str
160
-
161
-
162
- class Exceptions:
164
+ class Exceptions(BaseClientExceptions):
163
165
  AccessDeniedException: Type[BotocoreClientError]
164
166
  ClientError: Type[BotocoreClientError]
165
167
  ConflictException: Type[BotocoreClientError]
@@ -206,12 +208,6 @@ class WorkSpacesWebClient(BaseClient):
206
208
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#generate_presigned_url)
207
209
  """
208
210
 
209
- def close(self) -> None:
210
- """
211
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/close.html)
212
- [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#close)
213
- """
214
-
215
211
  def associate_browser_settings(
216
212
  self, **kwargs: Unpack[AssociateBrowserSettingsRequestRequestTypeDef]
217
213
  ) -> AssociateBrowserSettingsResponseTypeDef:
@@ -890,8 +886,8 @@ class WorkSpacesWebClient(BaseClient):
890
886
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_user_settings)
891
887
  """
892
888
 
893
- @overload
894
- def get_paginator(
889
+ @overload # type: ignore[override]
890
+ def get_paginator( # type: ignore[override]
895
891
  self, operation_name: Literal["list_data_protection_settings"]
896
892
  ) -> ListDataProtectionSettingsPaginator:
897
893
  """
@@ -901,8 +897,10 @@ class WorkSpacesWebClient(BaseClient):
901
897
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
902
898
  """
903
899
 
904
- @overload
905
- def get_paginator(self, operation_name: Literal["list_sessions"]) -> ListSessionsPaginator:
900
+ @overload # type: ignore[override]
901
+ def get_paginator( # type: ignore[override]
902
+ self, operation_name: Literal["list_sessions"]
903
+ ) -> ListSessionsPaginator:
906
904
  """
907
905
  Create a paginator for an operation.
908
906
 
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for workspaces-web service client.
2
+ Type annotations for workspaces-web service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -13,13 +13,17 @@ Usage::
13
13
  client: WorkSpacesWebClient = session.client("workspaces-web")
14
14
  ```
15
15
 
16
- Copyright 2024 Vlad Emelianov
16
+ Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
+ from __future__ import annotations
20
+
19
21
  import sys
20
- from typing import Any, Dict, Mapping, Type, overload
22
+ from typing import Any, overload
21
23
 
22
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
23
27
 
24
28
  from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
25
29
  from .type_defs import (
@@ -142,6 +146,12 @@ from .type_defs import (
142
146
  UpdateUserSettingsResponseTypeDef,
143
147
  )
144
148
 
149
+ if sys.version_info >= (3, 9):
150
+ from builtins import dict as Dict
151
+ from builtins import type as Type
152
+ from collections.abc import Mapping
153
+ else:
154
+ from typing import Dict, Mapping, Type
145
155
  if sys.version_info >= (3, 12):
146
156
  from typing import Literal, Unpack
147
157
  else:
@@ -149,14 +159,7 @@ else:
149
159
 
150
160
  __all__ = ("WorkSpacesWebClient",)
151
161
 
152
- class BotocoreClientError(Exception):
153
- MSG_TEMPLATE: str
154
-
155
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
156
- self.response: Dict[str, Any]
157
- self.operation_name: str
158
-
159
- class Exceptions:
162
+ class Exceptions(BaseClientExceptions):
160
163
  AccessDeniedException: Type[BotocoreClientError]
161
164
  ClientError: Type[BotocoreClientError]
162
165
  ConflictException: Type[BotocoreClientError]
@@ -202,12 +205,6 @@ class WorkSpacesWebClient(BaseClient):
202
205
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#generate_presigned_url)
203
206
  """
204
207
 
205
- def close(self) -> None:
206
- """
207
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/close.html)
208
- [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#close)
209
- """
210
-
211
208
  def associate_browser_settings(
212
209
  self, **kwargs: Unpack[AssociateBrowserSettingsRequestRequestTypeDef]
213
210
  ) -> AssociateBrowserSettingsResponseTypeDef:
@@ -886,8 +883,8 @@ class WorkSpacesWebClient(BaseClient):
886
883
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_user_settings)
887
884
  """
888
885
 
889
- @overload
890
- def get_paginator(
886
+ @overload # type: ignore[override]
887
+ def get_paginator( # type: ignore[override]
891
888
  self, operation_name: Literal["list_data_protection_settings"]
892
889
  ) -> ListDataProtectionSettingsPaginator:
893
890
  """
@@ -897,8 +894,10 @@ class WorkSpacesWebClient(BaseClient):
897
894
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
898
895
  """
899
896
 
900
- @overload
901
- def get_paginator(self, operation_name: Literal["list_sessions"]) -> ListSessionsPaginator:
897
+ @overload # type: ignore[override]
898
+ def get_paginator( # type: ignore[override]
899
+ self, operation_name: Literal["list_sessions"]
900
+ ) -> ListSessionsPaginator:
902
901
  """
903
902
  Create a paginator for an operation.
904
903
 
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service literal definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/literals/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/literals/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,7 +11,7 @@ Usage::
11
11
  data: AuthenticationTypeType = "IAM_Identity_Center"
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -93,12 +93,15 @@ ServiceName = Literal[
93
93
  "b2bi",
94
94
  "backup",
95
95
  "backup-gateway",
96
+ "backupsearch",
96
97
  "batch",
97
98
  "bcm-data-exports",
98
99
  "bcm-pricing-calculator",
99
100
  "bedrock",
100
101
  "bedrock-agent",
101
102
  "bedrock-agent-runtime",
103
+ "bedrock-data-automation",
104
+ "bedrock-data-automation-runtime",
102
105
  "bedrock-runtime",
103
106
  "billing",
104
107
  "billingconductor",
@@ -176,6 +179,7 @@ ServiceName = Literal[
176
179
  "drs",
177
180
  "ds",
178
181
  "ds-data",
182
+ "dsql",
179
183
  "dynamodb",
180
184
  "dynamodbstreams",
181
185
  "ebs",
@@ -232,6 +236,7 @@ ServiceName = Literal[
232
236
  "inspector-scan",
233
237
  "inspector2",
234
238
  "internetmonitor",
239
+ "invoicing",
235
240
  "iot",
236
241
  "iot-data",
237
242
  "iot-jobs-data",
@@ -318,6 +323,7 @@ ServiceName = Literal[
318
323
  "neptune-graph",
319
324
  "neptunedata",
320
325
  "network-firewall",
326
+ "networkflowmonitor",
321
327
  "networkmanager",
322
328
  "networkmonitor",
323
329
  "notifications",
@@ -384,6 +390,7 @@ ServiceName = Literal[
384
390
  "s3",
385
391
  "s3control",
386
392
  "s3outposts",
393
+ "s3tables",
387
394
  "sagemaker",
388
395
  "sagemaker-a2i-runtime",
389
396
  "sagemaker-edge",
@@ -396,6 +403,7 @@ ServiceName = Literal[
396
403
  "schemas",
397
404
  "sdb",
398
405
  "secretsmanager",
406
+ "security-ir",
399
407
  "securityhub",
400
408
  "securitylake",
401
409
  "serverlessrepo",
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service literal definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/literals/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/literals/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,7 +11,7 @@ Usage::
11
11
  data: AuthenticationTypeType = "IAM_Identity_Center"
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -91,12 +91,15 @@ ServiceName = Literal[
91
91
  "b2bi",
92
92
  "backup",
93
93
  "backup-gateway",
94
+ "backupsearch",
94
95
  "batch",
95
96
  "bcm-data-exports",
96
97
  "bcm-pricing-calculator",
97
98
  "bedrock",
98
99
  "bedrock-agent",
99
100
  "bedrock-agent-runtime",
101
+ "bedrock-data-automation",
102
+ "bedrock-data-automation-runtime",
100
103
  "bedrock-runtime",
101
104
  "billing",
102
105
  "billingconductor",
@@ -174,6 +177,7 @@ ServiceName = Literal[
174
177
  "drs",
175
178
  "ds",
176
179
  "ds-data",
180
+ "dsql",
177
181
  "dynamodb",
178
182
  "dynamodbstreams",
179
183
  "ebs",
@@ -230,6 +234,7 @@ ServiceName = Literal[
230
234
  "inspector-scan",
231
235
  "inspector2",
232
236
  "internetmonitor",
237
+ "invoicing",
233
238
  "iot",
234
239
  "iot-data",
235
240
  "iot-jobs-data",
@@ -316,6 +321,7 @@ ServiceName = Literal[
316
321
  "neptune-graph",
317
322
  "neptunedata",
318
323
  "network-firewall",
324
+ "networkflowmonitor",
319
325
  "networkmanager",
320
326
  "networkmonitor",
321
327
  "notifications",
@@ -382,6 +388,7 @@ ServiceName = Literal[
382
388
  "s3",
383
389
  "s3control",
384
390
  "s3outposts",
391
+ "s3tables",
385
392
  "sagemaker",
386
393
  "sagemaker-a2i-runtime",
387
394
  "sagemaker-edge",
@@ -394,6 +401,7 @@ ServiceName = Literal[
394
401
  "schemas",
395
402
  "sdb",
396
403
  "secretsmanager",
404
+ "security-ir",
397
405
  "securityhub",
398
406
  "securitylake",
399
407
  "serverlessrepo",
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service client paginators.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/)
5
5
 
6
6
  Usage::
7
7
 
@@ -21,18 +21,20 @@ Usage::
21
21
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
22
22
  ```
23
23
 
24
- Copyright 2024 Vlad Emelianov
24
+ Copyright 2025 Vlad Emelianov
25
25
  """
26
26
 
27
+ from __future__ import annotations
28
+
27
29
  import sys
28
- from typing import Generic, Iterator, TypeVar
30
+ from typing import TYPE_CHECKING
29
31
 
30
32
  from botocore.paginate import PageIterator, Paginator
31
33
 
32
34
  from .type_defs import (
33
- ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef,
35
+ ListDataProtectionSettingsRequestPaginateTypeDef,
34
36
  ListDataProtectionSettingsResponseTypeDef,
35
- ListSessionsRequestListSessionsPaginateTypeDef,
37
+ ListSessionsRequestPaginateTypeDef,
36
38
  ListSessionsResponseTypeDef,
37
39
  )
38
40
 
@@ -45,43 +47,42 @@ else:
45
47
  __all__ = ("ListDataProtectionSettingsPaginator", "ListSessionsPaginator")
46
48
 
47
49
 
48
- _ItemTypeDef = TypeVar("_ItemTypeDef")
49
-
50
-
51
- class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
52
- def __iter__(self) -> Iterator[_ItemTypeDef]:
53
- """
54
- Proxy method to specify iterator item type.
55
- """
50
+ if TYPE_CHECKING:
51
+ _ListDataProtectionSettingsPaginatorBase = Paginator[ListDataProtectionSettingsResponseTypeDef]
52
+ else:
53
+ _ListDataProtectionSettingsPaginatorBase = Paginator # type: ignore[assignment]
56
54
 
57
55
 
58
- class ListDataProtectionSettingsPaginator(Paginator):
56
+ class ListDataProtectionSettingsPaginator(_ListDataProtectionSettingsPaginatorBase):
59
57
  """
60
58
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListDataProtectionSettings.html#WorkSpacesWeb.Paginator.ListDataProtectionSettings)
61
59
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listdataprotectionsettingspaginator)
62
60
  """
63
61
 
64
- def paginate(
65
- self,
66
- **kwargs: Unpack[
67
- ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef
68
- ],
69
- ) -> _PageIterator[ListDataProtectionSettingsResponseTypeDef]:
62
+ def paginate( # type: ignore[override]
63
+ self, **kwargs: Unpack[ListDataProtectionSettingsRequestPaginateTypeDef]
64
+ ) -> PageIterator[ListDataProtectionSettingsResponseTypeDef]:
70
65
  """
71
66
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListDataProtectionSettings.html#WorkSpacesWeb.Paginator.ListDataProtectionSettings.paginate)
72
67
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listdataprotectionsettingspaginator)
73
68
  """
74
69
 
75
70
 
76
- class ListSessionsPaginator(Paginator):
71
+ if TYPE_CHECKING:
72
+ _ListSessionsPaginatorBase = Paginator[ListSessionsResponseTypeDef]
73
+ else:
74
+ _ListSessionsPaginatorBase = Paginator # type: ignore[assignment]
75
+
76
+
77
+ class ListSessionsPaginator(_ListSessionsPaginatorBase):
77
78
  """
78
79
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessions.html#WorkSpacesWeb.Paginator.ListSessions)
79
80
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listsessionspaginator)
80
81
  """
81
82
 
82
- def paginate(
83
- self, **kwargs: Unpack[ListSessionsRequestListSessionsPaginateTypeDef]
84
- ) -> _PageIterator[ListSessionsResponseTypeDef]:
83
+ def paginate( # type: ignore[override]
84
+ self, **kwargs: Unpack[ListSessionsRequestPaginateTypeDef]
85
+ ) -> PageIterator[ListSessionsResponseTypeDef]:
85
86
  """
86
87
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessions.html#WorkSpacesWeb.Paginator.ListSessions.paginate)
87
88
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listsessionspaginator)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service client paginators.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/)
5
5
 
6
6
  Usage::
7
7
 
@@ -21,18 +21,20 @@ Usage::
21
21
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
22
22
  ```
23
23
 
24
- Copyright 2024 Vlad Emelianov
24
+ Copyright 2025 Vlad Emelianov
25
25
  """
26
26
 
27
+ from __future__ import annotations
28
+
27
29
  import sys
28
- from typing import Generic, Iterator, TypeVar
30
+ from typing import TYPE_CHECKING
29
31
 
30
32
  from botocore.paginate import PageIterator, Paginator
31
33
 
32
34
  from .type_defs import (
33
- ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef,
35
+ ListDataProtectionSettingsRequestPaginateTypeDef,
34
36
  ListDataProtectionSettingsResponseTypeDef,
35
- ListSessionsRequestListSessionsPaginateTypeDef,
37
+ ListSessionsRequestPaginateTypeDef,
36
38
  ListSessionsResponseTypeDef,
37
39
  )
38
40
 
@@ -43,38 +45,37 @@ else:
43
45
 
44
46
  __all__ = ("ListDataProtectionSettingsPaginator", "ListSessionsPaginator")
45
47
 
46
- _ItemTypeDef = TypeVar("_ItemTypeDef")
47
-
48
- class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
49
- def __iter__(self) -> Iterator[_ItemTypeDef]:
50
- """
51
- Proxy method to specify iterator item type.
52
- """
48
+ if TYPE_CHECKING:
49
+ _ListDataProtectionSettingsPaginatorBase = Paginator[ListDataProtectionSettingsResponseTypeDef]
50
+ else:
51
+ _ListDataProtectionSettingsPaginatorBase = Paginator # type: ignore[assignment]
53
52
 
54
- class ListDataProtectionSettingsPaginator(Paginator):
53
+ class ListDataProtectionSettingsPaginator(_ListDataProtectionSettingsPaginatorBase):
55
54
  """
56
55
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListDataProtectionSettings.html#WorkSpacesWeb.Paginator.ListDataProtectionSettings)
57
56
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listdataprotectionsettingspaginator)
58
57
  """
59
- def paginate(
60
- self,
61
- **kwargs: Unpack[
62
- ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef
63
- ],
64
- ) -> _PageIterator[ListDataProtectionSettingsResponseTypeDef]:
58
+ def paginate( # type: ignore[override]
59
+ self, **kwargs: Unpack[ListDataProtectionSettingsRequestPaginateTypeDef]
60
+ ) -> PageIterator[ListDataProtectionSettingsResponseTypeDef]:
65
61
  """
66
62
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListDataProtectionSettings.html#WorkSpacesWeb.Paginator.ListDataProtectionSettings.paginate)
67
63
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listdataprotectionsettingspaginator)
68
64
  """
69
65
 
70
- class ListSessionsPaginator(Paginator):
66
+ if TYPE_CHECKING:
67
+ _ListSessionsPaginatorBase = Paginator[ListSessionsResponseTypeDef]
68
+ else:
69
+ _ListSessionsPaginatorBase = Paginator # type: ignore[assignment]
70
+
71
+ class ListSessionsPaginator(_ListSessionsPaginatorBase):
71
72
  """
72
73
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessions.html#WorkSpacesWeb.Paginator.ListSessions)
73
74
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listsessionspaginator)
74
75
  """
75
- def paginate(
76
- self, **kwargs: Unpack[ListSessionsRequestListSessionsPaginateTypeDef]
77
- ) -> _PageIterator[ListSessionsResponseTypeDef]:
76
+ def paginate( # type: ignore[override]
77
+ self, **kwargs: Unpack[ListSessionsRequestPaginateTypeDef]
78
+ ) -> PageIterator[ListSessionsResponseTypeDef]:
78
79
  """
79
80
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/paginator/ListSessions.html#WorkSpacesWeb.Paginator.ListSessions.paginate)
80
81
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/paginators/#listsessionspaginator)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/type_defs/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,12 +11,14 @@ Usage::
11
11
  data: AssociateBrowserSettingsRequestRequestTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
20
  from datetime import datetime
19
- from typing import IO, Any, Dict, List, Mapping, Sequence, Union
21
+ from typing import IO, Any, Union
20
22
 
21
23
  from botocore.response import StreamingBody
22
24
 
@@ -30,6 +32,12 @@ from .literals import (
30
32
  SessionStatusType,
31
33
  )
32
34
 
35
+ if sys.version_info >= (3, 9):
36
+ from builtins import dict as Dict
37
+ from builtins import list as List
38
+ from collections.abc import Mapping, Sequence
39
+ else:
40
+ from typing import Dict, List, Mapping, Sequence
33
41
  if sys.version_info >= (3, 12):
34
42
  from typing import Literal, NotRequired, TypedDict
35
43
  else:
@@ -133,7 +141,7 @@ __all__ = (
133
141
  "IpRuleTypeDef",
134
142
  "ListBrowserSettingsRequestRequestTypeDef",
135
143
  "ListBrowserSettingsResponseTypeDef",
136
- "ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef",
144
+ "ListDataProtectionSettingsRequestPaginateTypeDef",
137
145
  "ListDataProtectionSettingsRequestRequestTypeDef",
138
146
  "ListDataProtectionSettingsResponseTypeDef",
139
147
  "ListIdentityProvidersRequestRequestTypeDef",
@@ -144,7 +152,7 @@ __all__ = (
144
152
  "ListNetworkSettingsResponseTypeDef",
145
153
  "ListPortalsRequestRequestTypeDef",
146
154
  "ListPortalsResponseTypeDef",
147
- "ListSessionsRequestListSessionsPaginateTypeDef",
155
+ "ListSessionsRequestPaginateTypeDef",
148
156
  "ListSessionsRequestRequestTypeDef",
149
157
  "ListSessionsResponseTypeDef",
150
158
  "ListTagsForResourceRequestRequestTypeDef",
@@ -972,11 +980,11 @@ class ListIpAccessSettingsResponseTypeDef(TypedDict):
972
980
  nextToken: NotRequired[str]
973
981
 
974
982
 
975
- class ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef(TypedDict):
983
+ class ListDataProtectionSettingsRequestPaginateTypeDef(TypedDict):
976
984
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
977
985
 
978
986
 
979
- class ListSessionsRequestListSessionsPaginateTypeDef(TypedDict):
987
+ class ListSessionsRequestPaginateTypeDef(TypedDict):
980
988
  portalId: str
981
989
  sessionId: NotRequired[str]
982
990
  sortBy: NotRequired[SessionSortByType]
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/type_defs/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,12 +11,14 @@ Usage::
11
11
  data: AssociateBrowserSettingsRequestRequestTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
20
  from datetime import datetime
19
- from typing import IO, Any, Dict, List, Mapping, Sequence, Union
21
+ from typing import IO, Any, Union
20
22
 
21
23
  from botocore.response import StreamingBody
22
24
 
@@ -30,6 +32,12 @@ from .literals import (
30
32
  SessionStatusType,
31
33
  )
32
34
 
35
+ if sys.version_info >= (3, 9):
36
+ from builtins import dict as Dict
37
+ from builtins import list as List
38
+ from collections.abc import Mapping, Sequence
39
+ else:
40
+ from typing import Dict, List, Mapping, Sequence
33
41
  if sys.version_info >= (3, 12):
34
42
  from typing import Literal, NotRequired, TypedDict
35
43
  else:
@@ -132,7 +140,7 @@ __all__ = (
132
140
  "IpRuleTypeDef",
133
141
  "ListBrowserSettingsRequestRequestTypeDef",
134
142
  "ListBrowserSettingsResponseTypeDef",
135
- "ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef",
143
+ "ListDataProtectionSettingsRequestPaginateTypeDef",
136
144
  "ListDataProtectionSettingsRequestRequestTypeDef",
137
145
  "ListDataProtectionSettingsResponseTypeDef",
138
146
  "ListIdentityProvidersRequestRequestTypeDef",
@@ -143,7 +151,7 @@ __all__ = (
143
151
  "ListNetworkSettingsResponseTypeDef",
144
152
  "ListPortalsRequestRequestTypeDef",
145
153
  "ListPortalsResponseTypeDef",
146
- "ListSessionsRequestListSessionsPaginateTypeDef",
154
+ "ListSessionsRequestPaginateTypeDef",
147
155
  "ListSessionsRequestRequestTypeDef",
148
156
  "ListSessionsResponseTypeDef",
149
157
  "ListTagsForResourceRequestRequestTypeDef",
@@ -838,10 +846,10 @@ class ListIpAccessSettingsResponseTypeDef(TypedDict):
838
846
  ResponseMetadata: ResponseMetadataTypeDef
839
847
  nextToken: NotRequired[str]
840
848
 
841
- class ListDataProtectionSettingsRequestListDataProtectionSettingsPaginateTypeDef(TypedDict):
849
+ class ListDataProtectionSettingsRequestPaginateTypeDef(TypedDict):
842
850
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
843
851
 
844
- class ListSessionsRequestListSessionsPaginateTypeDef(TypedDict):
852
+ class ListSessionsRequestPaginateTypeDef(TypedDict):
845
853
  portalId: str
846
854
  sessionId: NotRequired[str]
847
855
  sortBy: NotRequired[SessionSortByType]
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.71"
7
+ __version__ = "1.35.93"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: types-boto3-workspaces-web
3
- Version: 1.35.71
4
- Summary: Type annotations for boto3 WorkSpacesWeb 1.35.71 service generated with mypy-boto3-builder 8.4.1
3
+ Version: 1.35.93
4
+ Summary: Type annotations for boto3 WorkSpacesWeb 1.35.93 service generated with mypy-boto3-builder 8.8.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
@@ -9,7 +9,7 @@ License: MIT License
9
9
  Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/
10
10
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
11
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 workspaces-web type-annotations botocore mypy typeshed autocomplete
12
+ Keywords: boto3 workspaces-web boto3-stubs type-annotations mypy typeshed autocomplete
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
34
 
35
35
  <a id="types-boto3-workspaces-web"></a>
36
36
 
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
44
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
46
  Type annotations for
47
- [boto3 WorkSpacesWeb 1.35.71](https://pypi.org/project/boto3/) compatible with
47
+ [boto3 WorkSpacesWeb 1.35.93](https://pypi.org/project/boto3/) compatible with
48
48
  [VSCode](https://code.visualstudio.com/),
49
49
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
50
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,8 +52,8 @@ Type annotations for
52
52
  [mypy](https://github.com/python/mypy),
53
53
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
54
 
55
- Generated by
56
- [mypy-boto3-builder 8.4.1](https://github.com/youtype/mypy_boto3_builder).
55
+ Generated with
56
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
57
57
 
58
58
  More information can be found on
59
59
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -61,10 +61,11 @@ More information can be found on
61
61
 
62
62
  See how it helps you find and fix potential bugs:
63
63
 
64
- ![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
64
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
65
65
 
66
66
  - [types-boto3-workspaces-web](#types-boto3-workspaces-web)
67
67
  - [How to install](#how-to-install)
68
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
68
69
  - [VSCode extension](#vscode-extension)
69
70
  - [From PyPI with pip](#from-pypi-with-pip)
70
71
  - [How to uninstall](#how-to-uninstall)
@@ -76,6 +77,7 @@ See how it helps you find and fix potential bugs:
76
77
  - [Other IDEs](#other-ides)
77
78
  - [mypy](#mypy)
78
79
  - [pyright](#pyright)
80
+ - [Pylint compatibility](#pylint-compatibility)
79
81
  - [Explicit type annotations](#explicit-type-annotations)
80
82
  - [Client annotations](#client-annotations)
81
83
  - [Paginators annotations](#paginators-annotations)
@@ -94,6 +96,21 @@ See how it helps you find and fix potential bugs:
94
96
 
95
97
  ## How to install
96
98
 
99
+ <a id="generate-locally-(recommended)"></a>
100
+
101
+ ### Generate locally (recommended)
102
+
103
+ You can generate type annotations for `boto3` package locally with
104
+ `mypy_boto3_builder`. Use
105
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
106
+ isolation.
107
+
108
+ 1. Run mypy-boto3-builder in your package root directory:
109
+ `uvx --with 'boto3==1.35.93' mypy_boto3_builder`
110
+ 2. Select `boto3` AWS SDK.
111
+ 3. Add `WorkSpacesWeb` service.
112
+ 4. Use provided commands to install generated packages.
113
+
97
114
  <a id="vscode-extension"></a>
98
115
 
99
116
  ### VSCode extension
@@ -114,12 +131,10 @@ Install `types-boto3` for `WorkSpacesWeb` service.
114
131
  # install with boto3 type annotations
115
132
  python -m pip install 'types-boto3[workspaces-web]'
116
133
 
117
-
118
134
  # Lite version does not provide session.client/resource overloads
119
135
  # it is more RAM-friendly, but requires explicit type annotations
120
136
  python -m pip install 'types-boto3-lite[workspaces-web]'
121
137
 
122
-
123
138
  # standalone installation
124
139
  python -m pip install types-boto3-workspaces-web
125
140
  ```
@@ -269,6 +284,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
269
284
  Type checking should now work. No explicit type annotations required, write
270
285
  your `boto3` code as usual.
271
286
 
287
+ <a id="pylint-compatibility"></a>
288
+
289
+ ### Pylint compatibility
290
+
291
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
292
+ `types-boto3-workspaces-web` dependency in production. However, there is an
293
+ issue in `pylint` that it complains about undefined variables. To fix it, set
294
+ all types to `object` in non-`TYPE_CHECKING` mode.
295
+
296
+ ```python
297
+ from typing import TYPE_CHECKING
298
+
299
+ if TYPE_CHECKING:
300
+ from types_boto3_ec2 import EC2Client, EC2ServiceResource
301
+ from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
302
+ from types_boto3_ec2.paginators import DescribeVolumesPaginator
303
+ else:
304
+ EC2Client = object
305
+ EC2ServiceResource = object
306
+ BundleTaskCompleteWaiter = object
307
+ DescribeVolumesPaginator = object
308
+
309
+ ...
310
+ ```
311
+
272
312
  <a id="explicit-type-annotations"></a>
273
313
 
274
314
  ## Explicit type annotations
@@ -0,0 +1,18 @@
1
+ types_boto3_workspaces_web/__init__.py,sha256=jsaKXWIIhsOEosYUZxub9d04oapTIx9dRGRDtoEZv-4,927
2
+ types_boto3_workspaces_web/__init__.pyi,sha256=lziJrQushndjgAwEFWiZA6im2BlU8NbZ3wFMlPa4KkI,926
3
+ types_boto3_workspaces_web/__main__.py,sha256=1KdGvweJE9IPDXWObOEcxTeBn6ZHeoANHas-G3_jhMY,1010
4
+ types_boto3_workspaces_web/client.py,sha256=JnikdxUu4BKE4DJQpvacZpGVvvEXsCiQNKJIZ3Qsb20,46115
5
+ types_boto3_workspaces_web/client.pyi,sha256=8_gECiTB-llmnVRVZckY2AO2hbS5GR-AdkE_N3hYXo4,46112
6
+ types_boto3_workspaces_web/literals.py,sha256=tDvNkieQIjUhbGUEj_TD8JZN_hibMlbq8QpQcy4mS_k,10289
7
+ types_boto3_workspaces_web/literals.pyi,sha256=grjVO4xrtoMAkeYd8SB_ZN2mkXn1kVCsb9rq0l8Clww,10287
8
+ types_boto3_workspaces_web/paginator.py,sha256=_F4c9Jrm3PB-1GRKU3yDJsqSZS2XnL-XJAH3w84iXv8,3722
9
+ types_boto3_workspaces_web/paginator.pyi,sha256=MAMpYU1qvPheEuAeSSruwx-053r2TZl5_z_3mvmmE7U,3715
10
+ types_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_workspaces_web/type_defs.py,sha256=tO2nKGHsHKYyvKqUHvjL4oekmGcopeQiQ9mSAAWfe0c,36265
12
+ types_boto3_workspaces_web/type_defs.pyi,sha256=A6BkNMY6cSWWWffL2xbcJTxRUFCxR6rV71myZTlwO4E,36108
13
+ types_boto3_workspaces_web/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
14
+ types_boto3_workspaces_web-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ types_boto3_workspaces_web-1.35.93.dist-info/METADATA,sha256=Y8lFqX783RGwV53AovkZDSKmTJpThH3I9-SfBudP1GE,15167
16
+ types_boto3_workspaces_web-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
17
+ types_boto3_workspaces_web-1.35.93.dist-info/top_level.txt,sha256=akr6BGflMPqDlF94zDPuM15CSnadUBeBacufmHrChPI,27
18
+ types_boto3_workspaces_web-1.35.93.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.7.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,18 +0,0 @@
1
- types_boto3_workspaces_web/__init__.py,sha256=2aQCeRSABUaDDNRkrgbDNHHkGCWxPsgtmJVILKshqQ4,927
2
- types_boto3_workspaces_web/__init__.pyi,sha256=igGDWIuKaPCZ__S05lqo_TaDytCF7Hn_AHnAxVHr0VM,926
3
- types_boto3_workspaces_web/__main__.py,sha256=mhPg1iU2Yieas4a1LtquSe3cHZzQm6bH0VD5xJ1pG6U,976
4
- types_boto3_workspaces_web/client.py,sha256=hy35VJii3fwUDDPqCyXWIufymD75yp4kKeG75yj_Xoc,46193
5
- types_boto3_workspaces_web/client.pyi,sha256=lr6b31pjjqMoFPTVxSHc27sjm6mbQs178xUH3HMGUCM,46189
6
- types_boto3_workspaces_web/literals.py,sha256=8cDIGfD37oWkTMvNjjcFPj2Y3JjOcfg4AhoBQD49WEw,10114
7
- types_boto3_workspaces_web/literals.pyi,sha256=zzRrxi6xYqpv4RmARcjmHuvwxDcFtxUAsUegUAC0Adc,10112
8
- types_boto3_workspaces_web/paginator.py,sha256=t8GmpaDU-mCPOkwz44_o1mGMGQVl9poDrvslxdh0iYs,3560
9
- types_boto3_workspaces_web/paginator.pyi,sha256=ZQHR-y3hJPRgt6NJRYATaKD-tUh6zpxUrOUGL2hS4q4,3553
10
- types_boto3_workspaces_web/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_workspaces_web/type_defs.py,sha256=BmTWJ8xOclecjmB3YzjVhLnHaQo20SUJIvesN-ZQLcg,36125
12
- types_boto3_workspaces_web/type_defs.pyi,sha256=ATZR0BvjXwh07EoxKT_dem0g56t0tke5wmY02Y9VFAA,35968
13
- types_boto3_workspaces_web/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
14
- types_boto3_workspaces_web-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
15
- types_boto3_workspaces_web-1.35.71.dist-info/METADATA,sha256=IyLWLO5AU5xYgMGFdEhXfl-LApZe4hLYEDCp3X6h66o,13825
16
- types_boto3_workspaces_web-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
17
- types_boto3_workspaces_web-1.35.71.dist-info/top_level.txt,sha256=akr6BGflMPqDlF94zDPuM15CSnadUBeBacufmHrChPI,27
18
- types_boto3_workspaces_web-1.35.71.dist-info/RECORD,,