Skip to content

Commit 467a79e

Browse files
Update generated code (#1806)
update generated code
1 parent 453d240 commit 467a79e

25 files changed

+382
-41
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.3"
3+
"${LATEST}": "3.329.0"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/AppSync/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Add support for the Amazon Bedrock Runtime.
8+
59
### Changed
610

711
- use strict comparison `null !==` instead of `!`

src/Service/AppSync/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "3.0-dev"
31+
"dev-master": "3.1-dev"
3232
}
3333
}
3434
}

src/Service/AppSync/src/Enum/DataSourceType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
final class DataSourceType
66
{
7+
public const AMAZON_BEDROCK_RUNTIME = 'AMAZON_BEDROCK_RUNTIME';
78
public const AMAZON_DYNAMODB = 'AMAZON_DYNAMODB';
89
public const AMAZON_ELASTICSEARCH = 'AMAZON_ELASTICSEARCH';
910
public const AMAZON_EVENTBRIDGE = 'AMAZON_EVENTBRIDGE';
@@ -16,6 +17,7 @@ final class DataSourceType
1617
public static function exists(string $value): bool
1718
{
1819
return isset([
20+
self::AMAZON_BEDROCK_RUNTIME => true,
1921
self::AMAZON_DYNAMODB => true,
2022
self::AMAZON_ELASTICSEARCH => true,
2123
self::AMAZON_EVENTBRIDGE => true,

src/Service/CloudWatchLogs/CHANGELOG.md

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

77
- use strict comparison `null !==` instead of `!`
8+
- AWS enhancement: Documentation updates.
89

910
## 2.3.0
1011

src/Service/CloudWatchLogs/src/Input/PutLogEventsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ final class PutLogEventsRequest extends Input
5050
private $sequenceToken;
5151

5252
/**
53-
* Reserved for internal use.
53+
* The entity associated with the log events.
5454
*
5555
* @var Entity|null
5656
*/

src/Service/CloudWatchLogs/src/Result/PutLogEventsResponse.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ class PutLogEventsResponse extends Result
3030
private $rejectedLogEventsInfo;
3131

3232
/**
33-
* Reserved for internal use.
33+
* Information about why the entity is rejected when calling `PutLogEvents`. Only returned when the entity is rejected.
34+
*
35+
* > When the entity is rejected, the events may still be accepted.
3436
*
3537
* @var RejectedEntityInfo|null
3638
*/

src/Service/CloudWatchLogs/src/ValueObject/Entity.php

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,33 @@
33
namespace AsyncAws\CloudWatchLogs\ValueObject;
44

55
/**
6-
* Reserved for internal use.
6+
* The entity associated with the log events in a `PutLogEvents` call.
77
*/
88
final class Entity
99
{
1010
/**
11-
* Reserved for internal use.
11+
* The attributes of the entity which identify the specific entity, as a list of key-value pairs. Entities with the same
12+
* `keyAttributes` are considered to be the same entity.
13+
*
14+
* There are five allowed attributes (key names): `Type`, `ResourceType`, `Identifier``Name`, and `Environment`.
15+
*
16+
* For details about how to use the key attributes, see How to add related information to telemetry [^1] in the
17+
* *CloudWatch User Guide*.
18+
*
19+
* [^1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html
1220
*
1321
* @var array<string, string>|null
1422
*/
1523
private $keyAttributes;
1624

1725
/**
18-
* Reserved for internal use.
26+
* Additional attributes of the entity that are not used to specify the identity of the entity. A list of key-value
27+
* pairs.
28+
*
29+
* For details about how to use the attributes, see How to add related information to telemetry [^1] in the *CloudWatch
30+
* User Guide*.
31+
*
32+
* [^1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html
1933
*
2034
* @var array<string, string>|null
2135
*/

src/Service/CloudWatchLogs/src/ValueObject/RejectedEntityInfo.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
use AsyncAws\Core\Exception\InvalidArgument;
77

88
/**
9-
* Reserved for internal use.
9+
* If an entity is rejected when a `PutLogEvents` request was made, this includes details about the reason for the
10+
* rejection.
1011
*/
1112
final class RejectedEntityInfo
1213
{
1314
/**
14-
* Reserved for internal use.
15+
* The type of error that caused the rejection of the entity when calling `PutLogEvents`.
1516
*
1617
* @var EntityRejectionErrorType::*
1718
*/

src/Service/ElastiCache/CHANGELOG.md

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

77
- use strict comparison `null !==` instead of `!`
8+
- AWS enhancement: Documentation updates.
89

910
## 1.2.3
1011

0 commit comments

Comments
 (0)