mypy-boto3-workspaces-web 1.35.23__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.
@@ -7,6 +7,7 @@ Usage::
7
7
  from boto3.session import Session
8
8
  from mypy_boto3_workspaces_web import (
9
9
  Client,
10
+ ListDataProtectionSettingsPaginator,
10
11
  ListSessionsPaginator,
11
12
  WorkSpacesWebClient,
12
13
  )
@@ -14,14 +15,22 @@ Usage::
14
15
  session = Session()
15
16
  client: WorkSpacesWebClient = session.client("workspaces-web")
16
17
 
18
+ list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
17
19
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
18
20
  ```
21
+
22
+ Copyright 2025 Vlad Emelianov
19
23
  """
20
24
 
21
25
  from .client import WorkSpacesWebClient
22
- from .paginator import ListSessionsPaginator
26
+ from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
23
27
 
24
28
  Client = WorkSpacesWebClient
25
29
 
26
30
 
27
- __all__ = ("Client", "ListSessionsPaginator", "WorkSpacesWebClient")
31
+ __all__ = (
32
+ "Client",
33
+ "ListDataProtectionSettingsPaginator",
34
+ "ListSessionsPaginator",
35
+ "WorkSpacesWebClient",
36
+ )
@@ -7,6 +7,7 @@ Usage::
7
7
  from boto3.session import Session
8
8
  from mypy_boto3_workspaces_web import (
9
9
  Client,
10
+ ListDataProtectionSettingsPaginator,
10
11
  ListSessionsPaginator,
11
12
  WorkSpacesWebClient,
12
13
  )
@@ -14,13 +15,21 @@ Usage::
14
15
  session = Session()
15
16
  client: WorkSpacesWebClient = session.client("workspaces-web")
16
17
 
18
+ list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
17
19
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
18
20
  ```
21
+
22
+ Copyright 2025 Vlad Emelianov
19
23
  """
20
24
 
21
25
  from .client import WorkSpacesWebClient
22
- from .paginator import ListSessionsPaginator
26
+ from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
23
27
 
24
28
  Client = WorkSpacesWebClient
25
29
 
26
- __all__ = ("Client", "ListSessionsPaginator", "WorkSpacesWebClient")
30
+ __all__ = (
31
+ "Client",
32
+ "ListDataProtectionSettingsPaginator",
33
+ "ListSessionsPaginator",
34
+ "WorkSpacesWebClient",
35
+ )
@@ -1,5 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
3
5
  """
4
6
 
5
7
  import sys
@@ -9,14 +11,14 @@ def print_info() -> None:
9
11
  """
10
12
  Print package info to stdout.
11
13
  """
12
- print(
13
- "Type annotations for boto3.WorkSpacesWeb 1.35.23\n"
14
- "Version: 1.35.23\n"
15
- "Builder version: 8.1.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"
16
18
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\n"
17
- "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#workspacesweb\n"
18
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
19
- "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
20
22
  )
21
23
 
22
24
 
@@ -24,7 +26,7 @@ def print_version() -> None:
24
26
  """
25
27
  Print package version to stdout.
26
28
  """
27
- print("1.35.23")
29
+ sys.stdout.write("1.35.93\n")
28
30
 
29
31
 
30
32
  def main() -> None:
@@ -32,7 +34,8 @@ def main() -> None:
32
34
  Main CLI entrypoint.
33
35
  """
34
36
  if "--version" in sys.argv:
35
- return print_version()
37
+ print_version()
38
+ return
36
39
  print_info()
37
40
 
38
41