aws-sdk-amplify 1.40.0 → 1.41.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: e8aaba6038e74fbd149ada57f61d84419f5efe2522ecb160b9a6e22933b12fc5
4
- data.tar.gz: 9ca907b9ec04e459c2745668fa01b8a8a168f9c3058652d71c8ae210457a671f
3
+ metadata.gz: 24f0827b5a7fc67ecc033e5e134ac41c1fd120b6664c1e08e58dbe60a6c6e567
4
+ data.tar.gz: 178bf8d666a84d5046a3f8af4a4f27d7cc8ca177802d9e80381dfb652406a5fa
5
5
  SHA512:
6
- metadata.gz: 3ffb1dbfe7c7d4f0e7575e3fe5c6277a020a0f9c7dfdf4c07ab1ae4031c353129ab2e89086e8e9daf58d9e85322cfde9bd88c3a1c97b33f81f7d893ce24a00c9
7
- data.tar.gz: 9eecd7224525d8e416d93f7f0b23a1f2f059890fd075e470fed10e2d202cc08336cd18b4950a9ab289c06b9f296836e95141c07b790add35bf03c7948c9eba7c
6
+ metadata.gz: 5544afe1f80573e621311107656a4a149dc16d52d6c69a5197b090dcb53baa629dcc8ecfee64405824032d6a4e8c18701f3948502aa3735d277be64c4d9329d5
7
+ data.tar.gz: 741384a6ce97e99370446aea215d1f5afc94ba409529c92173b3b6440d303f8cd2f3170a1c9fb113f8f076386d543cd3b75310d3cde9f3530dc0601778521e29
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2022-04-27)
5
+ ------------------
6
+
7
+ * Feature - Documentation only update to support the Amplify GitHub App feature launch
8
+
4
9
  1.40.0 (2022-02-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -372,12 +372,46 @@ module Aws::Amplify
372
372
  # @option params [String] :oauth_token
373
373
  # The OAuth token for a third-party source control system for an Amplify
374
374
  # app. The OAuth token is used to create a webhook and a read-only
375
- # deploy key. The OAuth token is not stored.
375
+ # deploy key using SSH cloning. The OAuth token is not stored.
376
+ #
377
+ # Use `oauthToken` for repository providers other than GitHub, such as
378
+ # Bitbucket or CodeCommit. To authorize access to GitHub as your
379
+ # repository provider, use `accessToken`.
380
+ #
381
+ # You must specify either `oauthToken` or `accessToken` when you create
382
+ # a new app.
383
+ #
384
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
385
+ # continue to work with CI/CD. However, we strongly recommend that you
386
+ # migrate these apps to use the GitHub App. For more information, see
387
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in the
388
+ # *Amplify User Guide* .
389
+ #
390
+ #
391
+ #
392
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
376
393
  #
377
394
  # @option params [String] :access_token
378
- # The personal access token for a third-party source control system for
379
- # an Amplify app. The personal access token is used to create a webhook
380
- # and a read-only deploy key. The token is not stored.
395
+ # The personal access token for a GitHub repository for an Amplify app.
396
+ # The personal access token is used to authorize access to a GitHub
397
+ # repository using the Amplify GitHub App. The token is not stored.
398
+ #
399
+ # Use `accessToken` for GitHub repositories only. To authorize access to
400
+ # a repository provider such as Bitbucket or CodeCommit, use
401
+ # `oauthToken`.
402
+ #
403
+ # You must specify either `accessToken` or `oauthToken` when you create
404
+ # a new app.
405
+ #
406
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
407
+ # continue to work with CI/CD. However, we strongly recommend that you
408
+ # migrate these apps to use the GitHub App. For more information, see
409
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in the
410
+ # *Amplify User Guide* .
411
+ #
412
+ #
413
+ #
414
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
381
415
  #
382
416
  # @option params [Hash<String,String>] :environment_variables
383
417
  # The environment variables map for an Amplify app.
@@ -2253,13 +2287,49 @@ module Aws::Amplify
2253
2287
  #
2254
2288
  # @option params [String] :oauth_token
2255
2289
  # The OAuth token for a third-party source control system for an Amplify
2256
- # app. The token is used to create a webhook and a read-only deploy key.
2257
- # The OAuth token is not stored.
2290
+ # app. The OAuth token is used to create a webhook and a read-only
2291
+ # deploy key using SSH cloning. The OAuth token is not stored.
2292
+ #
2293
+ # Use `oauthToken` for repository providers other than GitHub, such as
2294
+ # Bitbucket or CodeCommit.
2295
+ #
2296
+ # To authorize access to GitHub as your repository provider, use
2297
+ # `accessToken`.
2298
+ #
2299
+ # You must specify either `oauthToken` or `accessToken` when you update
2300
+ # an app.
2301
+ #
2302
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
2303
+ # continue to work with CI/CD. However, we strongly recommend that you
2304
+ # migrate these apps to use the GitHub App. For more information, see
2305
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in the
2306
+ # *Amplify User Guide* .
2307
+ #
2308
+ #
2309
+ #
2310
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
2258
2311
  #
2259
2312
  # @option params [String] :access_token
2260
- # The personal access token for a third-party source control system for
2261
- # an Amplify app. The token is used to create webhook and a read-only
2262
- # deploy key. The token is not stored.
2313
+ # The personal access token for a GitHub repository for an Amplify app.
2314
+ # The personal access token is used to authorize access to a GitHub
2315
+ # repository using the Amplify GitHub App. The token is not stored.
2316
+ #
2317
+ # Use `accessToken` for GitHub repositories only. To authorize access to
2318
+ # a repository provider such as Bitbucket or CodeCommit, use
2319
+ # `oauthToken`.
2320
+ #
2321
+ # You must specify either `accessToken` or `oauthToken` when you update
2322
+ # an app.
2323
+ #
2324
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
2325
+ # continue to work with CI/CD. However, we strongly recommend that you
2326
+ # migrate these apps to use the GitHub App. For more information, see
2327
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in the
2328
+ # *Amplify User Guide* .
2329
+ #
2330
+ #
2331
+ #
2332
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
2263
2333
  #
2264
2334
  # @return [Types::UpdateAppResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2265
2335
  #
@@ -2622,7 +2692,7 @@ module Aws::Amplify
2622
2692
  params: params,
2623
2693
  config: config)
