aws-sdk-amplify 1.25.0 → 1.26.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: d92b94a7673f63b61eb1248eed703dd2151252a91fc9d82831df12895d8dcb6e
4
- data.tar.gz: dc261101ff472c7587234c944aee7a0e5d46422e77b5376cb7c92be738a8361a
3
+ metadata.gz: 65c82f4d8dae8eb1262da4b431cc3b635e584e44a5aa3273e73be1ae8ea7caee
4
+ data.tar.gz: 3d850e16947365573fcba57a92194ec01c6e29ef2e43d8e6e261761ac3dea158
5
5
  SHA512:
6
- metadata.gz: fc72c6ca5d16274cc6cbf386902421ad52bc10b40a786e5274a756234e20d429e8f68870b199246c4434179f90197a7f3df69e0e50f440ddbc275364ccb43e85
7
- data.tar.gz: 593d52752cc12e0b49d7180d845ec6c4d38308e82e933fb2c3b9e59243a28c813275c2827be1142e5166ce3fb65f521dbb8f0f20628e1fd4b839a457b7d52db7
6
+ metadata.gz: 13b509309fce40f3288a4306888e63adbee2ac9af1c073a1b05d71cffd7bceb0d324a485e8f56ab01745d0f30b0e3791144c7a964af1998d0713d7a01e370110
7
+ data.tar.gz: 2c99d6d703975c96d0c744422ce2e9e410216f21b50a6a39210a6677c6b6e5b7f5dfd59765397a1fb81905833f58eb267be3fd6b9a4cd00884973760c30ca1c3
@@ -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.25.0'
51
+ GEM_VERSION = '1.26.0'
52
52
 
53
53
  end
@@ -434,6 +434,7 @@ module Aws::Amplify
434
434
  # },
435
435
  # basic_auth_credentials: "BasicAuthCredentials",
436
436
  # enable_basic_auth: false,
437
+ # enable_performance_mode: false,
437
438
  # build_spec: "BuildSpec",
438
439
  # enable_pull_request_preview: false,
439
440
  # pull_request_environment_name: "PullRequestEnvironmentName",
@@ -480,6 +481,7 @@ module Aws::Amplify
480
481
  # resp.app.auto_branch_creation_config.environment_variables["EnvKey"] #=> String
481
482
  # resp.app.auto_branch_creation_config.basic_auth_credentials #=> String
482
483
  # resp.app.auto_branch_creation_config.enable_basic_auth #=> Boolean
484
+ # resp.app.auto_branch_creation_config.enable_performance_mode #=> Boolean
483
485
  # resp.app.auto_branch_creation_config.build_spec #=> String
484
486
  # resp.app.auto_branch_creation_config.enable_pull_request_preview #=> Boolean
485
487
  # resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
@@ -570,6 +572,12 @@ module Aws::Amplify
570
572
  # @option params [Boolean] :enable_basic_auth
571
573
  # Enables basic authorization for the branch.
572
574
  #
575
+ # @option params [Boolean] :enable_performance_mode
576
+ # Performance mode optimizes for faster hosting performance by keeping
577
+ # content cached at the edge for a longer interval. Enabling performance
578
+ # mode will mean that hosting configuration or code changes can take up
579
+ # to 10 minutes to roll out.
580
+ #
573
581
  # @option params [Hash<String,String>] :tags
574
582
  # The tag for the branch.
575
583
  #
@@ -612,6 +620,7 @@ module Aws::Amplify
612
620
  # },
613
621
  # basic_auth_credentials: "BasicAuthCredentials",
614
622
  # enable_basic_auth: false,
623
+ # enable_performance_mode: false,
615
624
  # tags: {
616
625
  # "TagKey" => "TagValue",
617
626
  # },
@@ -644,6 +653,7 @@ module Aws::Amplify
644
653
  # resp.branch.active_job_id #=> String
645
654
  # resp.branch.total_number_of_jobs #=> String
646
655
  # resp.branch.enable_basic_auth #=> Boolean
656
+ # resp.branch.enable_performance_mode #=> Boolean
647
657
  # resp.branch.thumbnail_url #=> String
648
658
  # resp.branch.basic_auth_credentials #=> String
649
659
  # resp.branch.build_spec #=> String
@@ -877,6 +887,7 @@ module Aws::Amplify
877
887
  # resp.app.auto_branch_creation_config.environment_variables["EnvKey"] #=> String
