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