types-boto3-redshift 1.35.71__py3-none-any.whl → 1.40.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.
@@ -1,6 +1,10 @@
1
1
  """
2
2
  Main interface for redshift service.
3
3
 
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
@@ -97,8 +101,6 @@ Usage::
97
101
  get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
98
102
  list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
99
103
  ```
100
-
101
- Copyright 2024 Vlad Emelianov
102
104
  """
103
105
 
104
106
  from .client import RedshiftClient
@@ -1,6 +1,10 @@
1
1
  """
2
2
  Main interface for redshift service.
3
3
 
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
@@ -97,8 +101,6 @@ Usage::
97
101
  get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
98
102
  list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
99
103
  ```
100
-
101
- Copyright 2024 Vlad Emelianov
102
104
  """
103
105
 
104
106
  from .client import RedshiftClient
@@ -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 Redshift 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 Redshift 1.40.0\n"
16
+ "Version: 1.40.0\n"
17
+ "Builder version: 8.11.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_redshift//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#redshift\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.40.0\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