878
888
  # resp.app.auto_branch_creation_config.basic_auth_credentials #=> String
879
889
  # resp.app.auto_branch_creation_config.enable_basic_auth #=> Boolean
890
+ # resp.app.auto_branch_creation_config.enable_performance_mode #=> Boolean
880
891
  # resp.app.auto_branch_creation_config.build_spec #=> String
881
892
  # resp.app.auto_branch_creation_config.enable_pull_request_preview #=> Boolean
882
893
  # resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
@@ -967,6 +978,7 @@ module Aws::Amplify
967
978
  # resp.branch.active_job_id #=> String
968
979
  # resp.branch.total_number_of_jobs #=> String
969
980
  # resp.branch.enable_basic_auth #=> Boolean
981
+ # resp.branch.enable_performance_mode #=> Boolean
970
982
  # resp.branch.thumbnail_url #=> String
971
983
  # resp.branch.basic_auth_credentials #=> String
972
984
  # resp.branch.build_spec #=> String
@@ -1209,6 +1221,7 @@ module Aws::Amplify
1209
1221
  # resp.app.auto_branch_creation_config.environment_variables["EnvKey"] #=> String
1210
1222
  # resp.app.auto_branch_creation_config.basic_auth_credentials #=> String
1211
1223
  # resp.app.auto_branch_creation_config.enable_basic_auth #=> Boolean
1224
+ # resp.app.auto_branch_creation_config.enable_performance_mode #=> Boolean
1212
1225
  # resp.app.auto_branch_creation_config.build_spec #=> String
1213
1226
  # resp.app.auto_branch_creation_config.enable_pull_request_preview #=> Boolean
1214
1227
  # resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
@@ -1329,6 +1342,7 @@ module Aws::Amplify
1329
1342
  # resp.branch.active_job_id #=> String
1330
1343
  # resp.branch.total_number_of_jobs #=> String
1331
1344
  # resp.branch.enable_basic_auth #=> Boolean
1345
+ # resp.branch.enable_performance_mode #=> Boolean
1332
1346
  # resp.branch.thumbnail_url #=> String
1333
1347
  # resp.branch.basic_auth_credentials #=> String
1334
1348
  # resp.branch.build_spec #=> String
@@ -1549,6 +1563,7 @@ module Aws::Amplify
1549
1563
  # resp.apps[0].auto_branch_creation_config.environment_variables["EnvKey"] #=> String
1550
1564
  # resp.apps[0].auto_branch_creation_config.basic_auth_credentials #=> String
1551
1565
  # resp.apps[0].auto_branch_creation_config.enable_basic_auth #=> Boolean
1566
+ # resp.apps[0].auto_branch_creation_config.enable_performance_mode #=> Boolean
1552
1567
  # resp.apps[0].auto_branch_creation_config.build_spec #=> String
1553
1568
  # resp.apps[0].auto_branch_creation_config.enable_pull_request_preview #=> Boolean
1554
1569
  # resp.apps[0].auto_branch_creation_config.pull_request_environment_name #=> String
@@ -1711,6 +1726,7 @@ module Aws::Amplify
1711
1726
  # resp.branches[0].active_job_id #=> String
1712
1727
  # resp.branches[0].total_number_of_jobs #=> String
1713
1728
  # resp.branches[0].enable_basic_auth #=> Boolean
1729
+ # resp.branches[0].enable_performance_mode #=> Boolean
1714
1730
  # resp.branches[0].thumbnail_url #=> String
1715
1731
  # resp.branches[0].basic_auth_credentials #=> String
1716
1732
  # resp.branches[0].build_spec #=> String
@@ -2237,6 +2253,7 @@ module Aws::Amplify
2237
2253
  # },
2238
2254
  # basic_auth_credentials: "BasicAuthCredentials",
2239
2255
  # enable_basic_auth: false,
2256
+ # enable_performance_mode: false,
2240
2257
  # build_spec: "BuildSpec",
2241
2258
  # enable_pull_request_preview: false,
2242
2259
  # pull_request_environment_name: "PullRequestEnvironmentName",
@@ -2286,6 +2303,7 @@ module Aws::Amplify
2286
2303
  # resp.app.auto_branch_creation_config.environment_variables["EnvKey"] #=> String
2287
2304
  # resp.app.auto_branch_creation_config.basic_auth_credentials #=> String
