aws-sdk-amplify 1.36.0 → 1.39.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +17 -5
- 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: aee1200aac76513b4dc1115eb4392a651fd42c04539bb6c863ee908ce4444c99
|
4
|
+
data.tar.gz: 8dd24cbaa1613e71877e1046ca1838e202f16073e4408a338a35c8096a4a5359
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 531c2120576b5048777d61ae146ea1e4270bf570233f36a7234db87a1c41bda1e2c42b8e9218c488732bf0d92b30b62dfd0803aaafcf8c41db9e93011eb41599
|
7
|
+
data.tar.gz: '0939f5afbdb123e5fd5dce36a3780d24d3493e73166d561a72d910309e04b0ddf56f6f4ec5759a397f33d6b035abcc69b8d3e4ba412f1d6bc6a3e185fa14466e'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.39.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.38.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.37.0 (2022-01-27)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Doc only update to the description of basicauthcredentials to describe the required encoding and format.
|
18
|
+
|
4
19
|
1.36.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::Amplify
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -390,7 +394,9 @@ module Aws::Amplify
|
|
390
394
|
# branches that are part of this app.
|
391
395
|
#
|
392
396
|
# @option params [String] :basic_auth_credentials
|
393
|
-
# The credentials for basic authorization for an Amplify app.
|
397
|
+
# The credentials for basic authorization for an Amplify app. You must
|
398
|
+
# base64-encode the authorization credentials and provide them in the
|
399
|
+
# format `user:password`.
|
394
400
|
#
|
395
401
|
# @option params [Array<Types::CustomRule>] :custom_rules
|
396
402
|
# The custom rewrite and redirect rules for an Amplify app.
|
@@ -592,7 +598,9 @@ module Aws::Amplify
|
|
592
598
|
# The environment variables for the branch.
|
593
599
|
#
|
594
600
|
# @option params [String] :basic_auth_credentials
|
595
|
-
# The basic authorization credentials for the branch.
|
601
|
+
# The basic authorization credentials for the branch. You must
|
602
|
+
# base64-encode the authorization credentials and provide them in the
|
603
|
+
# format `user:password`.
|
596
604
|
#
|
597
605
|
# @option params [Boolean] :enable_basic_auth
|
598
606
|
# Enables basic authorization for the branch.
|
@@ -2213,7 +2221,9 @@ module Aws::Amplify
|
|
2213
2221
|
# Enables basic authorization for an Amplify app.
|
2214
2222
|
#
|
2215
2223
|
# @option params [String] :basic_auth_credentials
|
2216
|
-
# The basic authorization credentials for an Amplify app.
|
2224
|
+
# The basic authorization credentials for an Amplify app. You must
|
2225
|
+
# base64-encode the authorization credentials and provide them in the
|
2226
|
+
# format `user:password`.
|
2217
2227
|
#
|
2218
2228
|
# @option params [Array<Types::CustomRule>] :custom_rules
|
2219
2229
|
# The custom redirect and rewrite rules for an Amplify app.
|
@@ -2379,7 +2389,9 @@ module Aws::Amplify
|
|
2379
2389
|
# The environment variables for the branch.
|
2380
2390
|
#
|
2381
2391
|
# @option params [String] :basic_auth_credentials
|
2382
|
-
# The basic authorization credentials for the branch.
|
2392
|
+
# The basic authorization credentials for the branch. You must
|
2393
|
+
# base64-encode the authorization credentials and provide them in the
|
2394
|
+
# format `user:password`.
|
2383
2395
|
#
|
2384
2396
|
# @option params [Boolean] :enable_basic_auth
|
2385
2397
|
# Enables basic authorization for the branch.
|
@@ -2605,7 +2617,7 @@ module Aws::Amplify
|
|
2605
2617
|
params: params,
|
2606
2618
|
config: config)
|
2607
2619
|
context[:gem_name] = 'aws-sdk-amplify'
|
2608
|
-
context[:gem_version] = '1.
|
2620
|
+
context[:gem_version] = '1.39.0'
|
2609
2621
|
Seahorse::Client::Request.new(handlers, context)
|
2610
2622
|
end
|
2611
2623
|
|
@@ -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.39.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-24 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.127.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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|