aws-sdk-amplify 1.36.0 → 1.37.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: 152c76fe63e3ed723dd9cd2c3254971fe71547a937393eab99de7d8c134e06b5
4
- data.tar.gz: f148565987cf69c81d9071640b83c85224e65d184e18d856976f688b782641c9
3
+ metadata.gz: c29dbcff5755048f52fe9aa8c23c8bfdd7bddfb24f56c5b6b74b986ac3b822a3
4
+ data.tar.gz: 4a952e63123a29f07683ce204e7dad23bd22fe44e0aa69e4d9db955059a2783d
5
5
  SHA512:
6
- metadata.gz: 20f2f9b53a1eddbeab6c24fecabb69ff3459aba108538bbc821c432fe7f03cca3091aa4c3b34d0b0a4981ec9b60936e32d7b41911b9d59d4b01cd2aa978284f0
7
- data.tar.gz: 8d3cd06dfbad8176a8ea1f6e8dcbe1dc2f1ede6474bfdf3dc0425111b445e342a4b4374c39d90c3a4265920fe4944079e0f68bcb6c4d4c71ec36bab79dcd2913
6
+ metadata.gz: 71fb91a1293e29fbb38b3fe64b2489b816bb583717135e484ae830338e9545677aa127551dcde4958a43cd459ede9454908b64d83de221ace905d46537c2f1b8
7
+ data.tar.gz: 11967d5e5d4a6db827fafced7b4454c446f857268f205f7eff6cc6be0fa2e8101f920dcf24948276d0a4c4bebe0f5c8fd7dfff7269a4ac8b7f376eb75c7b59ad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2022-01-27)
5
+ ------------------
6
+
7
+ * Feature - Doc only update to the description of basicauthcredentials to describe the required encoding and format.
8
+
4
9
  1.36.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -390,7 +390,9 @@ module Aws::Amplify
390
390
  # branches that are part of this app.
391
391
  #
392
392
  # @option params [String] :basic_auth_credentials
393
- # The credentials for basic authorization for an Amplify app.
393
+ # The credentials for basic authorization for an Amplify app. You must
394
+ # base64-encode the authorization credentials and provide them in the
395
+ # format `user:password`.
394
396
  #
395
397
  # @option params [Array<Types::CustomRule>] :custom_rules
396
398
  # The custom rewrite and redirect rules for an Amplify app.
@@ -592,7 +594,9 @@ module Aws::Amplify
592
594
  # The environment variables for the branch.
593
595
  #
594
596
  # @option params [String] :basic_auth_credentials
595
- # The basic authorization credentials for the branch.
597
+ # The basic authorization credentials for the branch. You must
598
+ # base64-encode the authorization credentials and provide them in the
599
+ # format `user:password`.
596
600
  #
597
601
  # @option params [Boolean] :enable_basic_auth
598
602
  # Enables basic authorization for the branch.
@@ -2213,7 +2217,9 @@ module Aws::Amplify
2213
2217
  # Enables basic authorization for an Amplify app.
2214
2218
  #
2215
2219
  # @option params [String] :basic_auth_credentials
2216
- # The basic authorization credentials for an Amplify app.
2220
+ # The basic authorization credentials for an Amplify app. You must
2221
+ # base64-encode the authorization credentials and provide them in the
2222
+ # format `user:password`.
2217
2223
  #
2218
2224
  # @option params [Array<Types::CustomRule>] :custom_rules
2219
2225
  # The custom redirect and rewrite rules for an Amplify app.
@@ -2379,7 +2385,9 @@ module Aws::Amplify
2379
2385
  # The environment variables for the branch.
2380
2386
  #
2381
2387
  # @option params [String] :basic_auth_credentials
2382
- # The basic authorization credentials for the branch.
2388
+ # The basic authorization credentials for the branch. You must
2389
+ # base64-encode the authorization credentials and provide them in the
2390
+ # format `user:password`.
2383
2391
  #
2384
2392
  # @option params [Boolean] :enable_basic_auth
2385
2393
  # Enables basic authorization for the branch.
@@ -2605,7 +2613,7 @@ module Aws::Amplify
2605
2613
  params: params,
2606
2614
  config: config)
2607
2615
  context[:gem_name] = 'aws-sdk-amplify'
2608
- context[:gem_version] = '1.36.0'
2616
+ context[:gem_version] = '1.37.0'
2609
2617
  Seahorse::Client::Request.new(handlers, context)
2610
2618
  end
2611
2619
 
@@ -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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-amplify/customizations'
48
48
  # @!group service
49
49
  module Aws::Amplify
50
50
 
51
- GEM_VERSION = '1.36.0'
51
+ GEM_VERSION = '1.37.0'
52
52
 
53
53
  end
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.36.0
4
+ version: 1.37.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core