This repository has been archived by the owner on Dec 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 215
/
autoscaling.go
592 lines (473 loc) · 15.7 KB
/
autoscaling.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
// The autoscaling package provides types and functions for interaction with the AWS
// AutoScaling service (autoscaling)
package autoscaling
import (
"encoding/xml"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"github.com/mitchellh/goamz/aws"
)
// The AutoScaling type encapsulates operations operations with the autoscaling endpoint.
type AutoScaling struct {
aws.Auth
aws.Region
httpClient *http.Client
}
const APIVersion = "2011-01-01"
// New creates a new AutoScaling instance.
func New(auth aws.Auth, region aws.Region) *AutoScaling {
return NewWithClient(auth, region, aws.RetryingClient)
}
func NewWithClient(auth aws.Auth, region aws.Region, httpClient *http.Client) *AutoScaling {
return &AutoScaling{auth, region, httpClient}
}
func (autoscaling *AutoScaling) query(params map[string]string, resp interface{}) error {
params["Version"] = APIVersion
params["Timestamp"] = time.Now().In(time.UTC).Format(time.RFC3339)
endpoint, err := url.Parse(autoscaling.Region.AutoScalingEndpoint)
if err != nil {
return err
}
sign(autoscaling.Auth, "GET", "/", params, endpoint.Host)
endpoint.RawQuery = multimap(params).Encode()
r, err := autoscaling.httpClient.Get(endpoint.String())
if err != nil {
return err
}
defer r.Body.Close()
if r.StatusCode > 200 {
return buildError(r)
}
decoder := xml.NewDecoder(r.Body)
decodedBody := decoder.Decode(resp)
return decodedBody
}
func buildError(r *http.Response) error {
var (
err Error
errors xmlErrors
)
xml.NewDecoder(r.Body).Decode(&errors)
if len(errors.Errors) > 0 {
err = errors.Errors[0]
}
err.StatusCode = r.StatusCode
if err.Message == "" {
err.Message = r.Status
}
return &err
}
func multimap(p map[string]string) url.Values {
q := make(url.Values, len(p))
for k, v := range p {
q[k] = []string{v}
}
return q
}
func makeParams(action string) map[string]string {
params := make(map[string]string)
params["Action"] = action
return params
}
func addBlockDeviceParams(prename string, params map[string]string, blockdevices []BlockDeviceMapping) {
for i, k := range blockdevices {
// Fixup index since Amazon counts these from 1
prefix := prename + "BlockDeviceMappings.member." + strconv.Itoa(i+1) + "."
if k.DeviceName != "" {
params[prefix+"DeviceName"] = k.DeviceName
}
if k.VirtualName != "" {
params[prefix+"VirtualName"] = k.VirtualName
} else if k.NoDevice {
params[prefix+"NoDevice"] = ""
} else {
if k.SnapshotId != "" {
params[prefix+"Ebs.SnapshotId"] = k.SnapshotId
}
if k.VolumeType != "" {
params[prefix+"Ebs.VolumeType"] = k.VolumeType
}
if k.IOPS != 0 {
params[prefix+"Ebs.Iops"] = strconv.FormatInt(k.IOPS, 10)
}
if k.VolumeSize != 0 {
params[prefix+"Ebs.VolumeSize"] = strconv.FormatInt(k.VolumeSize, 10)
}
if k.DeleteOnTermination {
params[prefix+"Ebs.DeleteOnTermination"] = "true"
} else {
params[prefix+"Ebs.DeleteOnTermination"] = "false"
}
if k.Encrypted {
params[prefix+"Ebs.Encrypted"] = "true"
}
}
}
}
// ----------------------------------------------------------------------------
// AutoScaling objects
type Tag struct {
Key string `xml:"Key"`
Value string `xml:"Value"`
PropagateAtLaunch bool `xml:"PropagateAtLaunch"`
}
type LaunchConfiguration struct {
AssociatePublicIpAddress bool `xml:"AssociatePublicIpAddress"`
IamInstanceProfile string `xml:"IamInstanceProfile"`
ImageId string `xml:"ImageId"`
InstanceType string `xml:"InstanceType"`
KernelId string `xml:"KernelId"`
KeyName string `xml:"KeyName"`
SpotPrice string `xml:"SpotPrice"`
Name string `xml:"LaunchConfigurationName"`
SecurityGroups []string `xml:"SecurityGroups>member"`
UserData []byte `xml:"UserData"`
BlockDevices []BlockDeviceMapping `xml:"BlockDeviceMappings>member"`
}
type Instance struct {
AvailabilityZone string `xml:"AvailabilityZone"`
HealthStatus string `xml:"HealthStatus"`
InstanceId string `xml:"InstanceId"`
LaunchConfigurationName string `xml:"LaunchConfigurationName"`
LifecycleState string `xml:"LifecycleState"`
}
type AutoScalingGroup struct {
AvailabilityZones []string `xml:"AvailabilityZones>member"`
CreatedTime time.Time `xml:"CreatedTime"`
DefaultCooldown int `xml:"DefaultCooldown"`
DesiredCapacity int `xml:"DesiredCapacity"`
HealthCheckGracePeriod int `xml:"HealthCheckGracePeriod"`
HealthCheckType string `xml:"HealthCheckType"`
InstanceId string `xml:"InstanceId"`
Instances []Instance `xml:"Instances>member"`
LaunchConfigurationName string `xml:"LaunchConfigurationName"`
LoadBalancerNames []string `xml:"LoadBalancerNames>member"`
MaxSize int `xml:"MaxSize"`
MinSize int `xml:"MinSize"`
Name string `xml:"AutoScalingGroupName"`
Status string `xml:"Status"`
Tags []Tag `xml:"Tags>member"`
VPCZoneIdentifier string `xml:"VPCZoneIdentifier"`
TerminationPolicies []string `xml:"TerminationPolicies>member"`
}
// BlockDeviceMapping represents the association of a block device with an image.
//
// See http://goo.gl/wnDBf for more details.
type BlockDeviceMapping struct {
DeviceName string `xml:"DeviceName"`
VirtualName string `xml:"VirtualName"`
SnapshotId string `xml:"Ebs>SnapshotId"`
VolumeType string `xml:"Ebs>VolumeType"`
VolumeSize int64 `xml:"Ebs>VolumeSize"`
DeleteOnTermination bool `xml:"Ebs>DeleteOnTermination"`
Encrypted bool `xml:"Ebs>Encrypted"`
NoDevice bool `xml:"NoDevice"`
// The number of I/O operations per second (IOPS) that the volume supports.
IOPS int64 `xml:"ebs>iops"`
}
// ----------------------------------------------------------------------------
// Create
// The CreateAutoScalingGroup request parameters
type CreateAutoScalingGroup struct {
AvailZone []string
DefaultCooldown int
DesiredCapacity int
HealthCheckGracePeriod int
HealthCheckType string
InstanceId string
LaunchConfigurationName string
LoadBalancerNames []string
MaxSize int
MinSize int
PlacementGroup string
TerminationPolicies []string
Name string
Tags []Tag
VPCZoneIdentifier []string
SetDefaultCooldown bool
SetDesiredCapacity bool
SetHealthCheckGracePeriod bool
SetMaxSize bool
SetMinSize bool
}
func (autoscaling *AutoScaling) CreateAutoScalingGroup(options *CreateAutoScalingGroup) (resp *SimpleResp, err error) {
params := makeParams("CreateAutoScalingGroup")
params["AutoScalingGroupName"] = options.Name
if options.SetDefaultCooldown {
params["DefaultCooldown"] = strconv.Itoa(options.DefaultCooldown)
}
if options.SetDesiredCapacity {
params["DesiredCapacity"] = strconv.Itoa(options.DesiredCapacity)
}
if options.SetHealthCheckGracePeriod {
params["HealthCheckGracePeriod"] = strconv.Itoa(options.HealthCheckGracePeriod)
}
if options.HealthCheckType != "" {
params["HealthCheckType"] = options.HealthCheckType
}
if options.InstanceId != "" {
params["InstanceId"] = options.InstanceId
}
if options.LaunchConfigurationName != "" {
params["LaunchConfigurationName"] = options.LaunchConfigurationName
}
for i, v := range options.AvailZone {
params["AvailabilityZones.member."+strconv.Itoa(i+1)] = v
}
for i, v := range options.LoadBalancerNames {
params["LoadBalancerNames.member."+strconv.Itoa(i+1)] = v
}
if options.SetMaxSize {
params["MaxSize"] = strconv.Itoa(options.MaxSize)
}
if options.SetMinSize {
params["MinSize"] = strconv.Itoa(options.MinSize)
}
if options.PlacementGroup != "" {
params["PlacementGroup"] = options.PlacementGroup
}
for j, tag := range options.Tags {
params["Tags.member."+strconv.Itoa(j+1)+".Key"] = tag.Key
params["Tags.member."+strconv.Itoa(j+1)+".Value"] = tag.Value
params["Tags.member."+strconv.Itoa(j+1)+".PropagateAtLaunch"] = strconv.FormatBool(tag.PropagateAtLaunch)
}
for i, v := range options.TerminationPolicies {
params["TerminationPolicies.member."+strconv.Itoa(i+1)] = v
}
if options.VPCZoneIdentifier != nil {
params["VPCZoneIdentifier"] = strings.Join(options.VPCZoneIdentifier, ",")
}
resp = &SimpleResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// The CreateLaunchConfiguration request parameters
type CreateLaunchConfiguration struct {
AssociatePublicIpAddress bool
IamInstanceProfile string
ImageId string
InstanceId string
InstanceType string
KernelId string
KeyName string
SpotPrice string
Name string
SecurityGroups []string
UserData string
BlockDevices []BlockDeviceMapping
}
func (autoscaling *AutoScaling) CreateLaunchConfiguration(options *CreateLaunchConfiguration) (resp *SimpleResp, err error) {
params := makeParams("CreateLaunchConfiguration")
params["LaunchConfigurationName"] = options.Name
if options.AssociatePublicIpAddress {
params["AssociatePublicIpAddress"] = "true"
}
if options.IamInstanceProfile != "" {
params["IamInstanceProfile"] = options.IamInstanceProfile
}
if options.ImageId != "" {
params["ImageId"] = options.ImageId
}
if options.InstanceType != "" {
params["InstanceType"] = options.InstanceType
}
if options.InstanceId != "" {
params["InstanceId"] = options.InstanceId
}
if options.KernelId != "" {
params["KernelId"] = options.KernelId
}
if options.KeyName != "" {
params["KeyName"] = options.KeyName
}
if options.SpotPrice != "" {
params["SpotPrice"] = options.SpotPrice
}
for i, v := range options.SecurityGroups {
params["SecurityGroups.member."+strconv.Itoa(i+1)] = v
}
if options.UserData != "" {
userData := make([]byte, b64.EncodedLen(len(options.UserData)))
b64.Encode(userData, []byte(options.UserData))
params["UserData"] = string(userData)
}
addBlockDeviceParams("", params, options.BlockDevices)
resp = &SimpleResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// Describe
// DescribeAutoScalingGroups request params
type DescribeAutoScalingGroups struct {
Names []string
}
type DescribeAutoScalingGroupsResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
AutoScalingGroups []AutoScalingGroup `xml:"DescribeAutoScalingGroupsResult>AutoScalingGroups>member"`
}
func (autoscaling *AutoScaling) DescribeAutoScalingGroups(options *DescribeAutoScalingGroups) (resp *DescribeAutoScalingGroupsResp, err error) {
params := makeParams("DescribeAutoScalingGroups")
for i, v := range options.Names {
params["AutoScalingGroupNames.member."+strconv.Itoa(i+1)] = v
}
resp = &DescribeAutoScalingGroupsResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// DescribeLaunchConfigurations request params
type DescribeLaunchConfigurations struct {
Names []string
}
type DescribeLaunchConfigurationsResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
LaunchConfigurations []LaunchConfiguration `xml:"DescribeLaunchConfigurationsResult>LaunchConfigurations>member"`
}
func (autoscaling *AutoScaling) DescribeLaunchConfigurations(options *DescribeLaunchConfigurations) (resp *DescribeLaunchConfigurationsResp, err error) {
params := makeParams("DescribeLaunchConfigurations")
for i, v := range options.Names {
params["LaunchConfigurationNames.member."+strconv.Itoa(i+1)] = v
}
resp = &DescribeLaunchConfigurationsResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// ----------------------------------------------------------------------------
// Destroy
// The DeleteLaunchConfiguration request parameters
type DeleteLaunchConfiguration struct {
Name string
}
func (autoscaling *AutoScaling) DeleteLaunchConfiguration(options *DeleteLaunchConfiguration) (resp *SimpleResp, err error) {
params := makeParams("DeleteLaunchConfiguration")
params["LaunchConfigurationName"] = options.Name
resp = &SimpleResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// The DeleteLaunchConfiguration request parameters
type DeleteAutoScalingGroup struct {
Name string
ForceDelete bool
}
func (autoscaling *AutoScaling) DeleteAutoScalingGroup(options *DeleteAutoScalingGroup) (resp *SimpleResp, err error) {
params := makeParams("DeleteAutoScalingGroup")
params["AutoScalingGroupName"] = options.Name
params["ForceDelete"] = strconv.FormatBool(options.ForceDelete)
resp = &SimpleResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// ----------------------------------------------------------------------------
// Destroy
// The UpdateAutoScalingGroup request parameters
type UpdateAutoScalingGroup struct {
AvailZone []string
DefaultCooldown int
DesiredCapacity int
HealthCheckGracePeriod int
HealthCheckType string
LaunchConfigurationName string
MaxSize int
MinSize int
PlacementGroup string
TerminationPolicies []string
Name string
VPCZoneIdentifier []string
SetDefaultCooldown bool
SetDesiredCapacity bool
SetHealthCheckGracePeriod bool
SetMaxSize bool
SetMinSize bool
}
func (autoscaling *AutoScaling) UpdateAutoScalingGroup(options *UpdateAutoScalingGroup) (resp *SimpleResp, err error) {
params := makeParams("UpdateAutoScalingGroup")
if options.Name != "" {
params["AutoScalingGroupName"] = options.Name
}
if options.SetDefaultCooldown {
params["DefaultCooldown"] = strconv.Itoa(options.DefaultCooldown)
}
if options.SetDesiredCapacity {
params["DesiredCapacity"] = strconv.Itoa(options.DesiredCapacity)
}
if options.SetHealthCheckGracePeriod {
params["HealthCheckGracePeriod"] = strconv.Itoa(options.HealthCheckGracePeriod)
}
if options.HealthCheckType != "" {
params["HealthCheckType"] = options.HealthCheckType
}
if options.LaunchConfigurationName != "" {
params["LaunchConfigurationName"] = options.LaunchConfigurationName
}
for i, v := range options.AvailZone {
params["AvailabilityZones.member."+strconv.Itoa(i+1)] = v
}
if options.SetMaxSize {
params["MaxSize"] = strconv.Itoa(options.MaxSize)
}
if options.SetMinSize {
params["MinSize"] = strconv.Itoa(options.MinSize)
}
if options.PlacementGroup != "" {
params["PlacementGroup"] = options.PlacementGroup
}
for i, v := range options.TerminationPolicies {
params["TerminationPolicies.member."+strconv.Itoa(i+1)] = v
}
if options.VPCZoneIdentifier != nil {
params["VPCZoneIdentifier"] = strings.Join(options.VPCZoneIdentifier, ",")
}
resp = &SimpleResp{}
err = autoscaling.query(params, resp)
if err != nil {
resp = nil
}
return
}
// Responses
type SimpleResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
}
type xmlErrors struct {
Errors []Error `xml:"Error"`
}
// Error encapsulates an autoscaling error.
type Error struct {
// HTTP status code of the error.
StatusCode int
// AWS code of the error.
Code string
// Message explaining the error.
Message string
}
func (e *Error) Error() string {
var prefix string
if e.Code != "" {
prefix = e.Code + ": "
}
if prefix == "" && e.StatusCode > 0 {
prefix = strconv.Itoa(e.StatusCode) + ": "
}
return prefix + e.Message
}