Skip to content

Commit 8ab8134

Browse files
Update generated code (#1574)
update generated code
1 parent 7cfe483 commit 8ab8134

14 files changed

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

src/Service/CodeDeploy/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
## 2.0.0
1011

src/Service/CodeDeploy/src/Exception/ApplicationDoesNotExistException.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 application does not exist with the IAM user or Amazon Web Services account.
8+
* The application does not exist with the user or Amazon Web Services account.
99
*/
1010
final class ApplicationDoesNotExistException extends ClientException
1111
{

src/Service/CodeDeploy/src/Exception/DeploymentConfigDoesNotExistException.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 deployment configuration does not exist with the IAM user or Amazon Web Services account.
8+
* The deployment configuration does not exist with the user or Amazon Web Services account.
99
*/
1010
final class DeploymentConfigDoesNotExistException extends ClientException
1111
{

src/Service/CodeDeploy/src/Exception/DeploymentDoesNotExistException.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 deployment with the IAM user or Amazon Web Services account does not exist.
8+
* The deployment with the user or Amazon Web Services account does not exist.
99
*/
1010
final class DeploymentDoesNotExistException extends ClientException
1111
{

src/Service/CodeDeploy/src/Exception/DeploymentGroupDoesNotExistException.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 named deployment group with the IAM user or Amazon Web Services account does not exist.
8+
* The named deployment group with the user or Amazon Web Services account does not exist.
99
*/
1010
final class DeploymentGroupDoesNotExistException extends ClientException
1111
{

src/Service/CodeDeploy/src/Exception/RevisionDoesNotExistException.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 named revision does not exist with the IAM user or Amazon Web Services account.
8+
* The named revision does not exist with the user or Amazon Web Services account.
99
*/
1010
final class RevisionDoesNotExistException extends ClientException
1111
{

src/Service/CodeDeploy/src/Input/CreateDeploymentInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
final class CreateDeploymentInput extends Input
2020
{
2121
/**
22-
* The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account.
22+
* The name of an CodeDeploy application associated with the user or Amazon Web Services account.
2323
*
2424
* @required
2525
*
@@ -42,7 +42,7 @@ final class CreateDeploymentInput extends Input
4242
private $revision;
4343

4444
/**
45-
* The name of a deployment configuration associated with the IAM user or Amazon Web Services account.
45+
* The name of a deployment configuration associated with the user or Amazon Web Services account.
4646
*
4747
* If not specified, the value configured in the deployment group is used as the default. If the deployment group does
4848
* not have a deployment configuration associated with it, `CodeDeployDefault`.`OneAtATime` is used by default.

src/Service/CodeDeploy/src/Input/GetDeploymentInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
final class GetDeploymentInput extends Input
1414
{
1515
/**
16-
* The unique ID of a deployment associated with the IAM user or Amazon Web Services account.
16+
* The unique ID of a deployment associated with the user or Amazon Web Services account.
1717
*
1818
* @required
1919
*

src/Service/CodeDeploy/src/ValueObject/ELBInfo.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
namespace AsyncAws\CodeDeploy\ValueObject;
44

55
/**
6-
* Information about a load balancer in Elastic Load Balancing to use in a deployment. Instances are registered directly
7-
* with a load balancer, and traffic is routed to the load balancer.
6+
* Information about a Classic Load Balancer in Elastic Load Balancing to use in a deployment. Instances are registered
7+
* directly with a load balancer, and traffic is routed to the load balancer.
88
*/
99
final class ELBInfo
1010
{
1111
/**
12-
* For blue/green deployments, the name of the load balancer that is used to route traffic from original instances to
13-
* replacement instances in a blue/green deployment. For in-place deployments, the name of the load balancer that
14-
* instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with
15-
* after the deployment is complete.
12+
* For blue/green deployments, the name of the Classic Load Balancer that is used to route traffic from original
13+
* instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the Classic Load
14+
* Balancer that instances are deregistered from so they are not serving traffic during a deployment, and then
15+
* re-registered with after the deployment is complete.
1616
*
1717
* @var string|null
1818
*/

0 commit comments

Comments
 (0)