2288
2305
  # resp.app.auto_branch_creation_config.enable_basic_auth #=> Boolean
2306
+ # resp.app.auto_branch_creation_config.enable_performance_mode #=> Boolean
2289
2307
  # resp.app.auto_branch_creation_config.build_spec #=> String
2290
2308
  # resp.app.auto_branch_creation_config.enable_pull_request_preview #=> Boolean
2291
2309
  # resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
@@ -2331,6 +2349,12 @@ module Aws::Amplify
2331
2349
  # @option params [Boolean] :enable_basic_auth
2332
2350
  # Enables basic authorization for the branch.
2333
2351
  #
2352
+ # @option params [Boolean] :enable_performance_mode
2353
+ # Performance mode optimizes for faster hosting performance by keeping
2354
+ # content cached at the edge for a longer interval. Enabling performance
2355
+ # mode will mean that hosting configuration or code changes can take up
2356
+ # to 10 minutes to roll out.
2357
+ #
2334
2358
  # @option params [String] :build_spec
2335
2359
  # The build specification (build spec) for the branch.
2336
2360
  #
@@ -2370,6 +2394,7 @@ module Aws::Amplify
2370
2394
  # },
2371
2395
  # basic_auth_credentials: "BasicAuthCredentials",
2372
2396
  # enable_basic_auth: false,
2397
+ # enable_performance_mode: false,
2373
2398
  # build_spec: "BuildSpec",
2374
2399
  # ttl: "TTL",
2375
2400
  # display_name: "DisplayName",
@@ -2399,6 +2424,7 @@ module Aws::Amplify
2399
2424
  # resp.branch.active_job_id #=> String
2400
2425
  # resp.branch.total_number_of_jobs #=> String
2401
2426
  # resp.branch.enable_basic_auth #=> Boolean
2427
+ # resp.branch.enable_performance_mode #=> Boolean
2402
2428
  # resp.branch.thumbnail_url #=> String
2403
2429
  # resp.branch.basic_auth_credentials #=> String
2404
2430
  # resp.branch.build_spec #=> String
@@ -2542,7 +2568,7 @@ module Aws::Amplify
2542
2568
  params: params,
2543
2569
  config: config)
2544
2570
  context[:gem_name] = 'aws-sdk-amplify'
2545
- context[:gem_version] = '1.25.0'
2571
+ context[:gem_version] = '1.26.0'
2546
2572
  Seahorse::Client::Request.new(handlers, context)
2547
2573
  end
2548
2574
 
@@ -98,6 +98,7 @@ module Aws::Amplify
98
98
  EnableBranchAutoBuild = Shapes::BooleanShape.new(name: 'EnableBranchAutoBuild')
99
99
  EnableBranchAutoDeletion = Shapes::BooleanShape.new(name: 'EnableBranchAutoDeletion')
100
100
  EnableNotification = Shapes::BooleanShape.new(name: 'EnableNotification')
101
+ EnablePerformanceMode = Shapes::BooleanShape.new(name: 'EnablePerformanceMode')
101
102
  EnablePullRequestPreview = Shapes::BooleanShape.new(name: 'EnablePullRequestPreview')
102
103
  EndTime = Shapes::TimestampShape.new(name: 'EndTime')
103
104
  EnvKey = Shapes::StringShape.new(name: 'EnvKey')
@@ -260,6 +261,7 @@ module Aws::Amplify
260
261
  AutoBranchCreationConfig.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environmentVariables"))
261
262
  AutoBranchCreationConfig.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
262
263
  AutoBranchCreationConfig.add_member(:enable_basic_auth, Shapes::ShapeRef.new(shape: EnableBasicAuth, location_name: "enableBasicAuth"))
264
+ AutoBranchCreationConfig.add_member(:enable_performance_mode, Shapes::ShapeRef.new(shape: EnablePerformanceMode, location_name: "enablePerformanceMode"))
263
265
  AutoBranchCreationConfig.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
264
266
  AutoBranchCreationConfig.add_member(:enable_pull_request_preview, Shapes::ShapeRef.new(shape: EnablePullRequestPreview, location_name: "enablePullRequestPreview"))
265
267
  AutoBranchCreationConfig.add_member(:pull_request_environment_name, Shapes::ShapeRef.new(shape: PullRequestEnvironmentName, location_name: "pullRequestEnvironmentName"))
