aws-sdk-autoscaling 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1268bba53b605a5b807eb3604c64d767da19e23
4
- data.tar.gz: d5474954dd041d11d0e95659e3eb018ac45200fb
3
+ metadata.gz: b2da1a342ec05f78873af14cff5bf22f26b9a837
4
+ data.tar.gz: c2ec10fc005c9d06e4b12313dab65cddd0cc9d64
5
5
  SHA512:
6
- metadata.gz: 3bcd0b16c4198f53526a63dc4d1c1b305a4d9921fc16e6b93f2d3d9f5dc5032d79887d1522ca265359776e2684262ea5e2b6a8e28bfab347a8c7e5d90e8bf828
7
- data.tar.gz: 2ef41ab88f43b876e497271656bf8bc76008e8d8b0736f63e9bce5b2aca6f0baa0a4240269ab2bf5a5a1dcfad4f3719f9b2ff6bcfc2903acb025bb10ba338ac6
6
+ metadata.gz: 3bd911264a1653911eeb82b71226ffaa0aee14eedef8e25b4e3eefc7a5ad645e6321826129409a50ce19810dad78b8773134ba057ae1f36dc9151218c03b8a01
7
+ data.tar.gz: 1560c7910b45a801605fac54b2e420a15d856a470c4b51b4ca4b67ee13085542a0ed0ed843c9e9173ffb9b44e67d628802d22bb2469db08aaa69ea862b83edc4
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-autoscaling/customizations'
53
53
  # @service
54
54
  module Aws::AutoScaling
55
55
 
56
- GEM_VERSION = '1.0.0'
56
+ GEM_VERSION = '1.1.0'
57
57
 
58
58
  end
@@ -4193,7 +4193,7 @@ module Aws::AutoScaling
4193
4193
  params: params,
4194
4194
  config: config)
4195
4195
  context[:gem_name] = 'aws-sdk-autoscaling'
4196
- context[:gem_version] = '1.0.0'
4196
+ context[:gem_version] = '1.1.0'
4197
4197
  Seahorse::Client::Request.new(handlers, context)
4198
4198
  end
4199
4199
 
@@ -324,9 +324,7 @@ module Aws::AutoScaling
324
324
  params[:auto_scaling_group_name] = batch[0].group_name
325
325
  params[:instance_ids] ||= []
326
326
  batch.each do |item|
327
- params[:instance_ids] << {
328
- id: item.id
329
- }
327
+ params[:instance_ids] << item.id
330
328
  end
331
329
  batch[0].client.attach_instances(params)
332
330
  end
@@ -349,9 +347,7 @@ module Aws::AutoScaling
349
347
  params[:auto_scaling_group_name] = batch[0].group_name
350
348
  params[:instance_ids] ||= []
351
349
  batch.each do |item|
352
- params[:instance_ids] << {
353
- id: item.id
354
- }
350
+ params[:instance_ids] << item.id
355
351
  end
356
352
  batch[0].client.detach_instances(params)
357
353
  end
@@ -376,9 +372,7 @@ module Aws::AutoScaling
376
372
  params[:auto_scaling_group_name] = batch[0].group_name
377
373
  params[:instance_ids] ||= []
378
374
  batch.each do |item|
379
- params[:instance_ids] << {
380
- id: item.id
381
- }
375
+ params[:instance_ids] << item.id
382
376
  end
383
377
  batch[0].client.enter_standby(params)
384
378
  end
@@ -393,9 +387,7 @@ module Aws::AutoScaling
393
387
  params[:auto_scaling_group_name] = batch[0].group_name
394
388
  params[:instance_ids] ||= []
395
389
  batch.each do |item|
396
- params[:instance_ids] << {
397
- id: item.id
398
- }
390
+ params[:instance_ids] << item.id
399
391
  end
400
392
  batch[0].client.exit_standby(params)
401
393
  end
@@ -178,9 +178,7 @@ module Aws::AutoScaling
178
178
  params[:auto_scaling_group_name] = batch[0].group_name
179
179
  params[:load_balancer_names] ||= []
180
180
  batch.each do |item|
181
- params[:load_balancer_names] << {
182
- name: item.name
183
- }
181
+ params[:load_balancer_names] << item.name
184
182
  end
185
183
  batch[0].client.attach_load_balancers(params)
186
184
  end
@@ -195,9 +193,7 @@ module Aws::AutoScaling
195
193
  params[:auto_scaling_group_name] = batch[0].group_name
196
194
  params[:load_balancer_names] ||= []
197
195
  batch.each do |item|
198
- params[:load_balancer_names] << {
199
- name: item.name
200
- }
196
+ params[:load_balancer_names] << item.name
201
197
  end
202
198
  batch[0].client.detach_load_balancers(params)
203
199
  end
@@ -178,9 +178,7 @@ module Aws::AutoScaling
178
178
  params[:topic_arn] = batch[0].topic_arn
179
179
  params[:notification_types] ||= []
180
180
  batch.each do |item|
181
- params[:notification_types] << {
182
- notification_type: item.notification_type
183
- }
181
+ params[:notification_types] << item.notification_type
184
182
  end
185
183
  batch[0].client.put_notification_configuration(params)
186
184
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-autoscaling
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-29 00:00:00.000000000 Z
11
+ date: 2017-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -67,7 +67,9 @@ files:
67
67
  homepage: http://github.com/aws/aws-sdk-ruby
68
68
  licenses:
69
69
  - Apache-2.0
70
- metadata: {}
70
+ metadata:
71
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-autoscaling
72
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-autoscaling/CHANGELOG.md
71
73
  post_install_message:
72
74
  rdoc_options: []
73
75
  require_paths: