Skip to content

Commit

Permalink
Update generated code (async-aws#1357)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot authored Jan 5, 2023
1 parent b0f6599 commit 99040f8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.255.7"
"${LATEST}": "3.255.9"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CloudWatchLogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS enhancement: Documentation updates.

## 1.5.0

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

/**
* The event was already logged.
*
* ! `PutLogEvents` actions are now always accepted and never return `DataAlreadyAcceptedException` regardless of
* ! whether a given batch of log events has already been accepted.
*/
final class DataAlreadyAcceptedException extends ClientException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
/**
* The sequence token is not valid. You can get the correct sequence token in the `expectedSequenceToken` field in the
* `InvalidSequenceTokenException` message.
*
* ! `PutLogEvents` actions are now always accepted and never return `InvalidSequenceTokenException` regardless of
* ! receiving an invalid sequence token.
*/
final class InvalidSequenceTokenException extends ClientException
{
Expand Down
7 changes: 1 addition & 6 deletions src/Service/CloudWatchLogs/src/Input/PutLogEventsRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,7 @@ final class PutLogEventsRequest extends Input
private $logEvents;

/**
* The sequence token obtained from the response of the previous `PutLogEvents` call. An upload in a newly created log
* stream does not require a sequence token. You can also get the sequence token using DescribeLogStreams. If you call
* `PutLogEvents` twice within a narrow time period using the same value for `sequenceToken`, both calls might be
* successful or one might be rejected.
*
* @see https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html
* The sequence token obtained from the response of the previous `PutLogEvents` call.
*
* @var string|null
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Service/CloudWatchLogs/src/ValueObject/LogStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ final class LogStream
private $lastEventTimestamp;

/**
* The ingestion time, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
* The ingestion time, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC` The `lastIngestionTime`
* value updates on an eventual consistency basis. It typically updates in less than an hour after ingestion, but in
* rare situations might take longer.
*/
private $lastIngestionTime;

Expand Down

0 comments on commit 99040f8

Please sign in to comment.