aws-sdk-mobile 1.21.0 → 1.22.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
  SHA256:
3
- metadata.gz: b004ef42fc94ed542bc6ce9ef3e6bbe94d60c7aa7656a35f46b4a11dfffa6082
4
- data.tar.gz: 81520122ab7eaa40e966816afc3e1784202d1f98d58f269c4c0b98e3f57ece8c
3
+ metadata.gz: 16b1472f605f6b9a026cd16e63e11fb790db0ffbca0adccd507e12e7467a88c2
4
+ data.tar.gz: e5cbd3b2caffd2f52b45f9353f9ac95a775d2d2e028136464d44f93aa5718c26
5
5
  SHA512:
6
- metadata.gz: d0f22b6fa1c8fb66be03d6af08bd39e4f3d46e6b00ed319eaf4226d658428e1d9a564543e0d8486cf4bb11d08456f0457252945fae5ed3b6f3817937fd0096e9
7
- data.tar.gz: af134e7d1ecb02073ffd00a117eb05da187569eb3ab4716127b0bc613fbd93bd4493722ece23661501d20d9451ad4630a730c7182e49b71f604a5161e36ef7dd
6
+ metadata.gz: e2372ee82af675827656ea009d7b4654fe0127b446c0b7e1e475cd4712a0030eaf7da7709ef6333f11424406a4c66dc4a01e23774afa78cce6297c9ece5fceca
7
+ data.tar.gz: 0b9750650a6ba690294f7a86eab4352a6080d6dfe55efd802b1b6eb2dcd26c2d3e930b64d2bb2264fb8723870167493a3b20248589f78f2634e4fefd9293293b
@@ -44,9 +44,9 @@ require_relative 'aws-sdk-mobile/customizations'
44
44
  #
45
45
  # See {Errors} for more information.
46
46
  #
47
- # @service
47
+ # @!group service
48
48
  module Aws::Mobile
49
49
 
50
- GEM_VERSION = '1.21.0'
50
+ GEM_VERSION = '1.22.0'
51
51
 
52
52
  end
@@ -85,13 +85,28 @@ module Aws::Mobile
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::Mobile
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
@@ -320,7 +335,7 @@ module Aws::Mobile
320
335
  # @option params [String] :region
321
336
  # Default region where project resources should be created.
322
337
  #
323
- # @option params [String, IO] :contents
338
+ # @option params [String, StringIO, File] :contents
324
339
  # ZIP or YAML file which contains configuration settings to be used when
325
340
  # creating the project. This may be the contents of the file downloaded
326
341
  # from the URL provided in an export project operation.
@@ -652,7 +667,7 @@ module Aws::Mobile
652
667
 
653
668
  # Update an existing project.
654
669
  #
655
- # @option params [String, IO] :contents
670
+ # @option params [String, StringIO, File] :contents
656
671
  # ZIP or YAML file which contains project configuration to be updated.
657
672
  # This should be the contents of the file downloaded from the URL
658
673
  # provided in an export project operation.
@@ -710,7 +725,7 @@ module Aws::Mobile
710
725
  params: params,
711
726
  config: config)
712
727
  context[:gem_name] = 'aws-sdk-mobile'
713
- context[:gem_version] = '1.21.0'
728
+ context[:gem_version] = '1.22.0'
714
729
  Seahorse::Client::Request.new(handlers, context)
715
730
  end
716
731
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mobile
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.22.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