aws-sdk-amplify 1.58.0 → 1.60.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +37 -24
- data/lib/aws-sdk-amplify/types.rb +35 -6
- data/lib/aws-sdk-amplify.rb +1 -1
- 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: e3cf9e5a8a1f004c13685362229e4060657e81ba688e16217f3ef831681d3ea0
|
|
4
|
+
data.tar.gz: 03b13d7fa1f588ab713fd145efef92c89848bf3b6d685b8b6612351037be74c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bd6ea4f41b9a4c1dce9b02cf58157187cac6a53cbdd3a3ab4eb951f2b4df5357bf879ff555d9fda37ab918e6f795569d5d2b3e4104834547735ec95d78d3b84
|
|
7
|
+
data.tar.gz: b201511f7724d2a646d975871acd349f45022de426b4ea044be6d7d45b6df9b6132b248284701bbef92fcafb62dea344193bfe90bfd0e96c7eaec6d95cb0e3a2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.60.0 (2024-06-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This doc-only update identifies fields that are specific to Gen 1 and Gen 2 applications.
|
|
8
|
+
|
|
9
|
+
1.59.0 (2024-05-13)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.58.0 (2024-04-29)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.60.0
|
|
@@ -301,8 +301,9 @@ module Aws::Amplify
|
|
|
301
301
|
#
|
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
|
303
303
|
# A unique and opaque application ID that is appended to the
|
|
304
|
-
# User-Agent header as app
|
|
305
|
-
# maximum length of 50.
|
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
|
306
307
|
#
|
|
307
308
|
# @option options [String] :secret_access_key
|
|
308
309
|
#
|
|
@@ -638,10 +639,9 @@ module Aws::Amplify
|
|
|
638
639
|
#
|
|
639
640
|
# This API is available only to Amplify Gen 1 applications where the
|
|
640
641
|
# backend is created using Amplify Studio or the Amplify command line
|
|
641
|
-
# interface (CLI). This API isn’t available to
|
|
642
|
-
#
|
|
643
|
-
#
|
|
644
|
-
# using Typescript code.
|
|
642
|
+
# interface (CLI). This API isn’t available to Amplify Gen 2
|
|
643
|
+
# applications. When you deploy an application with Amplify Gen 2, you
|
|
644
|
+
# provision the app's backend infrastructure using Typescript code.
|
|
645
645
|
#
|
|
646
646
|
# @option params [required, String] :app_id
|
|
647
647
|
# The unique ID for an Amplify app.
|
|
@@ -749,12 +749,20 @@ module Aws::Amplify
|
|
|
749
749
|
#
|
|
750
750
|
# @option params [String] :backend_environment_arn
|
|
751
751
|
# The Amazon Resource Name (ARN) for a backend environment that is part
|
|
752
|
-
# of
|
|
752
|
+
# of a Gen 1 Amplify app.
|
|
753
|
+
#
|
|
754
|
+
# This field is available to Amplify Gen 1 apps only where the backend
|
|
755
|
+
# is created using Amplify Studio or the Amplify command line interface
|
|
756
|
+
# (CLI).
|
|
753
757
|
#
|
|
754
758
|
# @option params [Types::Backend] :backend
|
|
755
759
|
# The backend for a `Branch` of an Amplify app. Use for a backend
|
|
756
760
|
# created from an CloudFormation stack.
|
|
757
761
|
#
|
|
762
|
+
# This field is available to Amplify Gen 2 apps only. When you deploy an
|
|
763
|
+
# application with Amplify Gen 2, you provision the app's backend
|
|
764
|
+
# infrastructure using Typescript code.
|
|
765
|
+
#
|
|
758
766
|
# @return [Types::CreateBranchResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
759
767
|
#
|
|
760
768
|
# * {Types::CreateBranchResult#branch #branch} => Types::Branch
|
|
@@ -1082,11 +1090,10 @@ module Aws::Amplify
|
|
|
1082
1090
|
# Deletes a backend environment for an Amplify app.
|
|
1083
1091
|
#
|
|
1084
1092
|
# This API is available only to Amplify Gen 1 applications where the
|
|
1085
|
-
# backend
|
|
1086
|
-
# interface (CLI). This API isn’t available to
|
|
1087
|
-
#
|
|
1088
|
-
#
|
|
1089
|
-
# using Typescript code.
|
|
1093
|
+
# backend is created using Amplify Studio or the Amplify command line
|
|
1094
|
+
# interface (CLI). This API isn’t available to Amplify Gen 2
|
|
1095
|
+
# applications. When you deploy an application with Amplify Gen 2, you
|
|
1096
|
+
# provision the app's backend infrastructure using Typescript code.
|
|
1090
1097
|
#
|
|
1091
1098
|
# @option params [required, String] :app_id
|
|
1092
1099
|
# The unique ID of an Amplify app.
|
|
@@ -1460,11 +1467,10 @@ module Aws::Amplify
|
|
|
1460
1467
|
# Returns a backend environment for an Amplify app.
|
|
1461
1468
|
#
|
|
1462
1469
|
# This API is available only to Amplify Gen 1 applications where the
|
|
1463
|
-
# backend
|
|
1464
|
-
# interface (CLI). This API isn’t available to
|
|
1465
|
-
#
|
|
1466
|
-
#
|
|
1467
|
-
# using Typescript code.
|
|
1470
|
+
# backend is created using Amplify Studio or the Amplify command line
|
|
1471
|
+
# interface (CLI). This API isn’t available to Amplify Gen 2
|
|
1472
|
+
# applications. When you deploy an application with Amplify Gen 2, you
|
|
1473
|
+
# provision the app's backend infrastructure using Typescript code.
|
|
1468
1474
|
#
|
|
1469
1475
|
# @option params [required, String] :app_id
|
|
1470
1476
|
# The unique id for an Amplify app.
|
|
@@ -1839,11 +1845,10 @@ module Aws::Amplify
|
|
|
1839
1845
|
# Lists the backend environments for an Amplify app.
|
|
1840
1846
|
#
|
|
1841
1847
|
# This API is available only to Amplify Gen 1 applications where the
|
|
1842
|
-
# backend
|
|
1843
|
-
# interface (CLI). This API isn’t available to
|
|
1844
|
-
#
|
|
1845
|
-
#
|
|
1846
|
-
# using Typescript code.
|
|
1848
|
+
# backend is created using Amplify Studio or the Amplify command line
|
|
1849
|
+
# interface (CLI). This API isn’t available to Amplify Gen 2
|
|
1850
|
+
# applications. When you deploy an application with Amplify Gen 2, you
|
|
1851
|
+
# provision the app's backend infrastructure using Typescript code.
|
|
1847
1852
|
#
|
|
1848
1853
|
# @option params [required, String] :app_id
|
|
1849
1854
|
# The unique ID for an Amplify app.
|
|
@@ -2657,12 +2662,20 @@ module Aws::Amplify
|
|
|
2657
2662
|
#
|
|
2658
2663
|
# @option params [String] :backend_environment_arn
|
|
2659
2664
|
# The Amazon Resource Name (ARN) for a backend environment that is part
|
|
2660
|
-
# of
|
|
2665
|
+
# of a Gen 1 Amplify app.
|
|
2666
|
+
#
|
|
2667
|
+
# This field is available to Amplify Gen 1 apps only where the backend
|
|
2668
|
+
# is created using Amplify Studio or the Amplify command line interface
|
|
2669
|
+
# (CLI).
|
|
2661
2670
|
#
|
|
2662
2671
|
# @option params [Types::Backend] :backend
|
|
2663
2672
|
# The backend for a `Branch` of an Amplify app. Use for a backend
|
|
2664
2673
|
# created from an CloudFormation stack.
|
|
2665
2674
|
#
|
|
2675
|
+
# This field is available to Amplify Gen 2 apps only. When you deploy an
|
|
2676
|
+
# application with Amplify Gen 2, you provision the app's backend
|
|
2677
|
+
# infrastructure using Typescript code.
|
|
2678
|
+
#
|
|
2666
2679
|
# @return [Types::UpdateBranchResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2667
2680
|
#
|
|
2668
2681
|
# * {Types::UpdateBranchResult#branch #branch} => Types::Branch
|
|
@@ -2871,7 +2884,7 @@ module Aws::Amplify
|
|
|
2871
2884
|
params: params,
|
|
2872
2885
|
config: config)
|
|
2873
2886
|
context[:gem_name] = 'aws-sdk-amplify'
|
|
2874
|
-
context[:gem_version] = '1.
|
|
2887
|
+
context[:gem_version] = '1.60.0'
|
|
2875
2888
|
Seahorse::Client::Request.new(handlers, context)
|
|
2876
2889
|
end
|
|
2877
2890
|
|
|
@@ -253,7 +253,11 @@ module Aws::Amplify
|
|
|
253
253
|
include Aws::Structure
|
|
254
254
|
end
|
|
255
255
|
|
|
256
|
-
# Describes the backend
|
|
256
|
+
# Describes the backend associated with an Amplify `Branch`.
|
|
257
|
+
#
|
|
258
|
+
# This property is available to Amplify Gen 2 apps only. When you deploy
|
|
259
|
+
# an application with Amplify Gen 2, you provision the app's backend
|
|
260
|
+
# infrastructure using Typescript code.
|
|
257
261
|
#
|
|
258
262
|
# @!attribute [rw] stack_arn
|
|
259
263
|
# The Amazon Resource Name (ARN) for the CloudFormation stack.
|
|
@@ -267,7 +271,9 @@ module Aws::Amplify
|
|
|
267
271
|
include Aws::Structure
|
|
268
272
|
end
|
|
269
273
|
|
|
270
|
-
# Describes the backend environment
|
|
274
|
+
# Describes the backend environment associated with a `Branch` of a Gen
|
|
275
|
+
# 1 Amplify app. Amplify Gen 1 applications are created using Amplify
|
|
276
|
+
# Studio or the Amplify command line interface (CLI).
|
|
271
277
|
#
|
|
272
278
|
# @!attribute [rw] backend_environment_arn
|
|
273
279
|
# The Amazon Resource Name (ARN) for a backend environment that is
|
|
@@ -444,11 +450,18 @@ module Aws::Amplify
|
|
|
444
450
|
# @!attribute [rw] backend_environment_arn
|
|
445
451
|
# The Amazon Resource Name (ARN) for a backend environment that is
|
|
446
452
|
# part of an Amplify app.
|
|
453
|
+
#
|
|
454
|
+
# This property is available to Amplify Gen 1 apps only. When you
|
|
455
|
+
# deploy an application with Amplify Gen 2, you provision the app's
|
|
456
|
+
# backend infrastructure using Typescript code.
|
|
447
457
|
# @return [String]
|
|
448
458
|
#
|
|
449
459
|
# @!attribute [rw] backend
|
|
450
|
-
# Describes the backend
|
|
451
|
-
#
|
|
460
|
+
# Describes the backend associated with an Amplify `Branch`.
|
|
461
|
+
#
|
|
462
|
+
# This property is available to Amplify Gen 2 apps only. When you
|
|
463
|
+
# deploy an application with Amplify Gen 2, you provision the app's
|
|
464
|
+
# backend infrastructure using Typescript code.
|
|
452
465
|
# @return [Types::Backend]
|
|
453
466
|
#
|
|
454
467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/Branch AWS API Documentation
|
|
@@ -867,12 +880,20 @@ module Aws::Amplify
|
|
|
867
880
|
#
|
|
868
881
|
# @!attribute [rw] backend_environment_arn
|
|
869
882
|
# The Amazon Resource Name (ARN) for a backend environment that is
|
|
870
|
-
# part of
|
|
883
|
+
# part of a Gen 1 Amplify app.
|
|
884
|
+
#
|
|
885
|
+
# This field is available to Amplify Gen 1 apps only where the backend
|
|
886
|
+
# is created using Amplify Studio or the Amplify command line
|
|
887
|
+
# interface (CLI).
|
|
871
888
|
# @return [String]
|
|
872
889
|
#
|
|
873
890
|
# @!attribute [rw] backend
|
|
874
891
|
# The backend for a `Branch` of an Amplify app. Use for a backend
|
|
875
892
|
# created from an CloudFormation stack.
|
|
893
|
+
#
|
|
894
|
+
# This field is available to Amplify Gen 2 apps only. When you deploy
|
|
895
|
+
# an application with Amplify Gen 2, you provision the app's backend
|
|
896
|
+
# infrastructure using Typescript code.
|
|
876
897
|
# @return [Types::Backend]
|
|
877
898
|
#
|
|
878
899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/CreateBranchRequest AWS API Documentation
|
|
@@ -2820,12 +2841,20 @@ module Aws::Amplify
|
|
|
2820
2841
|
#
|
|
2821
2842
|
# @!attribute [rw] backend_environment_arn
|
|
2822
2843
|
# The Amazon Resource Name (ARN) for a backend environment that is
|
|
2823
|
-
# part of
|
|
2844
|
+
# part of a Gen 1 Amplify app.
|
|
2845
|
+
#
|
|
2846
|
+
# This field is available to Amplify Gen 1 apps only where the backend
|
|
2847
|
+
# is created using Amplify Studio or the Amplify command line
|
|
2848
|
+
# interface (CLI).
|
|
2824
2849
|
# @return [String]
|
|
2825
2850
|
#
|
|
2826
2851
|
# @!attribute [rw] backend
|
|
2827
2852
|
# The backend for a `Branch` of an Amplify app. Use for a backend
|
|
2828
2853
|
# created from an CloudFormation stack.
|
|
2854
|
+
#
|
|
2855
|
+
# This field is available to Amplify Gen 2 apps only. When you deploy
|
|
2856
|
+
# an application with Amplify Gen 2, you provision the app's backend
|
|
2857
|
+
# infrastructure using Typescript code.
|
|
2829
2858
|
# @return [Types::Backend]
|
|
2830
2859
|
#
|
|
2831
2860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/UpdateBranchRequest AWS API Documentation
|
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.60.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: 2024-
|
|
11
|
+
date: 2024-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|