mypy-boto3-workspaces-web 1.35.0__py3-none-any.whl → 1.35.23__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,16 +7,21 @@ Usage::
7
7
  from boto3.session import Session
8
8
  from mypy_boto3_workspaces_web import (
9
9
  Client,
10
+ ListSessionsPaginator,
10
11
  WorkSpacesWebClient,
11
12
  )
12
13
 
13
14
  session = Session()
14
15
  client: WorkSpacesWebClient = session.client("workspaces-web")
16
+
17
+ list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
15
18
  ```
16
19
  """
17
20
 
18
21
  from .client import WorkSpacesWebClient
22
+ from .paginator import ListSessionsPaginator
19
23
 
20
24
  Client = WorkSpacesWebClient
21
25
 
22
- __all__ = ("Client", "WorkSpacesWebClient")
26
+
27
+ __all__ = ("Client", "ListSessionsPaginator", "WorkSpacesWebClient")
@@ -7,16 +7,20 @@ Usage::
7
7
  from boto3.session import Session
8
8
  from mypy_boto3_workspaces_web import (
9
9
  Client,
10
+ ListSessionsPaginator,
10
11
  WorkSpacesWebClient,
11
12
  )
12
13
 
13
14
  session = Session()
14
15
  client: WorkSpacesWebClient = session.client("workspaces-web")
16
+
17
+ list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
15
18
  ```
16
19
  """
17
20
 
18
21
  from .client import WorkSpacesWebClient
22
+ from .paginator import ListSessionsPaginator
19
23
 
20
24
  Client = WorkSpacesWebClient
21
25
 
22
- __all__ = ("Client", "WorkSpacesWebClient")
26
+ __all__ = ("Client", "ListSessionsPaginator", "WorkSpacesWebClient")
@@ -10,9 +10,9 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.WorkSpacesWeb 1.35.0\n"
14
- "Version: 1.35.0\n"
15
- "Builder version: 7.26.0\n"
13
+ "Type annotations for boto3.WorkSpacesWeb 1.35.23\n"
14
+ "Version: 1.35.23\n"
15
+ "Builder version: 8.1.1\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb\n"
18
18
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.35.0")
27
+ print("1.35.23")
28
28
 
29
29
 
30
30
  def main() -> None: