aws-sdk-appconfig 1.9.0 → 1.10.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
  SHA256:
3
- metadata.gz: 9f4881458c2e3e687e6c07c61e51fd5b2405162f3c098e9fb572e3b88a0ec86d
4
- data.tar.gz: d9df0a14f751b8618005eb78b6ec587dfb8b87a8b85d07581a7c4ee0b021b6db
3
+ metadata.gz: 7eed6cf27a2d8101743c9d8d1d23ce500060f5721be1d4fad76eefebf527201a
4
+ data.tar.gz: 0534a1736a3d4e556e17763b4112c95064059f07561c641c1a393697c009764f
5
5
  SHA512:
6
- metadata.gz: 46749189c62cbf0b02a74bff61da789bb120dac64ffb26302936a3682a73254f1e363040b3753761453ae71f9b5f2f9103bcd692a0f5b5009a452f33a63d10cf
7
- data.tar.gz: 02f3f2003b74fe07b878d6f8f86dd5adb49795c8dd0ed08dd34b3843f7518c23489a59f4bb20998d0abf196b6150727550da867dfab62fd43e836c2c553f99aa
6
+ metadata.gz: 1d7881312a0b017fb45159e8dea4d67729d4c167e743e566cd13a223dfb00a327560e1db9e9fa9dd3e417fd070242545b0d0eced5cce4432ffa60063acf755d4
7
+ data.tar.gz: 2268c13b11a4bc8918047159399c3044a3f80ff083f081148474400098e99c90cfa29fe985cec061a4f1673301a5bad7860f7b5f61fab02ecb40188f58976933
@@ -44,9 +44,9 @@ require_relative 'aws-sdk-appconfig/customizations'
44
44
  #
45
45
  # See {Errors} for more information.
46
46
  #
47
- # @service
47
+ # @!group service
48
48
  module Aws::AppConfig
49
49
 
50
- GEM_VERSION = '1.9.0'
50
+ GEM_VERSION = '1.10.0'
51
51
 
52
52
  end
@@ -85,13 +85,28 @@ module Aws::AppConfig
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::AppConfig
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -652,7 +667,7 @@ module Aws::AppConfig
652
667
  # @option params [String] :description
653
668
  # A description of the configuration.
654
669
  #
655
- # @option params [required, String, IO] :content
670
+ # @option params [required, String, StringIO, File] :content
656
671
  # The content of the configuration or the configuration data.
657
672
  #
658
673
  # @option params [required, String] :content_type
@@ -2085,7 +2100,7 @@ module Aws::AppConfig
2085
2100
  params: params,
2086
2101
  config: config)
2087
2102
  context[:gem_name] = 'aws-sdk-appconfig'
2088
- context[:gem_version] = '1.9.0'
2103
+ context[:gem_version] = '1.10.0'
2089
2104
  Seahorse::Client::Request.new(handlers, context)
2090
2105
  end
2091
2106
 
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.9.0
4
+ version: 1.10.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-06-23 00:00:00.000000000 Z
11
+ date: 2020-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core