Skip to content

Commit ecfa101

Browse files
Update generated code (#1619)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 84094ae commit ecfa101

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

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 `AUTOSCALING_TERMINATION` const to `DeploymentCreator`.
8+
59
### Changed
610

711
- Allow passing explicit null values for optional fields of input objects

src/Enum/DeploymentCreator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
final class DeploymentCreator
66
{
77
public const AUTOSCALING = 'autoscaling';
8+
public const AUTOSCALING_TERMINATION = 'autoscalingTermination';
89
public const CLOUD_FORMATION = 'CloudFormation';
910
public const CLOUD_FORMATION_ROLLBACK = 'CloudFormationRollback';
1011
public const CODE_DEPLOY = 'CodeDeploy';
@@ -16,6 +17,7 @@ public static function exists(string $value): bool
1617
{
1718
return isset([
1819
self::AUTOSCALING => true,
20+
self::AUTOSCALING_TERMINATION => true,
1921
self::CLOUD_FORMATION => true,
2022
self::CLOUD_FORMATION_ROLLBACK => true,
2123
self::CODE_DEPLOY => true,

0 commit comments

Comments
 (0)