@@ -298,6 +300,7 @@ module Aws::Amplify
298
300
  Branch.add_member(:active_job_id, Shapes::ShapeRef.new(shape: ActiveJobId, required: true, location_name: "activeJobId"))
299
301
  Branch.add_member(:total_number_of_jobs, Shapes::ShapeRef.new(shape: TotalNumberOfJobs, required: true, location_name: "totalNumberOfJobs"))
300
302
  Branch.add_member(:enable_basic_auth, Shapes::ShapeRef.new(shape: EnableBasicAuth, required: true, location_name: "enableBasicAuth"))
303
+ Branch.add_member(:enable_performance_mode, Shapes::ShapeRef.new(shape: EnablePerformanceMode, location_name: "enablePerformanceMode"))
301
304
  Branch.add_member(:thumbnail_url, Shapes::ShapeRef.new(shape: ThumbnailUrl, location_name: "thumbnailUrl"))
302
305
  Branch.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
303
306
  Branch.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
@@ -354,6 +357,7 @@ module Aws::Amplify
354
357
  CreateBranchRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environmentVariables"))
355
358
  CreateBranchRequest.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
356
359
  CreateBranchRequest.add_member(:enable_basic_auth, Shapes::ShapeRef.new(shape: EnableBasicAuth, location_name: "enableBasicAuth"))
360
+ CreateBranchRequest.add_member(:enable_performance_mode, Shapes::ShapeRef.new(shape: EnablePerformanceMode, location_name: "enablePerformanceMode"))
357
361
  CreateBranchRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
358
362
  CreateBranchRequest.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
359
363
  CreateBranchRequest.add_member(:ttl, Shapes::ShapeRef.new(shape: TTL, location_name: "ttl"))
@@ -750,6 +754,7 @@ module Aws::Amplify
750
754
  UpdateBranchRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environmentVariables"))
751
755
  UpdateBranchRequest.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
752
756
  UpdateBranchRequest.add_member(:enable_basic_auth, Shapes::ShapeRef.new(shape: EnableBasicAuth, location_name: "enableBasicAuth"))
757
+ UpdateBranchRequest.add_member(:enable_performance_mode, Shapes::ShapeRef.new(shape: EnablePerformanceMode, location_name: "enablePerformanceMode"))
753
758
  UpdateBranchRequest.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
754
759
  UpdateBranchRequest.add_member(:ttl, Shapes::ShapeRef.new(shape: TTL, location_name: "ttl"))
755
760
  UpdateBranchRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
@@ -170,6 +170,7 @@ module Aws::Amplify
170
170
  # },
171
171
  # basic_auth_credentials: "BasicAuthCredentials",
172
172
  # enable_basic_auth: false,
173
+ # enable_performance_mode: false,
173
174
  # build_spec: "BuildSpec",
174
175
  # enable_pull_request_preview: false,
175
176
  # pull_request_environment_name: "PullRequestEnvironmentName",
@@ -199,6 +200,13 @@ module Aws::Amplify
199
200
  # Enables basic authorization for the autocreated branch.
200
201
  # @return [Boolean]
201
202
  #
203
+ # @!attribute [rw] enable_performance_mode
204
+ # Performance mode optimizes for faster hosting performance by keeping
205
+ # content cached at the edge for a longer interval. Enabling
206
+ # performance mode will mean that hosting configuration or code
207
+ # changes can take up to 10 minutes to roll out.
208
+ # @return [Boolean]
209
+ #
202
210
  # @!attribute [rw] build_spec
203
211
  # The build specification (build spec) for the autocreated branch.
204
212
  # @return [String]
@@ -220,6 +228,7 @@ module Aws::Amplify
220
228
  :environment_variables,
221
229
  :basic_auth_credentials,
222
230
  :enable_basic_auth,
231
+ :enable_performance_mode,
223
232
  :build_spec,
224
233
  :enable_pull_request_preview,
225
234
  :pull_request_environment_name)
@@ -353,6 +362,13 @@ module Aws::Amplify
353
362
  # Enables basic authorization for a branch of an Amplify app.
354
363
  # @return [Boolean]
355
364
  #
365
+ # @!attribute [rw] enable_performance_mode
366
+ # Performance mode optimizes for faster hosting performance by keeping
367
+ # content cached at the edge for a longer interval. Enabling
368
+ # performance mode will mean that hosting configuration or code
369
+ # changes can take up to 10 minutes to roll out.
370
+ # @return [Boolean]
371
+ #
356
372
  # @!attribute [rw] thumbnail_url
