aws-sdk-elasticbeanstalk 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82e577d518eb9fe2c6c3919120cea39d72973a96
4
- data.tar.gz: 1815108752e8caf126b77a3a9822ada664353176
3
+ metadata.gz: 250ec6979c4f9ce64b232d088b6f2a370a840316
4
+ data.tar.gz: 77a4ffae16487ba9f2d914cd800b7932b8c004aa
5
5
  SHA512:
6
- metadata.gz: cefd9f5d5617d6db491c2fcf59c23e10ecaa9ed2b98e0c251f9b7384f8edf2bd3274ccbfa9d2c51c0e7a1d30dab76add7b5be3fe3d59efd1c0d360cbf36b936e
7
- data.tar.gz: 10bd807efc499ebda2364e1dad1d1815a7bc5b0f48d91db75bc283f6baf94aceb0888fd43651749183780d9af5ba02c4ea9b72fb4754f456ce27d9c4d14312d5
6
+ metadata.gz: 664ae4b0614046afaa4d3ddf6abbe78ac377c0152df5f9e5eb6acd315e1385f341c0352b2f5d4c7d3d2166745be0941cc48fd575d52a869e11fd12f5c0e5c343
7
+ data.tar.gz: dda00cc88a78371f6f889625724c1ebdbce6abec71030228f2599d4ddf8082b648de3b452c09c45baa96ba2ec931acd293705fc6bf914736c1e94870af238289
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
42
42
  # @service
43
43
  module Aws::ElasticBeanstalk
44
44
 
45
- GEM_VERSION = '1.8.0'
45
+ GEM_VERSION = '1.9.0'
46
46
 
47
47
  end
@@ -632,6 +632,9 @@ module Aws::ElasticBeanstalk
632
632
  # specific application and are used to deploy different versions of the
633
633
  # application with the same configuration settings.
634
634
  #
635
+ # Templates aren't associated with any environment. The
636
+ # `EnvironmentName` response element is always `null`.
637
+ #
635
638
  # Related Topics
636
639
  #
637
640
  # * DescribeConfigurationOptions
@@ -2521,6 +2524,7 @@ module Aws::ElasticBeanstalk
2521
2524
  # resp.instance_health_list[0].system.cpu_utilization.io_wait #=> Float
2522
2525
  # resp.instance_health_list[0].system.cpu_utilization.irq #=> Float
2523
2526
  # resp.instance_health_list[0].system.cpu_utilization.soft_irq #=> Float
2527
+ # resp.instance_health_list[0].system.cpu_utilization.privileged #=> Float
2524
2528
  # resp.instance_health_list[0].system.load_average #=> Array
2525
2529
  # resp.instance_health_list[0].system.load_average[0] #=> Float
2526
2530
  # resp.instance_health_list[0].deployment.version_label #=> String
@@ -4003,7 +4007,7 @@ module Aws::ElasticBeanstalk
4003
4007
  params: params,
4004
4008
  config: config)
4005
4009
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4006
- context[:gem_version] = '1.8.0'
4010
+ context[:gem_version] = '1.9.0'
4007
4011
  Seahorse::Client::Request.new(handlers, context)
4008
4012
  end
4009
4013
 
@@ -408,6 +408,7 @@ module Aws::ElasticBeanstalk
408
408
  CPUUtilization.add_member(:io_wait, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "IOWait"))
409
409
  CPUUtilization.add_member(:irq, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "IRQ"))
410
410
  CPUUtilization.add_member(:soft_irq, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "SoftIRQ"))
411
+ CPUUtilization.add_member(:privileged, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "Privileged"))
411
412
  CPUUtilization.struct_class = Types::CPUUtilization
412
413
 
413
414
  Causes.member = Shapes::ShapeRef.new(shape: Cause)
@@ -527,11 +527,15 @@ module Aws::ElasticBeanstalk
527
527
  # @return [Float]
528
528
  #
529
529
  # @!attribute [rw] nice
530
+ # Available on Linux environments only.
531
+ #
530
532
  # Percentage of time that the CPU has spent in the `Nice` state over
531
533
  # the last 10 seconds.
532
534
  # @return [Float]
533
535
  #
534
536
  # @!attribute [rw] system
537
+ # Available on Linux environments only.
538
+ #
535
539
  # Percentage of time that the CPU has spent in the `System` state over
536
540
  # the last 10 seconds.
537
541
  # @return [Float]
@@ -542,20 +546,33 @@ module Aws::ElasticBeanstalk
542
546
  # @return [Float]
543
547
  #
544
548
  # @!attribute [rw] io_wait
549
+ # Available on Linux environments only.
550
+ #
545
551
  # Percentage of time that the CPU has spent in the `I/O Wait` state
546
552
  # over the last 10 seconds.
547
553
  # @return [Float]
548
554
  #
549
555
  # @!attribute [rw] irq
556
+ # Available on Linux environments only.
557
+ #
550
558
  # Percentage of time that the CPU has spent in the `IRQ` state over
551
559
  # the last 10 seconds.
552
560
  # @return [Float]
553
561
  #
554
562
  # @!attribute [rw] soft_irq
563
+ # Available on Linux environments only.
564
+ #
555
565
  # Percentage of time that the CPU has spent in the `SoftIRQ` state
556
566
  # over the last 10 seconds.
557
567
  # @return [Float]
558
568
  #
569
+ # @!attribute [rw] privileged
570
+ # Available on Windows environments only.
571
+ #
572
+ # Percentage of time that the CPU has spent in the `Privileged` state
573
+ # over the last 10 seconds.
574
+ # @return [Float]
575
+ #
559
576
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CPUUtilization AWS API Documentation
560
577
  #
561
578
  class CPUUtilization < Struct.new(
@@ -565,7 +582,8 @@ module Aws::ElasticBeanstalk
565
582
  :idle,
566
583
  :io_wait,
567
584
  :irq,
568
- :soft_irq)
585
+ :soft_irq,
586
+ :privileged)
569
587
  include Aws::Structure
570
588
  end
571
589
 
@@ -2293,6 +2311,10 @@ module Aws::ElasticBeanstalk
2293
2311
  #
2294
2312
  # @!attribute [rw] instance_health_list
2295
2313
  # Detailed health information about each instance.
2314
+ #
2315
+ # The output differs slightly between Linux and Windows environments.
2316
+ # There is a difference in the members that are supported under the
2317
+ # `<CPUUtilization>` type.
2296
2318
  # @return [Array<Types::SingleInstanceHealth>]
2297
2319
  #
2298
2320
  # @!attribute [rw] refreshed_at
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticbeanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.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: 2018-06-28 00:00:00.000000000 Z
11
+ date: 2018-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core