aws-sdk-appconfig 1.4.0 → 1.5.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 +5 -5
- data/lib/aws-sdk-appconfig.rb +1 -1
- data/lib/aws-sdk-appconfig/client.rb +37 -6
- data/lib/aws-sdk-appconfig/types.rb +20 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 64662ce44f8f54285247d0d9a6c635da837e1b925dd56fe2fb50d4c47961d264
|
|
4
|
+
data.tar.gz: 9fe1afd6a81e209eb84709e11796063f4287a085744117d9de61f60026d4e641
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea721896281f665a0c1c5744ff2bb5e34afc82e31806c44500411f00ee519b09f2d4ba04f16058583dea9fb3b8ad85d8f007d0cbe2c4926b6e16b682d4eb4933
|
|
7
|
+
data.tar.gz: 07d7ed4b58450390e21555167e09e4e9791f33dcd38e989335181435fb65ec1927c6697f3e3d65b291a203deedd5e57c24f6caf8ff1c5ec4f499109a065c2dca
|
data/lib/aws-sdk-appconfig.rb
CHANGED
|
@@ -105,7 +105,7 @@ module Aws::AppConfig
|
|
|
105
105
|
# @option options [required, String] :region
|
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
|
108
|
-
# a default `:region` is
|
|
108
|
+
# a default `:region` is searched for in the following locations:
|
|
109
109
|
#
|
|
110
110
|
# * `Aws.config[:region]`
|
|
111
111
|
# * `ENV['AWS_REGION']`
|
|
@@ -161,7 +161,7 @@ module Aws::AppConfig
|
|
|
161
161
|
# @option options [String] :endpoint
|
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be
|
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
165
165
|
#
|
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -770,7 +770,19 @@ module Aws::AppConfig
|
|
|
770
770
|
req.send_request(options)
|
|
771
771
|
end
|
|
772
772
|
|
|
773
|
-
#
|
|
773
|
+
# Receive information about a configuration.
|
|
774
|
+
#
|
|
775
|
+
# AWS AppConfig uses the value of the `ClientConfigurationVersion`
|
|
776
|
+
# parameter to identify the configuration version on your clients. If
|
|
777
|
+
# you don’t send `ClientConfigurationVersion` with each call to
|
|
778
|
+
# `GetConfiguration`, your clients receive the current configuration.
|
|
779
|
+
# You are charged each time your clients receive a configuration.
|
|
780
|
+
#
|
|
781
|
+
# To avoid excess charges, we recommend that you include the
|
|
782
|
+
# `ClientConfigurationVersion` value with every call to
|
|
783
|
+
# `GetConfiguration`. This value must be saved on your client.
|
|
784
|
+
# Subsequent calls to `GetConfiguration` must pass this value by using
|
|
785
|
+
# the `ClientConfigurationVersion` parameter.
|
|
774
786
|
#
|
|
775
787
|
# @option params [required, String] :application
|
|
776
788
|
# The application to get. Specify either the application name or the
|
|
@@ -790,8 +802,27 @@ module Aws::AppConfig
|
|
|
790
802
|
# in the deployment strategy.
|
|
791
803
|
#
|
|
792
804
|
# @option params [String] :client_configuration_version
|
|
793
|
-
# The configuration version returned in the most recent
|
|
794
|
-
# response.
|
|
805
|
+
# The configuration version returned in the most recent
|
|
806
|
+
# `GetConfiguration` response.
|
|
807
|
+
#
|
|
808
|
+
# AWS AppConfig uses the value of the `ClientConfigurationVersion`
|
|
809
|
+
# parameter to identify the configuration version on your clients. If
|
|
810
|
+
# you don’t send `ClientConfigurationVersion` with each call to
|
|
811
|
+
# `GetConfiguration`, your clients receive the current configuration.
|
|
812
|
+
# You are charged each time your clients receive a configuration.
|
|
813
|
+
#
|
|
814
|
+
# To avoid excess charges, we recommend that you include the
|
|
815
|
+
# `ClientConfigurationVersion` value with every call to
|
|
816
|
+
# `GetConfiguration`. This value must be saved on your client.
|
|
817
|
+
# Subsequent calls to `GetConfiguration` must pass this value by using
|
|
818
|
+
# the `ClientConfigurationVersion` parameter.
|
|
819
|
+
#
|
|
820
|
+
# For more information about working with configurations, see
|
|
821
|
+
# [Retrieving the Configuration][1] in the *AWS AppConfig User Guide*.
|
|
822
|
+
#
|
|
823
|
+
#
|
|
824
|
+
#
|
|
825
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig-retrieving-the-configuration.html
|
|
795
826
|
#
|
|
796
827
|
# @return [Types::Configuration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
797
828
|
#
|
|
@@ -1853,7 +1884,7 @@ module Aws::AppConfig
|
|
|
1853
1884
|
params: params,
|
|
1854
1885
|
config: config)
|
|
1855
1886
|
context[:gem_name] = 'aws-sdk-appconfig'
|
|
1856
|
-
context[:gem_version] = '1.
|
|
1887
|
+
context[:gem_version] = '1.5.0'
|
|
1857
1888
|
Seahorse::Client::Request.new(handlers, context)
|
|
1858
1889
|
end
|
|
1859
1890
|
|
|
@@ -943,7 +943,26 @@ module Aws::AppConfig
|
|
|
943
943
|
#
|
|
944
944
|
# @!attribute [rw] client_configuration_version
|
|
945
945
|
# The configuration version returned in the most recent
|
|
946
|
-
# GetConfiguration response.
|
|
946
|
+
# `GetConfiguration` response.
|
|
947
|
+
#
|
|
948
|
+
# AWS AppConfig uses the value of the `ClientConfigurationVersion`
|
|
949
|
+
# parameter to identify the configuration version on your clients. If
|
|
950
|
+
# you don’t send `ClientConfigurationVersion` with each call to
|
|
951
|
+
# `GetConfiguration`, your clients receive the current configuration.
|
|
952
|
+
# You are charged each time your clients receive a configuration.
|
|
953
|
+
#
|
|
954
|
+
# To avoid excess charges, we recommend that you include the
|
|
955
|
+
# `ClientConfigurationVersion` value with every call to
|
|
956
|
+
# `GetConfiguration`. This value must be saved on your client.
|
|
957
|
+
# Subsequent calls to `GetConfiguration` must pass this value by using
|
|
958
|
+
# the `ClientConfigurationVersion` parameter.
|
|
959
|
+
#
|
|
960
|
+
# For more information about working with configurations, see
|
|
961
|
+
# [Retrieving the Configuration][1] in the *AWS AppConfig User Guide*.
|
|
962
|
+
#
|
|
963
|
+
#
|
|
964
|
+
#
|
|
965
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig-retrieving-the-configuration.html
|
|
947
966
|
# @return [String]
|
|
948
967
|
#
|
|
949
968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetConfigurationRequest AWS API Documentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-appconfig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.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: 2020-
|
|
11
|
+
date: 2020-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.
|
|
84
|
+
rubygems_version: 2.7.6.2
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: AWS SDK for Ruby - AppConfig
|