aws-sdk-amplify 1.34.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +28 -7
- data/lib/aws-sdk-amplify/types.rb +19 -6
- data/lib/aws-sdk-amplify.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 508f956454081991d630e92628d711dfbf008a87b15dfc3063ae38265b562b22
|
4
|
+
data.tar.gz: 9eb9dd1918431a22aaa7a0baee36315c261f09be5ac710f43e01fdcbb684e7f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cd961dd0ca42e278a3beb6a07573b038f71890072f84b4a32e84e263289b7f9278f8d3ef2c10eeeb7a032527f6a01cb0a81592be84396f980e52c0cd6356366
|
7
|
+
data.tar.gz: 89931f8f0bd8160f53b3091dc84e546853575d8cd251d7ab7aa104eb0937d6523f93828038106155ae850494510ebcd0d90bbb6fefe6352ae8a2955a360bc200
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.37.0 (2022-01-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc only update to the description of basicauthcredentials to describe the required encoding and format.
|
13
|
+
|
14
|
+
1.36.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.35.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.34.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::Amplify
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::Amplify
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::Amplify
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::Amplify
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::Amplify
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -379,7 +392,9 @@ module Aws::Amplify
|
|
379
392
|
# branches that are part of this app.
|
380
393
|
#
|
381
394
|
# @option params [String] :basic_auth_credentials
|
382
|
-
# The credentials for basic authorization for an Amplify app.
|
395
|
+
# The credentials for basic authorization for an Amplify app. You must
|
396
|
+
# base64-encode the authorization credentials and provide them in the
|
397
|
+
# format `user:password`.
|
383
398
|
#
|
384
399
|
# @option params [Array<Types::CustomRule>] :custom_rules
|
385
400
|
# The custom rewrite and redirect rules for an Amplify app.
|
@@ -581,7 +596,9 @@ module Aws::Amplify
|
|
581
596
|
# The environment variables for the branch.
|
582
597
|
#
|
583
598
|
# @option params [String] :basic_auth_credentials
|
584
|
-
# The basic authorization credentials for the branch.
|
599
|
+
# The basic authorization credentials for the branch. You must
|
600
|
+
# base64-encode the authorization credentials and provide them in the
|
601
|
+
# format `user:password`.
|
585
602
|
#
|
586
603
|
# @option params [Boolean] :enable_basic_auth
|
587
604
|
# Enables basic authorization for the branch.
|
@@ -2202,7 +2219,9 @@ module Aws::Amplify
|
|
2202
2219
|
# Enables basic authorization for an Amplify app.
|
2203
2220
|
#
|
2204
2221
|
# @option params [String] :basic_auth_credentials
|
2205
|
-
# The basic authorization credentials for an Amplify app.
|
2222
|
+
# The basic authorization credentials for an Amplify app. You must
|
2223
|
+
# base64-encode the authorization credentials and provide them in the
|
2224
|
+
# format `user:password`.
|
2206
2225
|
#
|
2207
2226
|
# @option params [Array<Types::CustomRule>] :custom_rules
|
2208
2227
|
# The custom redirect and rewrite rules for an Amplify app.
|
@@ -2368,7 +2387,9 @@ module Aws::Amplify
|
|
2368
2387
|
# The environment variables for the branch.
|
2369
2388
|
#
|
2370
2389
|
# @option params [String] :basic_auth_credentials
|
2371
|
-
# The basic authorization credentials for the branch.
|
2390
|
+
# The basic authorization credentials for the branch. You must
|
2391
|
+
# base64-encode the authorization credentials and provide them in the
|
2392
|
+
# format `user:password`.
|
2372
2393
|
#
|
2373
2394
|
# @option params [Boolean] :enable_basic_auth
|
2374
2395
|
# Enables basic authorization for the branch.
|
@@ -2594,7 +2615,7 @@ module Aws::Amplify
|
|
2594
2615
|
params: params,
|
2595
2616
|
config: config)
|
2596
2617
|
context[:gem_name] = 'aws-sdk-amplify'
|
2597
|
-
context[:gem_version] = '1.
|
2618
|
+
context[:gem_version] = '1.38.0'
|
2598
2619
|
Seahorse::Client::Request.new(handlers, context)
|
2599
2620
|
end
|
2600
2621
|
|
@@ -77,7 +77,8 @@ module Aws::Amplify
|
|
77
77
|
#
|
78
78
|
# @!attribute [rw] basic_auth_credentials
|
79
79
|
# The basic authorization credentials for branches for the Amplify
|
80
|
-
# app.
|
80
|
+
# app. You must base64-encode the authorization credentials and
|
81
|
+
# provide them in the format `user:password`.
|
81
82
|
# @return [String]
|
82
83
|
#
|
83
84
|
# @!attribute [rw] custom_rules
|
@@ -198,7 +199,9 @@ module Aws::Amplify
|
|
198
199
|
# @return [Hash<String,String>]
|
199
200
|
#
|
200
201
|
# @!attribute [rw] basic_auth_credentials
|
201
|
-
# The basic authorization credentials for the autocreated branch.
|
202
|
+
# The basic authorization credentials for the autocreated branch. You
|
203
|
+
# must base64-encode the authorization credentials and provide them in
|
204
|
+
# the format `user:password`.
|
202
205
|
# @return [String]
|
203
206
|
#
|
204
207
|
# @!attribute [rw] enable_basic_auth
|
@@ -384,6 +387,8 @@ module Aws::Amplify
|
|
384
387
|
#
|
385
388
|
# @!attribute [rw] basic_auth_credentials
|
386
389
|
# The basic authorization credentials for a branch of an Amplify app.
|
390
|
+
# You must base64-encode the authorization credentials and provide
|
391
|
+
# them in the format `user:password`.
|
387
392
|
# @return [String]
|
388
393
|
#
|
389
394
|
# @!attribute [rw] build_spec
|
@@ -557,7 +562,9 @@ module Aws::Amplify
|
|
557
562
|
# @return [Boolean]
|
558
563
|
#
|
559
564
|
# @!attribute [rw] basic_auth_credentials
|
560
|
-
# The credentials for basic authorization for an Amplify app.
|
565
|
+
# The credentials for basic authorization for an Amplify app. You must
|
566
|
+
# base64-encode the authorization credentials and provide them in the
|
567
|
+
# format `user:password`.
|
561
568
|
# @return [String]
|
562
569
|
#
|
563
570
|
# @!attribute [rw] custom_rules
|
@@ -743,7 +750,9 @@ module Aws::Amplify
|
|
743
750
|
# @return [Hash<String,String>]
|
744
751
|
#
|
745
752
|
# @!attribute [rw] basic_auth_credentials
|
746
|
-
# The basic authorization credentials for the branch.
|
753
|
+
# The basic authorization credentials for the branch. You must
|
754
|
+
# base64-encode the authorization credentials and provide them in the
|
755
|
+
# format `user:password`.
|
747
756
|
# @return [String]
|
748
757
|
#
|
749
758
|
# @!attribute [rw] enable_basic_auth
|
@@ -2798,7 +2807,9 @@ module Aws::Amplify
|
|
2798
2807
|
# @return [Boolean]
|
2799
2808
|
#
|
2800
2809
|
# @!attribute [rw] basic_auth_credentials
|
2801
|
-
# The basic authorization credentials for an Amplify app.
|
2810
|
+
# The basic authorization credentials for an Amplify app. You must
|
2811
|
+
# base64-encode the authorization credentials and provide them in the
|
2812
|
+
# format `user:password`.
|
2802
2813
|
# @return [String]
|
2803
2814
|
#
|
2804
2815
|
# @!attribute [rw] custom_rules
|
@@ -2942,7 +2953,9 @@ module Aws::Amplify
|
|
2942
2953
|
# @return [Hash<String,String>]
|
2943
2954
|
#
|
2944
2955
|
# @!attribute [rw] basic_auth_credentials
|
2945
|
-
# The basic authorization credentials for the branch.
|
2956
|
+
# The basic authorization credentials for the branch. You must
|
2957
|
+
# base64-encode the authorization credentials and provide them in the
|
2958
|
+
# format `user:password`.
|
2946
2959
|
# @return [String]
|
2947
2960
|
#
|
2948
2961
|
# @!attribute [rw] enable_basic_auth
|
data/lib/aws-sdk-amplify.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-amplify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.38.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:
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|