aws-sdk-amplify 1.80.0 → 1.81.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +44 -5
- data/lib/aws-sdk-amplify/client_api.rb +4 -0
- data/lib/aws-sdk-amplify/types.rb +60 -6
- data/lib/aws-sdk-amplify.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +3 -0
- 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: 85fff9b4dae4daf9379c111a08356621676deda30976d2c889bb4ec3b6b2cb4c
|
4
|
+
data.tar.gz: 075557f29f2007523ecdb8cfceaf775f1f27df13f53bf96dea28ef2328289ee1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8393232093fb65d795aec760829659f3d0dab90976af1fac909048aebd02937707a1333608a0bd148b1ffd9b71419e27660518848cd5a639fd5330670b8170e1
|
7
|
+
data.tar.gz: d1946b26eaa25046a8bdfe3e00987a930b3915aa47018a8c5e55b0e45bd4073d969cd1016e7d48a95ccfaa69ca564525078cf67e73f9b8a345ba13eb81288c81
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.81.0 (2025-03-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduced support for Skew Protection. Added enableSkewProtection field to createBranch and updateBranch API.
|
8
|
+
|
4
9
|
1.80.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|
@@ -508,7 +508,7 @@ module Aws::Amplify
|
|
508
508
|
#
|
509
509
|
#
|
510
510
|
#
|
511
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
511
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
512
512
|
#
|
513
513
|
# @option params [String] :iam_service_role_arn
|
514
514
|
# The Amazon Resource Name (ARN) of the IAM service role for the Amplify
|
@@ -801,6 +801,22 @@ module Aws::Amplify
|
|
801
801
|
# @option params [Boolean] :enable_auto_build
|
802
802
|
# Enables auto building for the branch.
|
803
803
|
#
|
804
|
+
# @option params [Boolean] :enable_skew_protection
|
805
|
+
# Specifies whether the skew protection feature is enabled for the
|
806
|
+
# branch.
|
807
|
+
#
|
808
|
+
# Deployment skew protection is available to Amplify applications to
|
809
|
+
# eliminate version skew issues between client and servers in web
|
810
|
+
# applications. When you apply skew protection to a branch, you can
|
811
|
+
# ensure that your clients always interact with the correct version of
|
812
|
+
# server-side assets, regardless of when a deployment occurs. For more
|
813
|
+
# information about skew protection, see [Skew protection for Amplify
|
814
|
+
# deployments][1] in the *Amplify User Guide*.
|
815
|
+
#
|
816
|
+
#
|
817
|
+
#
|
818
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html
|
819
|
+
#
|
804
820
|
# @option params [Hash<String,String>] :environment_variables
|
805
821
|
# The environment variables for the branch.
|
806
822
|
#
|
@@ -865,7 +881,7 @@ module Aws::Amplify
|
|
865
881
|
#
|
866
882
|
#
|
867
883
|
#
|
868
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
884
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
869
885
|
#
|
870
886
|
# @return [Types::CreateBranchResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
871
887
|
#
|
@@ -881,6 +897,7 @@ module Aws::Amplify
|
|
881
897
|
# framework: "Framework",
|
882
898
|
# enable_notification: false,
|
883
899
|
# enable_auto_build: false,
|
900
|
+
# enable_skew_protection: false,
|
884
901
|
# environment_variables: {
|
885
902
|
# "EnvKey" => "EnvValue",
|
886
903
|
# },
|
@@ -917,6 +934,7 @@ module Aws::Amplify
|
|
917
934
|
# resp.branch.environment_variables #=> Hash
|
918
935
|
# resp.branch.environment_variables["EnvKey"] #=> String
|
919
936
|
# resp.branch.enable_auto_build #=> Boolean
|
937
|
+
# resp.branch.enable_skew_protection #=> Boolean
|
920
938
|
# resp.branch.custom_domains #=> Array
|
921
939
|
# resp.branch.custom_domains[0] #=> String
|
922
940
|
# resp.branch.framework #=> String
|
@@ -1276,6 +1294,7 @@ module Aws::Amplify
|
|
1276
1294
|
# resp.branch.environment_variables #=> Hash
|
1277
1295
|
# resp.branch.environment_variables["EnvKey"] #=> String
|
1278
1296
|
# resp.branch.enable_auto_build #=> Boolean
|
1297
|
+
# resp.branch.enable_skew_protection #=> Boolean
|
1279
1298
|
# resp.branch.custom_domains #=> Array
|
1280
1299
|
# resp.branch.custom_domains[0] #=> String
|
1281
1300
|
# resp.branch.framework #=> String
|
@@ -1662,6 +1681,7 @@ module Aws::Amplify
|
|
1662
1681
|
# resp.branch.environment_variables #=> Hash
|
1663
1682
|
# resp.branch.environment_variables["EnvKey"] #=> String
|
1664
1683
|
# resp.branch.enable_auto_build #=> Boolean
|
1684
|
+
# resp.branch.enable_skew_protection #=> Boolean
|
1665
1685
|
# resp.branch.custom_domains #=> Array
|
1666
1686
|
# resp.branch.custom_domains[0] #=> String
|
1667
1687
|
# resp.branch.framework #=> String
|
@@ -2072,6 +2092,7 @@ module Aws::Amplify
|
|
2072
2092
|
# resp.branches[0].environment_variables #=> Hash
|
2073
2093
|
# resp.branches[0].environment_variables["EnvKey"] #=> String
|
2074
2094
|
# resp.branches[0].enable_auto_build #=> Boolean
|
2095
|
+
# resp.branches[0].enable_skew_protection #=> Boolean
|
2075
2096
|
# resp.branches[0].custom_domains #=> Array
|
2076
2097
|
# resp.branches[0].custom_domains[0] #=> String
|
2077
2098
|
# resp.branches[0].framework #=> String
|
@@ -2565,7 +2586,7 @@ module Aws::Amplify
|
|
2565
2586
|
#
|
2566
2587
|
#
|
2567
2588
|
#
|
2568
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
2589
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
2569
2590
|
#
|
2570
2591
|
# @option params [String] :iam_service_role_arn
|
2571
2592
|
# The Amazon Resource Name (ARN) of the IAM service role for the Amplify
|
@@ -2799,6 +2820,22 @@ module Aws::Amplify
|
|
2799
2820
|
# @option params [Boolean] :enable_auto_build
|
2800
2821
|
# Enables auto building for the branch.
|
2801
2822
|
#
|
2823
|
+
# @option params [Boolean] :enable_skew_protection
|
2824
|
+
# Specifies whether the skew protection feature is enabled for the
|
2825
|
+
# branch.
|
2826
|
+
#
|
2827
|
+
# Deployment skew protection is available to Amplify applications to
|
2828
|
+
# eliminate version skew issues between client and servers in web
|
2829
|
+
# applications. When you apply skew protection to a branch, you can
|
2830
|
+
# ensure that your clients always interact with the correct version of
|
2831
|
+
# server-side assets, regardless of when a deployment occurs. For more
|
2832
|
+
# information about skew protection, see [Skew protection for Amplify
|
2833
|
+
# deployments][1] in the *Amplify User Guide*.
|
2834
|
+
#
|
2835
|
+
#
|
2836
|
+
#
|
2837
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html
|
2838
|
+
#
|
2802
2839
|
# @option params [Hash<String,String>] :environment_variables
|
2803
2840
|
# The environment variables for the branch.
|
2804
2841
|
#
|
@@ -2860,7 +2897,7 @@ module Aws::Amplify
|
|
2860
2897
|
#
|
2861
2898
|
#
|
2862
2899
|
#
|
2863
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
2900
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
2864
2901
|
#
|
2865
2902
|
# @return [Types::UpdateBranchResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2866
2903
|
#
|
@@ -2876,6 +2913,7 @@ module Aws::Amplify
|
|
2876
2913
|
# stage: "PRODUCTION", # accepts PRODUCTION, BETA, DEVELOPMENT, EXPERIMENTAL, PULL_REQUEST
|
2877
2914
|
# enable_notification: false,
|
2878
2915
|
# enable_auto_build: false,
|
2916
|
+
# enable_skew_protection: false,
|
2879
2917
|
# environment_variables: {
|
2880
2918
|
# "EnvKey" => "EnvValue",
|
2881
2919
|
# },
|
@@ -2909,6 +2947,7 @@ module Aws::Amplify
|
|
2909
2947
|
# resp.branch.environment_variables #=> Hash
|
2910
2948
|
# resp.branch.environment_variables["EnvKey"] #=> String
|
2911
2949
|
# resp.branch.enable_auto_build #=> Boolean
|
2950
|
+
# resp.branch.enable_skew_protection #=> Boolean
|
2912
2951
|
# resp.branch.custom_domains #=> Array
|
2913
2952
|
# resp.branch.custom_domains[0] #=> String
|
2914
2953
|
# resp.branch.framework #=> String
|
@@ -3077,7 +3116,7 @@ module Aws::Amplify
|
|
3077
3116
|
tracer: tracer
|
3078
3117
|
)
|
3079
3118
|
context[:gem_name] = 'aws-sdk-amplify'
|
3080
|
-
context[:gem_version] = '1.
|
3119
|
+
context[:gem_version] = '1.81.0'
|
3081
3120
|
Seahorse::Client::Request.new(handlers, context)
|
3082
3121
|
end
|
3083
3122
|
|
@@ -110,6 +110,7 @@ module Aws::Amplify
|
|
110
110
|
EnableNotification = Shapes::BooleanShape.new(name: 'EnableNotification')
|
111
111
|
EnablePerformanceMode = Shapes::BooleanShape.new(name: 'EnablePerformanceMode')
|
112
112
|
EnablePullRequestPreview = Shapes::BooleanShape.new(name: 'EnablePullRequestPreview')
|
113
|
+
EnableSkewProtection = Shapes::BooleanShape.new(name: 'EnableSkewProtection')
|
113
114
|
EndTime = Shapes::TimestampShape.new(name: 'EndTime')
|
114
115
|
EnvKey = Shapes::StringShape.new(name: 'EnvKey')
|
115
116
|
EnvValue = Shapes::StringShape.new(name: 'EnvValue')
|
@@ -323,6 +324,7 @@ module Aws::Amplify
|
|
323
324
|
Branch.add_member(:update_time, Shapes::ShapeRef.new(shape: UpdateTime, required: true, location_name: "updateTime"))
|
324
325
|
Branch.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, required: true, location_name: "environmentVariables"))
|
325
326
|
Branch.add_member(:enable_auto_build, Shapes::ShapeRef.new(shape: EnableAutoBuild, required: true, location_name: "enableAutoBuild"))
|
327
|
+
Branch.add_member(:enable_skew_protection, Shapes::ShapeRef.new(shape: EnableSkewProtection, location_name: "enableSkewProtection"))
|
326
328
|
Branch.add_member(:custom_domains, Shapes::ShapeRef.new(shape: CustomDomains, required: true, location_name: "customDomains"))
|
327
329
|
Branch.add_member(:framework, Shapes::ShapeRef.new(shape: Framework, required: true, location_name: "framework"))
|
328
330
|
Branch.add_member(:active_job_id, Shapes::ShapeRef.new(shape: ActiveJobId, required: true, location_name: "activeJobId"))
|
@@ -399,6 +401,7 @@ module Aws::Amplify
|
|
399
401
|
CreateBranchRequest.add_member(:framework, Shapes::ShapeRef.new(shape: Framework, location_name: "framework"))
|
400
402
|
CreateBranchRequest.add_member(:enable_notification, Shapes::ShapeRef.new(shape: EnableNotification, location_name: "enableNotification"))
|
401
403
|
CreateBranchRequest.add_member(:enable_auto_build, Shapes::ShapeRef.new(shape: EnableAutoBuild, location_name: "enableAutoBuild"))
|
404
|
+
CreateBranchRequest.add_member(:enable_skew_protection, Shapes::ShapeRef.new(shape: EnableSkewProtection, location_name: "enableSkewProtection"))
|
402
405
|
CreateBranchRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environmentVariables"))
|
403
406
|
CreateBranchRequest.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
|
404
407
|
CreateBranchRequest.add_member(:enable_basic_auth, Shapes::ShapeRef.new(shape: EnableBasicAuth, location_name: "enableBasicAuth"))
|
@@ -807,6 +810,7 @@ module Aws::Amplify
|
|
807
810
|
UpdateBranchRequest.add_member(:stage, Shapes::ShapeRef.new(shape: Stage, location_name: "stage"))
|
808
811
|
UpdateBranchRequest.add_member(:enable_notification, Shapes::ShapeRef.new(shape: EnableNotification, location_name: "enableNotification"))
|
809
812
|
UpdateBranchRequest.add_member(:enable_auto_build, Shapes::ShapeRef.new(shape: EnableAutoBuild, location_name: "enableAutoBuild"))
|
813
|
+
UpdateBranchRequest.add_member(:enable_skew_protection, Shapes::ShapeRef.new(shape: EnableSkewProtection, location_name: "enableSkewProtection"))
|
810
814
|
UpdateBranchRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environmentVariables"))
|
811
815
|
UpdateBranchRequest.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
|
812
816
|
UpdateBranchRequest.add_member(:enable_basic_auth, Shapes::ShapeRef.new(shape: EnableBasicAuth, location_name: "enableBasicAuth"))
|
@@ -65,7 +65,7 @@ module Aws::Amplify
|
|
65
65
|
#
|
66
66
|
#
|
67
67
|
#
|
68
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
68
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
69
69
|
# @return [String]
|
70
70
|
#
|
71
71
|
# @!attribute [rw] iam_service_role_arn
|
@@ -413,6 +413,23 @@ module Aws::Amplify
|
|
413
413
|
# Enables auto-building on push for a branch of an Amplify app.
|
414
414
|
# @return [Boolean]
|
415
415
|
#
|
416
|
+
# @!attribute [rw] enable_skew_protection
|
417
|
+
# Specifies whether the skew protection feature is enabled for the
|
418
|
+
# branch.
|
419
|
+
#
|
420
|
+
# Deployment skew protection is available to Amplify applications to
|
421
|
+
# eliminate version skew issues between client and servers in web
|
422
|
+
# applications. When you apply skew protection to a branch, you can
|
423
|
+
# ensure that your clients always interact with the correct version of
|
424
|
+
# server-side assets, regardless of when a deployment occurs. For more
|
425
|
+
# information about skew protection, see [Skew protection for Amplify
|
426
|
+
# deployments][1] in the *Amplify User Guide*.
|
427
|
+
#
|
428
|
+
#
|
429
|
+
#
|
430
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html
|
431
|
+
# @return [Boolean]
|
432
|
+
#
|
416
433
|
# @!attribute [rw] custom_domains
|
417
434
|
# The custom domains for a branch of an Amplify app.
|
418
435
|
# @return [Array<String>]
|
@@ -508,7 +525,7 @@ module Aws::Amplify
|
|
508
525
|
#
|
509
526
|
#
|
510
527
|
#
|
511
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
528
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
512
529
|
# @return [String]
|
513
530
|
#
|
514
531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/Branch AWS API Documentation
|
@@ -525,6 +542,7 @@ module Aws::Amplify
|
|
525
542
|
:update_time,
|
526
543
|
:environment_variables,
|
527
544
|
:enable_auto_build,
|
545
|
+
:enable_skew_protection,
|
528
546
|
:custom_domains,
|
529
547
|
:framework,
|
530
548
|
:active_job_id,
|
@@ -705,7 +723,7 @@ module Aws::Amplify
|
|
705
723
|
#
|
706
724
|
#
|
707
725
|
#
|
708
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
726
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
709
727
|
# @return [String]
|
710
728
|
#
|
711
729
|
# @!attribute [rw] iam_service_role_arn
|
@@ -939,6 +957,23 @@ module Aws::Amplify
|
|
939
957
|
# Enables auto building for the branch.
|
940
958
|
# @return [Boolean]
|
941
959
|
#
|
960
|
+
# @!attribute [rw] enable_skew_protection
|
961
|
+
# Specifies whether the skew protection feature is enabled for the
|
962
|
+
# branch.
|
963
|
+
#
|
964
|
+
# Deployment skew protection is available to Amplify applications to
|
965
|
+
# eliminate version skew issues between client and servers in web
|
966
|
+
# applications. When you apply skew protection to a branch, you can
|
967
|
+
# ensure that your clients always interact with the correct version of
|
968
|
+
# server-side assets, regardless of when a deployment occurs. For more
|
969
|
+
# information about skew protection, see [Skew protection for Amplify
|
970
|
+
# deployments][1] in the *Amplify User Guide*.
|
971
|
+
#
|
972
|
+
#
|
973
|
+
#
|
974
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html
|
975
|
+
# @return [Boolean]
|
976
|
+
#
|
942
977
|
# @!attribute [rw] environment_variables
|
943
978
|
# The environment variables for the branch.
|
944
979
|
# @return [Hash<String,String>]
|
@@ -1015,7 +1050,7 @@ module Aws::Amplify
|
|
1015
1050
|
#
|
1016
1051
|
#
|
1017
1052
|
#
|
1018
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
1053
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
1019
1054
|
# @return [String]
|
1020
1055
|
#
|
1021
1056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/CreateBranchRequest AWS API Documentation
|
@@ -1028,6 +1063,7 @@ module Aws::Amplify
|
|
1028
1063
|
:framework,
|
1029
1064
|
:enable_notification,
|
1030
1065
|
:enable_auto_build,
|
1066
|
+
:enable_skew_protection,
|
1031
1067
|
:environment_variables,
|
1032
1068
|
:basic_auth_credentials,
|
1033
1069
|
:enable_basic_auth,
|
@@ -2781,7 +2817,7 @@ module Aws::Amplify
|
|
2781
2817
|
#
|
2782
2818
|
#
|
2783
2819
|
#
|
2784
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
2820
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
2785
2821
|
# @return [String]
|
2786
2822
|
#
|
2787
2823
|
# @!attribute [rw] iam_service_role_arn
|
@@ -2967,6 +3003,23 @@ module Aws::Amplify
|
|
2967
3003
|
# Enables auto building for the branch.
|
2968
3004
|
# @return [Boolean]
|
2969
3005
|
#
|
3006
|
+
# @!attribute [rw] enable_skew_protection
|
3007
|
+
# Specifies whether the skew protection feature is enabled for the
|
3008
|
+
# branch.
|
3009
|
+
#
|
3010
|
+
# Deployment skew protection is available to Amplify applications to
|
3011
|
+
# eliminate version skew issues between client and servers in web
|
3012
|
+
# applications. When you apply skew protection to a branch, you can
|
3013
|
+
# ensure that your clients always interact with the correct version of
|
3014
|
+
# server-side assets, regardless of when a deployment occurs. For more
|
3015
|
+
# information about skew protection, see [Skew protection for Amplify
|
3016
|
+
# deployments][1] in the *Amplify User Guide*.
|
3017
|
+
#
|
3018
|
+
#
|
3019
|
+
#
|
3020
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html
|
3021
|
+
# @return [Boolean]
|
3022
|
+
#
|
2970
3023
|
# @!attribute [rw] environment_variables
|
2971
3024
|
# The environment variables for the branch.
|
2972
3025
|
# @return [Hash<String,String>]
|
@@ -3039,7 +3092,7 @@ module Aws::Amplify
|
|
3039
3092
|
#
|
3040
3093
|
#
|
3041
3094
|
#
|
3042
|
-
# [1]: https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html
|
3095
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html
|
3043
3096
|
# @return [String]
|
3044
3097
|
#
|
3045
3098
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/UpdateBranchRequest AWS API Documentation
|
@@ -3052,6 +3105,7 @@ module Aws::Amplify
|
|
3052
3105
|
:stage,
|
3053
3106
|
:enable_notification,
|
3054
3107
|
:enable_auto_build,
|
3108
|
+
:enable_skew_protection,
|
3055
3109
|
:environment_variables,
|
3056
3110
|
:basic_auth_credentials,
|
3057
3111
|
:enable_basic_auth,
|
data/lib/aws-sdk-amplify.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -153,6 +153,7 @@ module Aws
|
|
153
153
|
?framework: ::String,
|
154
154
|
?enable_notification: bool,
|
155
155
|
?enable_auto_build: bool,
|
156
|
+
?enable_skew_protection: bool,
|
156
157
|
?environment_variables: Hash[::String, ::String],
|
157
158
|
?basic_auth_credentials: ::String,
|
158
159
|
?enable_basic_auth: bool,
|
@@ -605,6 +606,7 @@ module Aws
|
|
605
606
|
?stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST"),
|
606
607
|
?enable_notification: bool,
|
607
608
|
?enable_auto_build: bool,
|
609
|
+
?enable_skew_protection: bool,
|
608
610
|
?environment_variables: Hash[::String, ::String],
|
609
611
|
?basic_auth_credentials: ::String,
|
610
612
|
?enable_basic_auth: bool,
|
data/sig/types.rbs
CHANGED
@@ -92,6 +92,7 @@ module Aws::Amplify
|
|
92
92
|
attr_accessor update_time: ::Time
|
93
93
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
94
94
|
attr_accessor enable_auto_build: bool
|
95
|
+
attr_accessor enable_skew_protection: bool
|
95
96
|
attr_accessor custom_domains: ::Array[::String]
|
96
97
|
attr_accessor framework: ::String
|
97
98
|
attr_accessor active_job_id: ::String
|
@@ -182,6 +183,7 @@ module Aws::Amplify
|
|
182
183
|
attr_accessor framework: ::String
|
183
184
|
attr_accessor enable_notification: bool
|
184
185
|
attr_accessor enable_auto_build: bool
|
186
|
+
attr_accessor enable_skew_protection: bool
|
185
187
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
186
188
|
attr_accessor basic_auth_credentials: ::String
|
187
189
|
attr_accessor enable_basic_auth: bool
|
@@ -713,6 +715,7 @@ module Aws::Amplify
|
|
713
715
|
attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
|
714
716
|
attr_accessor enable_notification: bool
|
715
717
|
attr_accessor enable_auto_build: bool
|
718
|
+
attr_accessor enable_skew_protection: bool
|
716
719
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
717
720
|
attr_accessor basic_auth_credentials: ::String
|
718
721
|
attr_accessor enable_basic_auth: bool
|
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.81.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: 2025-
|
11
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|