Skip to content

Commit cc166c5

Browse files
Update generated code (#1803)
update generated code
1 parent 78bdc82 commit cc166c5

File tree

9 files changed

+14
-8
lines changed

9 files changed

+14
-8
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.328.1"
3+
"${LATEST}": "3.328.3"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Lambda/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Add Python 3.13 (python3.13) support to AWS Lambda
8+
- AWS api-change: Add Node 22.x (node22.x) support to AWS Lambda
89

910
### Changed
1011

src/Service/Lambda/src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ final class Runtime
2323
public const NODEJS_16_X = 'nodejs16.x';
2424
public const NODEJS_18_X = 'nodejs18.x';
2525
public const NODEJS_20_X = 'nodejs20.x';
26+
public const NODEJS_22_X = 'nodejs22.x';
2627
public const NODEJS_4_3 = 'nodejs4.3';
2728
public const NODEJS_4_3_EDGE = 'nodejs4.3-edge';
2829
public const NODEJS_6_10 = 'nodejs6.10';
@@ -66,6 +67,7 @@ public static function exists(string $value): bool
6667
self::NODEJS_16_X => true,
6768
self::NODEJS_18_X => true,
6869
self::NODEJS_20_X => true,
70+
self::NODEJS_22_X => true,
6971
self::NODEJS_4_3 => true,
7072
self::NODEJS_4_3_EDGE => true,
7173
self::NODEJS_6_10 => true,

src/Service/TimestreamQuery/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Changed
1010

1111
- use strict comparison `null !==` instead of `!`
12+
- AWS enhancement: Documentation updates.
1213

1314
## 2.0.4
1415

src/Service/TimestreamQuery/src/Exception/AccessDeniedException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* You are not authorized to perform this action.
8+
* You do not have the necessary permissions to access the account settings.
99
*/
1010
final class AccessDeniedException extends ClientException
1111
{

src/Service/TimestreamQuery/src/Exception/InternalServerException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* The service was unable to fully process this request because of an internal server error.
8+
* An internal server error occurred while processing the request.
99
*/
1010
final class InternalServerException extends ClientException
1111
{

src/Service/TimestreamQuery/src/Exception/InvalidEndpointException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* The requested endpoint was not valid.
8+
* The requested endpoint is invalid.
99
*/
1010
final class InvalidEndpointException extends ClientException
1111
{

src/Service/TimestreamQuery/src/Exception/ThrottlingException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* The request was denied due to request throttling.
8+
* The request was throttled due to excessive requests.
99
*/
1010
final class ThrottlingException extends ClientException
1111
{

src/Service/TimestreamQuery/src/TimestreamQueryClient.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,14 @@ public function prepareQuery($input): PrepareQueryResponse
139139
* `Query` is a synchronous operation that enables you to run a query against your Amazon Timestream data.
140140
*
141141
* If you enabled `QueryInsights`, this API also returns insights and metrics related to the query that you executed.
142-
* `QueryInsights` helps with performance tuning of your query.
142+
* `QueryInsights` helps with performance tuning of your query. For more information about `QueryInsights`, see Using
143+
* query insights to optimize queries in Amazon Timestream [^1].
143144
*
144145
* > The maximum number of `Query` API requests you're allowed to make with `QueryInsights` enabled is 1 query per
145146
* > second (QPS). If you exceed this query rate, it might result in throttling.
146147
*
147148
* `Query` will time out after 60 seconds. You must update the default timeout in the SDK to support a timeout of 60
148-
* seconds. See the code sample [^1] for details.
149+
* seconds. See the code sample [^2] for details.
149150
*
150151
* Your query request will fail in the following cases:
151152
*
@@ -160,7 +161,8 @@ public function prepareQuery($input): PrepareQueryResponse
160161
* the result reader do not have the same query string in the query requests, the query will fail with an `Invalid
161162
* pagination token` error.
162163
*
163-
* [^1]: https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.run-query.html
164+
* [^1]: https://docs.aws.amazon.com/timestream/latest/developerguide/using-query-insights.html
165+
* [^2]: https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.run-query.html
164166
*
165167
* @see https://docs.aws.amazon.com/timestream/latest/developerguide/API_Query.html
166168
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-query.timestream-2018-11-01.html#query

0 commit comments

Comments
 (0)