357
373
  # The thumbnail URL for the branch of an Amplify app.
358
374
  # @return [String]
@@ -414,6 +430,7 @@ module Aws::Amplify
414
430
  :active_job_id,
415
431
  :total_number_of_jobs,
416
432
  :enable_basic_auth,
433
+ :enable_performance_mode,
417
434
  :thumbnail_url,
418
435
  :basic_auth_credentials,
419
436
  :build_spec,
@@ -471,6 +488,7 @@ module Aws::Amplify
471
488
  # },
472
489
  # basic_auth_credentials: "BasicAuthCredentials",
473
490
  # enable_basic_auth: false,
491
+ # enable_performance_mode: false,
474
492
  # build_spec: "BuildSpec",
475
493
  # enable_pull_request_preview: false,
476
494
  # pull_request_environment_name: "PullRequestEnvironmentName",
@@ -665,6 +683,7 @@ module Aws::Amplify
665
683
  # },
666
684
  # basic_auth_credentials: "BasicAuthCredentials",
667
685
  # enable_basic_auth: false,
686
+ # enable_performance_mode: false,
668
687
  # tags: {
669
688
  # "TagKey" => "TagValue",
670
689
  # },
@@ -716,6 +735,13 @@ module Aws::Amplify
716
735
  # Enables basic authorization for the branch.
717
736
  # @return [Boolean]
718
737
  #
738
+ # @!attribute [rw] enable_performance_mode
739
+ # Performance mode optimizes for faster hosting performance by keeping
740
+ # content cached at the edge for a longer interval. Enabling
741
+ # performance mode will mean that hosting configuration or code
742
+ # changes can take up to 10 minutes to roll out.
743
+ # @return [Boolean]
744
+ #
719
745
  # @!attribute [rw] tags
720
746
  # The tag for the branch.
721
747
  # @return [Hash<String,String>]
@@ -759,6 +785,7 @@ module Aws::Amplify
759
785
  :environment_variables,
760
786
  :basic_auth_credentials,
761
787
  :enable_basic_auth,
788
+ :enable_performance_mode,
762
789
  :tags,
763
790
  :build_spec,
764
791
  :ttl,
@@ -2704,6 +2731,7 @@ module Aws::Amplify
2704
2731
  # },
2705
2732
  # basic_auth_credentials: "BasicAuthCredentials",
2706
2733
  # enable_basic_auth: false,
2734
+ # enable_performance_mode: false,
2707
2735
  # build_spec: "BuildSpec",
2708
2736
  # enable_pull_request_preview: false,
2709
2737
  # pull_request_environment_name: "PullRequestEnvironmentName",
@@ -2849,6 +2877,7 @@ module Aws::Amplify
2849
2877
  # },
2850
2878
  # basic_auth_credentials: "BasicAuthCredentials",
2851
2879
  # enable_basic_auth: false,
2880
+ # enable_performance_mode: false,
2852
2881
  # build_spec: "BuildSpec",
2853
2882
  # ttl: "TTL",
2854
2883
  # display_name: "DisplayName",
@@ -2897,6 +2926,13 @@ module Aws::Amplify
2897
2926
  # Enables basic authorization for the branch.
2898
2927
  # @return [Boolean]
2899
2928
  #
2929
+ # @!attribute [rw] enable_performance_mode
2930
+ # Performance mode optimizes for faster hosting performance by keeping
2931
+ # content cached at the edge for a longer interval. Enabling
2932
+ # performance mode will mean that hosting configuration or code
2933
+ # changes can take up to 10 minutes to roll out.
2934
+ # @return [Boolean]
2935
+ #
2900
2936
  # @!attribute [rw] build_spec
2901
2937
  # The build specification (build spec) for the branch.
2902
2938
  # @return [String]
@@ -2936,6 +2972,7 @@ module Aws::Amplify
2936
2972
  :environment_variables,
2937
2973
  :basic_auth_credentials,
2938
2974
  :enable_basic_auth,
2975
+ :enable_performance_mode,
2939
2976
  :build_spec,
2940
2977
  :ttl,
2941
2978
  :display_name,
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.25.0
4
+ version: 1.26.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: 2020-09-30 00:00:00.000000000 Z
11
+ date: 2020-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core