Skip to content

Commit 285de75

Browse files
Update generated code (#1555)
update generated code
1 parent 3289a8c commit 285de75

9 files changed

+18
-11
lines changed

CHANGELOG.md

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

77
- Allow passing explicit null values for optional fields of input objects
8+
- AWS enhancement: Documentation updates.
89

910
## 1.0.1
1011

src/Exception/FileTooLargeException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* The specified file exceeds the file size limit for AWS CodeCommit. For more information about limits in AWS
9-
* CodeCommit, see AWS CodeCommit User Guide [^1].
8+
* The specified file exceeds the file size limit for CodeCommit. For more information about limits in CodeCommit, see
9+
* Quotas [^1] in the *CodeCommit User Guide*.
1010
*
1111
* [^1]: https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html
1212
*/

src/Exception/InvalidRepositoryTriggerRegionException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* The AWS Region for the trigger target does not match the AWS Region for the repository. Triggers must be created in
9-
* the same Region as the target for the trigger.
8+
* The Amazon Web Services Region for the trigger target does not match the Amazon Web Services Region for the
9+
* repository. Triggers must be created in the same Amazon Web Services Region as the target for the trigger.
1010
*/
1111
final class InvalidRepositoryTriggerRegionException extends ClientException
1212
{

src/Exception/TooManyTagsException.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 maximum number of tags for an AWS CodeCommit resource has been exceeded.
8+
* The maximum number of tags for an CodeCommit resource has been exceeded.
99
*/
1010
final class TooManyTagsException extends ClientException
1111
{

src/Input/CreateRepositoryInput.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ final class CreateRepositoryInput extends Input
1515
/**
1616
* The name of the new repository to be created.
1717
*
18-
* > The repository name must be unique across the calling AWS account. Repository names are limited to 100
19-
* > alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about
20-
* > the limits on repository names, see Limits [^1] in the *AWS CodeCommit User Guide*. The suffix .git is prohibited.
18+
* > The repository name must be unique across the calling Amazon Web Services account. Repository names are limited to
19+
* > 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information
20+
* > about the limits on repository names, see Quotas [^1] in the *CodeCommit User Guide*. The suffix .git is
21+
* > prohibited.
2122
*
2223
* [^1]: https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html
2324
*

src/Input/ListRepositoriesInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class ListRepositoriesInput extends Input
1616
{
1717
/**
1818
* An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list
19-
* repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is
19+
* repository operations. When the client sends the token back to CodeCommit, another page of 1,000 records is
2020
* retrieved.
2121
*
2222
* @var string|null

src/Result/ListRepositoriesOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ListRepositoriesOutput extends Result implements \IteratorAggregate
2525

2626
/**
2727
* An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list
28-
* repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is
28+
* repository operations. When the client sends the token back to CodeCommit, another page of 1,000 records is
2929
* retrieved.
3030
*
3131
* @var string|null

src/ValueObject/RepositoryMetadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
final class RepositoryMetadata
99
{
1010
/**
11-
* The ID of the AWS account associated with the repository.
11+
* The ID of the Amazon Web Services account associated with the repository.
1212
*
1313
* @var string|null
1414
*/

src/ValueObject/RepositoryTrigger.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77

88
/**
99
* Information about a trigger for a repository.
10+
*
11+
* > If you want to receive notifications about repository events, consider using notifications instead of triggers. For
12+
* > more information, see Configuring notifications for repository events [^1].
13+
*
14+
* [^1]: https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-repository-email.html
1015
*/
1116
final class RepositoryTrigger
1217
{

0 commit comments

Comments
 (0)