mypy-boto3-redshift 1.33.0__py3-none-any.whl → 1.34.37__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.

Potentially problematic release.


This version of mypy-boto3-redshift might be problematic. Click here for more details.

@@ -45,6 +45,7 @@ Usage::
45
45
  DescribeUsageLimitsPaginator,
46
46
  GetReservedNodeExchangeConfigurationOptionsPaginator,
47
47
  GetReservedNodeExchangeOfferingsPaginator,
48
+ ListRecommendationsPaginator,
48
49
  RedshiftClient,
49
50
  SnapshotAvailableWaiter,
50
51
  )
@@ -92,6 +93,7 @@ Usage::
92
93
  describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
93
94
  get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
94
95
  get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
96
+ list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
95
97
  ```
96
98
  """
97
99
 
@@ -132,6 +134,7 @@ from .paginator import (
132
134
  DescribeUsageLimitsPaginator,
133
135
  GetReservedNodeExchangeConfigurationOptionsPaginator,
134
136
  GetReservedNodeExchangeOfferingsPaginator,
137
+ ListRecommendationsPaginator,
135
138
  )
136
139
  from .waiter import (
137
140
  ClusterAvailableWaiter,
@@ -142,7 +145,6 @@ from .waiter import (
142
145
 
143
146
  Client = RedshiftClient
144
147
 
145
-
146
148
  __all__ = (
147
149
  "Client",
148
150
  "ClusterAvailableWaiter",
@@ -183,6 +185,7 @@ __all__ = (
183
185
  "DescribeUsageLimitsPaginator",
184
186
  "GetReservedNodeExchangeConfigurationOptionsPaginator",
185
187
  "GetReservedNodeExchangeOfferingsPaginator",
188
+ "ListRecommendationsPaginator",
186
189
  "RedshiftClient",
187
190
  "SnapshotAvailableWaiter",
188
191
  )
@@ -45,6 +45,7 @@ Usage::
45
45
  DescribeUsageLimitsPaginator,
46
46
  GetReservedNodeExchangeConfigurationOptionsPaginator,
47
47
  GetReservedNodeExchangeOfferingsPaginator,
48
+ ListRecommendationsPaginator,
48
49
  RedshiftClient,
49
50
  SnapshotAvailableWaiter,
50
51
  )
@@ -92,6 +93,7 @@ Usage::
92
93
  describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
93
94
  get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
94
95
  get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
96
+ list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
95
97
  ```
96
98
  """
97
99
 
@@ -132,6 +134,7 @@ from .paginator import (
132
134
  DescribeUsageLimitsPaginator,
133
135
  GetReservedNodeExchangeConfigurationOptionsPaginator,
134
136
  GetReservedNodeExchangeOfferingsPaginator,
137
+ ListRecommendationsPaginator,
135
138
  )
136
139
  from .waiter import (
137
140
  ClusterAvailableWaiter,
@@ -182,6 +185,7 @@ __all__ = (
182
185
  "DescribeUsageLimitsPaginator",
183
186
  "GetReservedNodeExchangeConfigurationOptionsPaginator",
184
187
  "GetReservedNodeExchangeOfferingsPaginator",
188
+ "ListRecommendationsPaginator",
185
189
  "RedshiftClient",
186
190
  "SnapshotAvailableWaiter",
187
191
  )
@@ -10,12 +10,13 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.Redshift 1.33.0\nVersion: 1.33.0\nBuilder version:"
14
- " 7.20.3\nDocs: "
15
- " https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift//\nBoto3 docs: "
16
- " https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift\nOther"
17
- " services: https://pypi.org/project/boto3-stubs/\nChangelog: "
18
- " https://github.com/youtype/mypy_boto3_builder/releases"
13
+ "Type annotations for boto3.Redshift 1.34.37\n"
14
+ "Version: 1.34.37\n"
15
+ "Builder version: 7.23.1\n"
16
+ "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift//\n"
17
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift\n"
18
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
19
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
19
20
  )
20
21
 
21
22
 
@@ -23,7 +24,7 @@ def print_version() -> None:
23
24
  """
24
25
  Print package version to stdout.
25
26
  """
26
- print("1.33.0")
27
+ print("1.34.37")
27
28
 
28
29
 
29
30
  def main() -> None: