aws-sdk-elasticbeanstalk 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticbeanstalk.rb +1 -1
- data/lib/aws-sdk-elasticbeanstalk/client.rb +49 -12
- data/lib/aws-sdk-elasticbeanstalk/types.rb +11 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f317cf9b80b820952134fbede57217a8d302f2c
|
4
|
+
data.tar.gz: ea9a56f8562ba5fed1fecf4f030a9b8a2782ae68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba50eb193c53a3c411c1edb280f20ac23d6fe99fb4e77195e13a29a42415895c19d83ba1aa3d69b3456c959efe789dd37fa4e6a6c1efd84efe50a54e5bee6af1
|
7
|
+
data.tar.gz: 4a8f426e2061a96608aca81f215689f430d0395527d10766891db0698835c4f9ea0e721a4bbc0445098f5d4576c6f2a997c122fbf220a0cc7d69492ad2af181c
|
@@ -514,10 +514,16 @@ module Aws::ElasticBeanstalk
|
|
514
514
|
# doesn't already exist.
|
515
515
|
#
|
516
516
|
# @option params [Boolean] :process
|
517
|
-
# Preprocesses and validates the environment manifest and
|
518
|
-
# files in the
|
519
|
-
#
|
520
|
-
# environment.
|
517
|
+
# Preprocesses and validates the environment manifest (`env.yaml`) and
|
518
|
+
# configuration files (`*.config` files in the `.ebextensions` folder)
|
519
|
+
# in the source bundle. Validating configuration files can identify
|
520
|
+
# issues prior to deploying the application version to an environment.
|
521
|
+
#
|
522
|
+
# <note markdown="1"> The `Process` option validates Elastic Beanstalk configuration files.
|
523
|
+
# It doesn't validate your application's configuration files, like
|
524
|
+
# proxy server or Docker configuration.
|
525
|
+
#
|
526
|
+
# </note>
|
521
527
|
#
|
522
528
|
# @return [Types::ApplicationVersionDescriptionMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
523
529
|
#
|
@@ -648,7 +654,7 @@ module Aws::ElasticBeanstalk
|
|
648
654
|
# stack as the source configuration template.
|
649
655
|
#
|
650
656
|
# @option params [String] :platform_arn
|
651
|
-
# The ARN of the
|
657
|
+
# The ARN of the custom platform.
|
652
658
|
#
|
653
659
|
# @option params [Types::SourceConfiguration] :source_configuration
|
654
660
|
# If specified, AWS Elastic Beanstalk uses the configuration values from
|
@@ -1040,9 +1046,12 @@ module Aws::ElasticBeanstalk
|
|
1040
1046
|
req.send_request(options)
|
1041
1047
|
end
|
1042
1048
|
|
1043
|
-
# Creates
|
1044
|
-
#
|
1045
|
-
#
|
1049
|
+
# Creates a bucket in Amazon S3 to store application versions, logs, and
|
1050
|
+
# other files used by Elastic Beanstalk environments. The Elastic
|
1051
|
+
# Beanstalk console and EB CLI call this API the first time you create
|
1052
|
+
# an environment in a region. If the storage location already exists,
|
1053
|
+
# `CreateStorageLocation` still returns the bucket name but does not
|
1054
|
+
# create a new bucket.
|
1046
1055
|
#
|
1047
1056
|
# @return [Types::CreateStorageLocationResultMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1048
1057
|
#
|
@@ -2669,8 +2678,13 @@ module Aws::ElasticBeanstalk
|
|
2669
2678
|
# Returns the tags applied to an AWS Elastic Beanstalk resource. The
|
2670
2679
|
# response contains a list of tag key-value pairs.
|
2671
2680
|
#
|
2672
|
-
# Currently, Elastic Beanstalk only supports tagging Elastic
|
2673
|
-
# environments.
|
2681
|
+
# Currently, Elastic Beanstalk only supports tagging of Elastic
|
2682
|
+
# Beanstalk environments. For details about environment tagging, see
|
2683
|
+
# [Tagging Resources in Your Elastic Beanstalk Environment][1].
|
2684
|
+
#
|
2685
|
+
#
|
2686
|
+
#
|
2687
|
+
# [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.tagging.html
|
2674
2688
|
#
|
2675
2689
|
# @option params [required, String] :resource_arn
|
2676
2690
|
# The Amazon Resource Name (ARN) of the resouce for which a tag list is
|
@@ -3772,7 +3786,30 @@ module Aws::ElasticBeanstalk
|
|
3772
3786
|
# `TagsToRemove`.
|
3773
3787
|
#
|
3774
3788
|
# Currently, Elastic Beanstalk only supports tagging of Elastic
|
3775
|
-
# Beanstalk environments.
|
3789
|
+
# Beanstalk environments. For details about environment tagging, see
|
3790
|
+
# [Tagging Resources in Your Elastic Beanstalk Environment][1].
|
3791
|
+
#
|
3792
|
+
# If you create a custom IAM user policy to control permission to this
|
3793
|
+
# operation, specify one of the following two virtual actions (or both)
|
3794
|
+
# instead of the API operation name:
|
3795
|
+
#
|
3796
|
+
# elasticbeanstalk:AddTags
|
3797
|
+
#
|
3798
|
+
# : Controls permission to call `UpdateTagsForResource` and pass a list
|
3799
|
+
# of tags to add in the `TagsToAdd` parameter.
|
3800
|
+
#
|
3801
|
+
# elasticbeanstalk:RemoveTags
|
3802
|
+
#
|
3803
|
+
# : Controls permission to call `UpdateTagsForResource` and pass a list
|
3804
|
+
# of tag keys to remove in the `TagsToRemove` parameter.
|
3805
|
+
#
|
3806
|
+
# For details about creating a custom user policy, see [Creating a
|
3807
|
+
# Custom User Policy][2].
|
3808
|
+
#
|
3809
|
+
#
|
3810
|
+
#
|
3811
|
+
# [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.tagging.html
|
3812
|
+
# [2]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.iam.managed-policies.html#AWSHowTo.iam.policies
|
3776
3813
|
#
|
3777
3814
|
# @option params [required, String] :resource_arn
|
3778
3815
|
# The Amazon Resource Name (ARN) of the resouce to be updated.
|
@@ -3912,7 +3949,7 @@ module Aws::ElasticBeanstalk
|
|
3912
3949
|
params: params,
|
3913
3950
|
config: config)
|
3914
3951
|
context[:gem_name] = 'aws-sdk-elasticbeanstalk'
|
3915
|
-
context[:gem_version] = '1.
|
3952
|
+
context[:gem_version] = '1.3.0'
|
3916
3953
|
Seahorse::Client::Request.new(handlers, context)
|
3917
3954
|
end
|
3918
3955
|
|
@@ -1020,10 +1020,16 @@ module Aws::ElasticBeanstalk
|
|
1020
1020
|
# @return [Boolean]
|
1021
1021
|
#
|
1022
1022
|
# @!attribute [rw] process
|
1023
|
-
# Preprocesses and validates the environment manifest and
|
1024
|
-
# configuration files in the
|
1025
|
-
#
|
1026
|
-
# to an environment.
|
1023
|
+
# Preprocesses and validates the environment manifest (`env.yaml`) and
|
1024
|
+
# configuration files (`*.config` files in the `.ebextensions` folder)
|
1025
|
+
# in the source bundle. Validating configuration files can identify
|
1026
|
+
# issues prior to deploying the application version to an environment.
|
1027
|
+
#
|
1028
|
+
# <note markdown="1"> The `Process` option validates Elastic Beanstalk configuration
|
1029
|
+
# files. It doesn't validate your application's configuration files,
|
1030
|
+
# like proxy server or Docker configuration.
|
1031
|
+
#
|
1032
|
+
# </note>
|
1027
1033
|
# @return [Boolean]
|
1028
1034
|
#
|
1029
1035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationVersionMessage AWS API Documentation
|
@@ -1101,7 +1107,7 @@ module Aws::ElasticBeanstalk
|
|
1101
1107
|
# @return [String]
|
1102
1108
|
#
|
1103
1109
|
# @!attribute [rw] platform_arn
|
1104
|
-
# The ARN of the
|
1110
|
+
# The ARN of the custom platform.
|
1105
1111
|
# @return [String]
|
1106
1112
|
#
|
1107
1113
|
# @!attribute [rw] source_configuration
|
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.
|
4
|
+
version: 1.3.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-
|
11
|
+
date: 2017-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|