aws-sdk-elasticbeanstalk 1.3.0 → 1.4.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: 8f317cf9b80b820952134fbede57217a8d302f2c
4
- data.tar.gz: ea9a56f8562ba5fed1fecf4f030a9b8a2782ae68
3
+ metadata.gz: 973f499cdebb78c6e5b37a57499c658fdbc8d02c
4
+ data.tar.gz: 8be7c48e3467f9b8e2b851a8bc7fcef9528ec0ff
5
5
  SHA512:
6
- metadata.gz: ba50eb193c53a3c411c1edb280f20ac23d6fe99fb4e77195e13a29a42415895c19d83ba1aa3d69b3456c959efe789dd37fa4e6a6c1efd84efe50a54e5bee6af1
7
- data.tar.gz: 4a8f426e2061a96608aca81f215689f430d0395527d10766891db0698835c4f9ea0e721a4bbc0445098f5d4576c6f2a997c122fbf220a0cc7d69492ad2af181c
6
+ metadata.gz: fae561e7b5dc174c6433144017908a30965a8ff459899f1d1be6ee5e33cfa2b44c52e15b64730dac5d82acd8e172e00b78064f6636f872307b1e1b7340a080d6
7
+ data.tar.gz: 187a7fbf76490689bf1277afeba7c189f0a8d34bae7b4942e925a5f6810a08eda329a737049679fd9de3c1963f61354a3f011a072be81cb81bbbaea5ed366c31
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
42
42
  # @service
43
43
  module Aws::ElasticBeanstalk
44
44
 
45
- GEM_VERSION = '1.3.0'
45
+ GEM_VERSION = '1.4.0'
46
46
 
47
47
  end
@@ -1298,6 +1298,27 @@ module Aws::ElasticBeanstalk
1298
1298
  req.send_request(options)
1299
1299
  end
1300
1300
 
1301
+ # @return [Types::DescribeAccountAttributesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1302
+ #
1303
+ # * {Types::DescribeAccountAttributesResult#resource_quotas #resource_quotas} => Types::ResourceQuotas
1304
+ #
1305
+ # @example Response structure
1306
+ #
1307
+ # resp.resource_quotas.application_quota.maximum #=> Integer
1308
+ # resp.resource_quotas.application_version_quota.maximum #=> Integer
1309
+ # resp.resource_quotas.environment_quota.maximum #=> Integer
1310
+ # resp.resource_quotas.configuration_template_quota.maximum #=> Integer
1311
+ # resp.resource_quotas.custom_platform_quota.maximum #=> Integer
1312
+ #
1313
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeAccountAttributes AWS API Documentation
1314
+ #
1315
+ # @overload describe_account_attributes(params = {})
1316
+ # @param [Hash] params ({})
1317
+ def describe_account_attributes(params = {}, options = {})
1318
+ req = build_request(:describe_account_attributes, params)
1319
+ req.send_request(options)
1320
+ end
1321
+
1301
1322
  # Retrieve a list of application versions.
1302
1323
  #
1303
1324
  # @option params [String] :application_name
@@ -3949,7 +3970,7 @@ module Aws::ElasticBeanstalk
3949
3970
  params: params,
3950
3971
  config: config)
3951
3972
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
3952
- context[:gem_version] = '1.3.0'
3973
+ context[:gem_version] = '1.4.0'
3953
3974
  Seahorse::Client::Request.new(handlers, context)
3954
3975
  end
3955
3976
 
@@ -93,6 +93,7 @@ module Aws::ElasticBeanstalk
93
93
  DeleteSourceBundle = Shapes::BooleanShape.new(name: 'DeleteSourceBundle')
94
94
  Deployment = Shapes::StructureShape.new(name: 'Deployment')
95
95
  DeploymentTimestamp = Shapes::TimestampShape.new(name: 'DeploymentTimestamp')
96
+ DescribeAccountAttributesResult = Shapes::StructureShape.new(name: 'DescribeAccountAttributesResult')
96
97
  DescribeApplicationVersionsMessage = Shapes::StructureShape.new(name: 'DescribeApplicationVersionsMessage')
97
98
  DescribeApplicationsMessage = Shapes::StructureShape.new(name: 'DescribeApplicationsMessage')
98
99
  DescribeConfigurationOptionsMessage = Shapes::StructureShape.new(name: 'DescribeConfigurationOptionsMessage')
@@ -234,6 +235,8 @@ module Aws::ElasticBeanstalk
234
235
  ResourceId = Shapes::StringShape.new(name: 'ResourceId')
235
236
  ResourceName = Shapes::StringShape.new(name: 'ResourceName')
236
237
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
238
+ ResourceQuota = Shapes::StructureShape.new(name: 'ResourceQuota')
239
+ ResourceQuotas = Shapes::StructureShape.new(name: 'ResourceQuotas')
237
240
  ResourceTagsDescriptionMessage = Shapes::StructureShape.new(name: 'ResourceTagsDescriptionMessage')
238
241
  ResourceTypeNotSupportedException = Shapes::StructureShape.new(name: 'ResourceTypeNotSupportedException')
239
242
  RestartAppServerMessage = Shapes::StructureShape.new(name: 'RestartAppServerMessage')
@@ -558,6 +561,9 @@ module Aws::ElasticBeanstalk
558
561
  Deployment.add_member(:deployment_time, Shapes::ShapeRef.new(shape: DeploymentTimestamp, location_name: "DeploymentTime"))
559
562
  Deployment.struct_class = Types::Deployment
560
563
 
564
+ DescribeAccountAttributesResult.add_member(:resource_quotas, Shapes::ShapeRef.new(shape: ResourceQuotas, location_name: "ResourceQuotas"))
565
+ DescribeAccountAttributesResult.struct_class = Types::DescribeAccountAttributesResult
566
+
561
567
  DescribeApplicationVersionsMessage.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "ApplicationName"))