2624
2694
  context[:gem_name] = 'aws-sdk-amplify'
2625
- context[:gem_version] = '1.40.0'
2695
+ context[:gem_version] = '1.41.0'
2626
2696
  Seahorse::Client::Request.new(handlers, context)
2627
2697
  end
2628
2698
 
@@ -114,10 +114,15 @@ module Aws::Amplify
114
114
  # @return [Types::AutoBranchCreationConfig]
115
115
  #
116
116
  # @!attribute [rw] repository_clone_method
117
- # The authentication protocol to use to access the Git repository for
118
- # an Amplify app. For a GitHub repository, specify `TOKEN`. For an
119
- # Amazon Web Services CodeCommit repository, specify `SIGV4`. For
120
- # GitLab and Bitbucket repositories, specify `SSH`.
117
+ # <note markdown="1"> This is for internal use.
118
+ #
119
+ # </note>
120
+ #
121
+ # The Amplify service uses this parameter to specify the
122
+ # authentication protocol to use to access the Git repository for an
123
+ # Amplify app. Amplify specifies `TOKEN` for a GitHub repository,
124
+ # `SIGV4` for an Amazon Web Services CodeCommit repository, and `SSH`
125
+ # for GitLab and Bitbucket repositories.
121
126
  # @return [String]
122
127
  #
123
128
  # @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/App AWS API Documentation
@@ -542,13 +547,49 @@ module Aws::Amplify
542
547
  # @!attribute [rw] oauth_token
543
548
  # The OAuth token for a third-party source control system for an
544
549
  # Amplify app. The OAuth token is used to create a webhook and a
545
- # read-only deploy key. The OAuth token is not stored.
550
+ # read-only deploy key using SSH cloning. The OAuth token is not
551
+ # stored.
552
+ #
553
+ # Use `oauthToken` for repository providers other than GitHub, such as
554
+ # Bitbucket or CodeCommit. To authorize access to GitHub as your
555
+ # repository provider, use `accessToken`.
556
+ #
557
+ # You must specify either `oauthToken` or `accessToken` when you
558
+ # create a new app.
559
+ #
560
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
561
+ # continue to work with CI/CD. However, we strongly recommend that you
562
+ # migrate these apps to use the GitHub App. For more information, see
563
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in
564
+ # the *Amplify User Guide* .
565
+ #
566
+ #
567
+ #
568
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
546
569
  # @return [String]
