Skip to content

Commit c28c368

Browse files
author
nVitius
committed
Removing shortcuts
1 parent 1138f89 commit c28c368

2 files changed

Lines changed: 22 additions & 22 deletions

File tree

Command/Aws/AutoScaling/CreateLaunchConfigurationCommand.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,67 +51,67 @@ protected function configure()
5151
)
5252
->AddOption(
5353
'ImageId',
54-
'imageid',
54+
null,
5555
InputOption::VALUE_REQUIRED,
5656
'Unique ID of the Amazon Machine Image (AMI) you want to use to launch your EC2 instances'
5757
)
5858
->AddOption(
5959
'KeyName',
60-
'keyname',
60+
null,
6161
InputOption::VALUE_REQUIRED,
6262
'The name of the Amazon EC2 key pair'
6363
)
6464
->AddOption(
6565
'SecurityGroups',
66-
'securitygroups',
66+
null,
6767
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
6868
'The security groups with which to associate Amazon EC2 or Amazon VPC instances.'
6969
)
7070
->AddOption(
7171
'UserData',
72-
'userdata',
72+
null,
7373
InputOption::VALUE_REQUIRED,
7474
'The user data to make available to the launched Amazon EC2 instances'
7575
)
7676
->AddOption(
7777
'InstanceId',
78-
'instanceid',
78+
null,
7979
InputOption::VALUE_REQUIRED,
8080
'The ID of the Amazon EC2 instance you want to use to create the launch configuration'
8181
)
8282
->AddOption(
8383
'InstanceType',
84-
'instancetype',
84+
null,
8585
InputOption::VALUE_REQUIRED,
8686
'The instance type of the Amazon EC2 instance'
8787
)
8888
->AddOption(
8989
'KernelId',
90-
'kernelid',
90+
null,
9191
InputOption::VALUE_REQUIRED,
9292
'The ID of the kernel associated with the Amazon EC2 AMI'
9393
)
9494
->AddOption(
9595
'RamdiskId',
96-
'ramdiskid',
96+
null,
9797
InputOption::VALUE_REQUIRED,
9898
'The ID of the RAM disk associated with the Amazon EC2 AMI'
9999
)
100100
->AddOption(
101101
'BlockDeviceMappings',
102-
'blockdevicemappings',
102+
null,
103103
InputOption::VALUE_REQUIRED,
104104
'A list of mappings that specify how block devices are exposed to the instance. Takes JSON'
105105
)
106106
->AddOption(
107107
'InstanceMonitoring',
108-
'instancemonitoring',
108+
null,
109109
InputOption::VALUE_REQUIRED,
110110
'Enables detailed monitoring if it is disabled. true/false'
111111
)
112112
->AddOption(
113113
'SpotPrice',
114-
'spotprice',
114+
null,
115115
InputOption::VALUE_REQUIRED,
116116
'The maximum hourly price to be paid for any Spot Instance launched to fulfill the request'
117117
);

Command/Aws/AutoScaling/UpdateAutoScalingGroupCommand.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,69 +42,69 @@ protected function configure()
4242
)
4343
->addOption(
4444
'LaunchConfigurationName',
45-
'launchconfigurationname',
45+
null,
4646
InputOption::VALUE_REQUIRED,
4747
'The name of the launch configuration'
4848
)
4949
->addOption(
5050
'MinSize',
51-
'minsize',
51+
null,
5252
InputOption::VALUE_REQUIRED,
5353
'The minimum size of the Auto Scaling group'
5454
)
5555
->addOption(
5656
'MaxSize',
57-
'maxsize',
57+
null,
5858
InputOption::VALUE_REQUIRED,
5959
'The maximum size of the Auto Scaling group'
6060
)
6161
->addOption(
6262
'DesiredCapacity',
63-
'desiredcapacity',
63+
null,
6464
InputOption::VALUE_REQUIRED,
6565
'The desired capacity for the Auto Scaling group'
6666
)
6767
->addOption(
6868
'DefaultCooldown',
69-
'defaultcooldown',
69+
null,
7070
InputOption::VALUE_REQUIRED,
7171
'The amount of time, in seconds, after a scaling activity completes
7272
before any further scaling activities can start'
7373
)
7474
->addOption(
7575
'AvailabilityZones',
76-
'availabiltyzones',
76+
null,
7777
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
7878
'Availability Zones for the group'
7979
)
8080
->addOption(
8181
'HealthCheckType',
82-
'healthchecktype',
82+
null,
8383
InputOption::VALUE_REQUIRED,
8484
'The type of health check for the instances in the Auto Scaling group'
8585
)
8686
->addOption(
8787
'HealthCheckGracePeriod',
88-
'healthcheckgraceperiod',
88+
null,
8989
InputOption::VALUE_REQUIRED,
9090
'The length of time that Auto Scaling waits before checking an instance\'s health status'
9191
)
9292
->addOption(
9393
'PlacementGroup',
94-
'placementgroup',
94+
null,
9595
InputOption::VALUE_REQUIRED,
9696
'The name of the cluster placement group, if applicable'
9797
)
9898
->addOption(
9999
'VPCZoneIdentifier',
100-
'vpczoneidentifier',
100+
null,
101101
InputOption::VALUE_REQUIRED,
102102
'The subnet identifier for the Amazon VPC connection, if applicable.
103103
You can specify several subnets in a comma-separated list'
104104
)
105105
->addOption(
106106
'TerminationPolicies',
107-
'terminationpolicies',
107+
null,
108108
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
109109
'A standalone termination policy or a list of termination policies
110110
used to select the instance to terminate'

0 commit comments

Comments
 (0)