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 +4 -4
- data/lib/aws-sdk-mobile.rb +2 -2
- data/lib/aws-sdk-mobile/client.rb +25 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16b1472f605f6b9a026cd16e63e11fb790db0ffbca0adccd507e12e7467a88c2
|
4
|
+
data.tar.gz: e5cbd3b2caffd2f52b45f9353f9ac95a775d2d2e028136464d44f93aa5718c26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2372ee82af675827656ea009d7b4654fe0127b446c0b7e1e475cd4712a0030eaf7da7709ef6333f11424406a4c66dc4a01e23774afa78cce6297c9ece5fceca
|
7
|
+
data.tar.gz: 0b9750650a6ba690294f7a86eab4352a6080d6dfe55efd802b1b6eb2dcd26c2d3e930b64d2bb2264fb8723870167493a3b20248589f78f2634e4fefd9293293b
|
data/lib/aws-sdk-mobile.rb
CHANGED
@@ -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::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
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
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
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,
|
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,
|
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.
|
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.
|
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-
|
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
|