547
570
  #
548
571
  # @!attribute [rw] access_token
549
- # The personal access token for a third-party source control system
550
- # for an Amplify app. The personal access token is used to create a
551
- # webhook and a read-only deploy key. The token is not stored.
572
+ # The personal access token for a GitHub repository for an Amplify
573
+ # app. The personal access token is used to authorize access to a
574
+ # GitHub repository using the Amplify GitHub App. The token is not
575
+ # stored.
576
+ #
577
+ # Use `accessToken` for GitHub repositories only. To authorize access
578
+ # to a repository provider such as Bitbucket or CodeCommit, use
579
+ # `oauthToken`.
580
+ #
581
+ # You must specify either `accessToken` or `oauthToken` when you
582
+ # create a new app.
583
+ #
584
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
585
+ # continue to work with CI/CD. However, we strongly recommend that you
586
+ # migrate these apps to use the GitHub App. For more information, see
587
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in
588
+ # the *Amplify User Guide* .
589
+ #
590
+ #
591
+ #
592
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
552
593
  # @return [String]
553
594
  #
554
595
  # @!attribute [rw] environment_variables
@@ -2851,14 +2892,52 @@ module Aws::Amplify
2851
2892
  #
2852
2893
  # @!attribute [rw] oauth_token
2853
2894
  # The OAuth token for a third-party source control system for an
2854
- # Amplify app. The token is used to create a webhook and a read-only
2855
- # deploy key. The OAuth token is not stored.
2895
+ # Amplify app. The OAuth token is used to create a webhook and a
2896
+ # read-only deploy key using SSH cloning. The OAuth token is not
2897
+ # stored.
2898
+ #
2899
+ # Use `oauthToken` for repository providers other than GitHub, such as
2900
+ # Bitbucket or CodeCommit.
2901
+ #
2902
+ # To authorize access to GitHub as your repository provider, use
2903
+ # `accessToken`.
2904
+ #
2905
+ # You must specify either `oauthToken` or `accessToken` when you
2906
+ # update an app.
2907
+ #
2908
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
2909
+ # continue to work with CI/CD. However, we strongly recommend that you
2910
+ # migrate these apps to use the GitHub App. For more information, see
2911
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in
2912
+ # the *Amplify User Guide* .
2913
+ #
2914
+ #
2915
+ #
2916
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
2856
2917
  # @return [String]
2857
2918
  #
2858
2919
  # @!attribute [rw] access_token
2859
- # The personal access token for a third-party source control system
2860
- # for an Amplify app. The token is used to create webhook and a
2861
- # read-only deploy key. The token is not stored.
2920
+ # The personal access token for a GitHub repository for an Amplify
2921
+ # app. The personal access token is used to authorize access to a
2922
+ # GitHub repository using the Amplify GitHub App. The token is not
2923
+ # stored.
2924
+ #
2925
+ # Use `accessToken` for GitHub repositories only. To authorize access
2926
+ # to a repository provider such as Bitbucket or CodeCommit, use
2927
+ # `oauthToken`.
2928
+ #
2929
+ # You must specify either `accessToken` or `oauthToken` when you
2930
+ # update an app.
2931
+ #
2932
+ # Existing Amplify apps deployed from a GitHub repository using OAuth
2933
+ # continue to work with CI/CD. However, we strongly recommend that you
2934
+ # migrate these apps to use the GitHub App. For more information, see
2935
+ # [Migrating an existing OAuth app to the Amplify GitHub App][1] in
2936
+ # the *Amplify User Guide* .
2937
+ #
2938
+ #
2939
+ #
2940
+ # [1]: https://docs.aws.amazon.com/amplify/latest/UserGuide/setting-up-GitHub-access.html#migrating-to-github-app-auth
2862
2941
  # @return [String]
2863
2942
  #
2864
2943
  # @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/UpdateAppRequest AWS API Documentation
@@ -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.40.0'
51
+ GEM_VERSION = '1.41.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.40.0
4
+ version: 1.41.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: 2022-02-28 00:00:00.000000000 Z
11
+ date: 2022-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core