562
568
  DescribeApplicationVersionsMessage.add_member(:version_labels, Shapes::ShapeRef.new(shape: VersionLabelsList, location_name: "VersionLabels"))
563
569
  DescribeApplicationVersionsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
@@ -921,6 +927,16 @@ module Aws::ElasticBeanstalk
921
927
  RequestEnvironmentInfoMessage.add_member(:info_type, Shapes::ShapeRef.new(shape: EnvironmentInfoType, required: true, location_name: "InfoType"))
922
928
  RequestEnvironmentInfoMessage.struct_class = Types::RequestEnvironmentInfoMessage
923
929
 
930
+ ResourceQuota.add_member(:maximum, Shapes::ShapeRef.new(shape: BoxedInt, location_name: "Maximum"))
931
+ ResourceQuota.struct_class = Types::ResourceQuota
932
+
933
+ ResourceQuotas.add_member(:application_quota, Shapes::ShapeRef.new(shape: ResourceQuota, location_name: "ApplicationQuota"))
934
+ ResourceQuotas.add_member(:application_version_quota, Shapes::ShapeRef.new(shape: ResourceQuota, location_name: "ApplicationVersionQuota"))
935
+ ResourceQuotas.add_member(:environment_quota, Shapes::ShapeRef.new(shape: ResourceQuota, location_name: "EnvironmentQuota"))
936
+ ResourceQuotas.add_member(:configuration_template_quota, Shapes::ShapeRef.new(shape: ResourceQuota, location_name: "ConfigurationTemplateQuota"))
937
+ ResourceQuotas.add_member(:custom_platform_quota, Shapes::ShapeRef.new(shape: ResourceQuota, location_name: "CustomPlatformQuota"))
938
+ ResourceQuotas.struct_class = Types::ResourceQuotas
939
+
924
940
  ResourceTagsDescriptionMessage.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "ResourceArn"))
925
941
  ResourceTagsDescriptionMessage.add_member(:resource_tags, Shapes::ShapeRef.new(shape: TagList, location_name: "ResourceTags"))
926
942
  ResourceTagsDescriptionMessage.struct_class = Types::ResourceTagsDescriptionMessage
@@ -1232,6 +1248,15 @@ module Aws::ElasticBeanstalk
1232
1248
  o.errors << Shapes::ShapeRef.new(shape: PlatformVersionStillReferencedException)
1233
1249
  end)
1234
1250
 
1251
+ api.add_operation(:describe_account_attributes, Seahorse::Model::Operation.new.tap do |o|
1252
+ o.name = "DescribeAccountAttributes"
1253
+ o.http_method = "POST"
1254
+ o.http_request_uri = "/"
1255
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1256
+ o.output = Shapes::ShapeRef.new(shape: DescribeAccountAttributesResult)
1257
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientPrivilegesException)
1258
+ end)
1259
+
1235
1260
  api.add_operation(:describe_application_versions, Seahorse::Model::Operation.new.tap do |o|
1236
1261
  o.name = "DescribeApplicationVersions"
1237
1262
  o.http_method = "POST"
@@ -1592,6 +1592,16 @@ module Aws::ElasticBeanstalk
1592
1592
  include Aws::Structure
1593
1593
  end
1594
1594
 
1595
+ # @!attribute [rw] resource_quotas
1596
+ # @return [Types::ResourceQuotas]
1597
+ #
1598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeAccountAttributesResult AWS API Documentation
1599
+ #
1600
+ class DescribeAccountAttributesResult < Struct.new(
1601
+ :resource_quotas)
1602
+ include Aws::Structure
1603
+ end
1604
+
1595
1605
  # Request to describe application versions.
1596
1606
  #
1597
1607
  # @note When making an API call, you may pass DescribeApplicationVersionsMessage
@@ -3501,6 +3511,42 @@ module Aws::ElasticBeanstalk
3501
3511
  include Aws::Structure
3502
3512
  end
3503
3513
 
3514
+ # @!attribute [rw] maximum
3515
+ # @return [Integer]
3516
+ #
3517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ResourceQuota AWS API Documentation
3518
+ #
3519
+ class ResourceQuota < Struct.new(
3520
+ :maximum)
3521
+ include Aws::Structure
3522
+ end
3523
+
3524
+ # @!attribute [rw] application_quota
3525
+ # @return [Types::ResourceQuota]
3526
+ #
3527
+ # @!attribute [rw] application_version_quota
3528
+ # @return [Types::ResourceQuota]
3529
+ #
3530
+ # @!attribute [rw] environment_quota
3531
+ # @return [Types::ResourceQuota]
3532
+ #
3533
+ # @!attribute [rw] configuration_template_quota
3534
+ # @return [Types::ResourceQuota]
3535
+ #
3536
+ # @!attribute [rw] custom_platform_quota
3537
+ # @return [Types::ResourceQuota]
3538
+ #
3539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ResourceQuotas AWS API Documentation
3540
+ #
3541
+ class ResourceQuotas < Struct.new(
3542
+ :application_quota,
3543
+ :application_version_quota,
3544
+ :environment_quota,
3545
+ :configuration_template_quota,
3546
+ :custom_platform_quota)
3547
+ include Aws::Structure
3548
+ end
3549
+
3504
3550
  # @!attribute [rw] resource_arn
3505
3551
  # The Amazon Resource Name (ARN) of the resouce for which a tag list
3506
3552
  # was requested.
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.3.0
4
+ version: 1.4.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-12-06 00:00:00.000000000 Z
11
+ date: 2018-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.5.1
78
+ rubygems_version: 2.5.2.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: AWS SDK for Ruby - Elastic Beanstalk