aws-sdk-codebuild 1.68.0 → 1.69.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/lib/aws-sdk-codebuild.rb +1 -1
- data/lib/aws-sdk-codebuild/client.rb +13 -7
- data/lib/aws-sdk-codebuild/client_api.rb +1 -0
- data/lib/aws-sdk-codebuild/types.rb +38 -33
- 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: be02c3d078734bcfd35a6b37e135f8cf7089e4f9c112a6f739d1f983802a313e
|
|
4
|
+
data.tar.gz: 7e19255ad2225914cc84522d1bfd3d6199361f1dc4c92172729652cb59b2574b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f4223e121d01e0c900bed14d93fb0e1ea78d94360103428018878924cb68966146eda875312db570f9765c86096f5cd895d0432fa7b45c95edb8495480e0fc8
|
|
7
|
+
data.tar.gz: 908cc6ec5c1ea17044d61b1b5b69d6bfa3abb85554045775853004624451a8b17cc3ec141d724692ebeb91f0d6b6936c7e12fbbc4f0ceccf2533130f4e16f444
|
data/lib/aws-sdk-codebuild.rb
CHANGED
|
@@ -1102,6 +1102,7 @@ module Aws::CodeBuild
|
|
|
1102
1102
|
# resp.report_groups[0].type #=> String, one of "TEST", "CODE_COVERAGE"
|
|
1103
1103
|
# resp.report_groups[0].export_config.export_config_type #=> String, one of "S3", "NO_EXPORT"
|
|
1104
1104
|
# resp.report_groups[0].export_config.s3_destination.bucket #=> String
|
|
1105
|
+
# resp.report_groups[0].export_config.s3_destination.bucket_owner #=> String
|
|
1105
1106
|
# resp.report_groups[0].export_config.s3_destination.path #=> String
|
|
1106
1107
|
# resp.report_groups[0].export_config.s3_destination.packaging #=> String, one of "ZIP", "NONE"
|
|
1107
1108
|
# resp.report_groups[0].export_config.s3_destination.encryption_key #=> String
|
|
@@ -1153,6 +1154,7 @@ module Aws::CodeBuild
|
|
|
1153
1154
|
# resp.reports[0].expired #=> Time
|
|
1154
1155
|
# resp.reports[0].export_config.export_config_type #=> String, one of "S3", "NO_EXPORT"
|
|
1155
1156
|
# resp.reports[0].export_config.s3_destination.bucket #=> String
|
|
1157
|
+
# resp.reports[0].export_config.s3_destination.bucket_owner #=> String
|
|
1156
1158
|
# resp.reports[0].export_config.s3_destination.path #=> String
|
|
1157
1159
|
# resp.reports[0].export_config.s3_destination.packaging #=> String, one of "ZIP", "NONE"
|
|
1158
1160
|
# resp.reports[0].export_config.s3_destination.encryption_key #=> String
|
|
@@ -1213,8 +1215,8 @@ module Aws::CodeBuild
|
|
|
1213
1215
|
# a branch name is specified, the branch's HEAD commit ID is used. If
|
|
1214
1216
|
# not specified, the default branch's HEAD commit ID is used.
|
|
1215
1217
|
#
|
|
1216
|
-
# * For Amazon
|
|
1217
|
-
#
|
|
1218
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
1219
|
+
# build input ZIP file to use.
|
|
1218
1220
|
#
|
|
1219
1221
|
# If `sourceVersion` is specified at the build level, then that version
|
|
1220
1222
|
# takes precedence over this `sourceVersion` (at the project level).
|
|
@@ -1620,6 +1622,7 @@ module Aws::CodeBuild
|
|
|
1620
1622
|
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
|
1621
1623
|
# s3_destination: {
|
|
1622
1624
|
# bucket: "NonEmptyString",
|
|
1625
|
+
# bucket_owner: "String",
|
|
1623
1626
|
# path: "String",
|
|
1624
1627
|
# packaging: "ZIP", # accepts ZIP, NONE
|
|
1625
1628
|
# encryption_key: "NonEmptyString",
|
|
@@ -1641,6 +1644,7 @@ module Aws::CodeBuild
|
|
|
1641
1644
|
# resp.report_group.type #=> String, one of "TEST", "CODE_COVERAGE"
|
|
1642
1645
|
# resp.report_group.export_config.export_config_type #=> String, one of "S3", "NO_EXPORT"
|
|
1643
1646
|
# resp.report_group.export_config.s3_destination.bucket #=> String
|
|
1647
|
+
# resp.report_group.export_config.s3_destination.bucket_owner #=> String
|
|
1644
1648
|
# resp.report_group.export_config.s3_destination.path #=> String
|
|
1645
1649
|
# resp.report_group.export_config.s3_destination.packaging #=> String, one of "ZIP", "NONE"
|
|
1646
1650
|
# resp.report_group.export_config.s3_destination.encryption_key #=> String
|
|
@@ -3332,7 +3336,7 @@ module Aws::CodeBuild
|
|
|
3332
3336
|
# specified, the branch's HEAD commit ID is used. If not specified,
|
|
3333
3337
|
# the default branch's HEAD commit ID is used.
|
|
3334
3338
|
#
|
|
3335
|
-
# Amazon
|
|
3339
|
+
# Amazon S3
|
|
3336
3340
|
#
|
|
3337
3341
|
# : The version ID of the object that represents the build input ZIP
|
|
3338
3342
|
# file to use.
|
|
@@ -3807,7 +3811,7 @@ module Aws::CodeBuild
|
|
|
3807
3811
|
# specified, the branch's HEAD commit ID is used. If not specified,
|
|
3808
3812
|
# the default branch's HEAD commit ID is used.
|
|
3809
3813
|
#
|
|
3810
|
-
# Amazon
|
|
3814
|
+
# Amazon S3
|
|
3811
3815
|
#
|
|
3812
3816
|
# : The version ID of the object that represents the build input ZIP
|
|
3813
3817
|
# file to use.
|
|
@@ -4583,8 +4587,8 @@ module Aws::CodeBuild
|
|
|
4583
4587
|
# a branch name is specified, the branch's HEAD commit ID is used. If
|
|
4584
4588
|
# not specified, the default branch's HEAD commit ID is used.
|
|
4585
4589
|
#
|
|
4586
|
-
# * For Amazon
|
|
4587
|
-
#
|
|
4590
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
4591
|
+
# build input ZIP file to use.
|
|
4588
4592
|
#
|
|
4589
4593
|
# If `sourceVersion` is specified at the build level, then that version
|
|
4590
4594
|
# takes precedence over this `sourceVersion` (at the project level).
|
|
@@ -4991,6 +4995,7 @@ module Aws::CodeBuild
|
|
|
4991
4995
|
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
|
4992
4996
|
# s3_destination: {
|
|
4993
4997
|
# bucket: "NonEmptyString",
|
|
4998
|
+
# bucket_owner: "String",
|
|
4994
4999
|
# path: "String",
|
|
4995
5000
|
# packaging: "ZIP", # accepts ZIP, NONE
|
|
4996
5001
|
# encryption_key: "NonEmptyString",
|
|
@@ -5012,6 +5017,7 @@ module Aws::CodeBuild
|
|
|
5012
5017
|
# resp.report_group.type #=> String, one of "TEST", "CODE_COVERAGE"
|
|
5013
5018
|
# resp.report_group.export_config.export_config_type #=> String, one of "S3", "NO_EXPORT"
|
|
5014
5019
|
# resp.report_group.export_config.s3_destination.bucket #=> String
|
|
5020
|
+
# resp.report_group.export_config.s3_destination.bucket_owner #=> String
|
|
5015
5021
|
# resp.report_group.export_config.s3_destination.path #=> String
|
|
5016
5022
|
# resp.report_group.export_config.s3_destination.packaging #=> String, one of "ZIP", "NONE"
|
|
5017
5023
|
# resp.report_group.export_config.s3_destination.encryption_key #=> String
|
|
@@ -5123,7 +5129,7 @@ module Aws::CodeBuild
|
|
|
5123
5129
|
params: params,
|
|
5124
5130
|
config: config)
|
|
5125
5131
|
context[:gem_name] = 'aws-sdk-codebuild'
|
|
5126
|
-
context[:gem_version] = '1.
|
|
5132
|
+
context[:gem_version] = '1.69.0'
|
|
5127
5133
|
Seahorse::Client::Request.new(handlers, context)
|
|
5128
5134
|
end
|
|
5129
5135
|
|
|
@@ -987,6 +987,7 @@ module Aws::CodeBuild
|
|
|
987
987
|
S3LogsConfig.struct_class = Types::S3LogsConfig
|
|
988
988
|
|
|
989
989
|
S3ReportExportConfig.add_member(:bucket, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "bucket"))
|
|
990
|
+
S3ReportExportConfig.add_member(:bucket_owner, Shapes::ShapeRef.new(shape: String, location_name: "bucketOwner"))
|
|
990
991
|
S3ReportExportConfig.add_member(:path, Shapes::ShapeRef.new(shape: String, location_name: "path"))
|
|
991
992
|
S3ReportExportConfig.add_member(:packaging, Shapes::ShapeRef.new(shape: ReportPackagingType, location_name: "packaging"))
|
|
992
993
|
S3ReportExportConfig.add_member(:encryption_key, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKey"))
|
|
@@ -340,8 +340,7 @@ module Aws::CodeBuild
|
|
|
340
340
|
# * For AWS CodePipeline, the source revision provided by AWS
|
|
341
341
|
# CodePipeline.
|
|
342
342
|
#
|
|
343
|
-
# * For Amazon
|
|
344
|
-
# apply.
|
|
343
|
+
# * For Amazon S3, this does not apply.
|
|
345
344
|
# @return [String]
|
|
346
345
|
#
|
|
347
346
|
# @!attribute [rw] project_name
|
|
@@ -380,8 +379,8 @@ module Aws::CodeBuild
|
|
|
380
379
|
# used. If not specified, the default branch's HEAD commit ID is
|
|
381
380
|
# used.
|
|
382
381
|
#
|
|
383
|
-
# * For Amazon
|
|
384
|
-
#
|
|
382
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
383
|
+
# build input ZIP file to use.
|
|
385
384
|
# @return [Array<Types::ProjectSourceVersion>]
|
|
386
385
|
#
|
|
387
386
|
# @!attribute [rw] artifacts
|
|
@@ -624,8 +623,7 @@ module Aws::CodeBuild
|
|
|
624
623
|
# * For AWS CodePipeline, the source revision provided by AWS
|
|
625
624
|
# CodePipeline.
|
|
626
625
|
#
|
|
627
|
-
# * For Amazon
|
|
628
|
-
# apply.
|
|
626
|
+
# * For Amazon S3, this does not apply.
|
|
629
627
|
# @return [String]
|
|
630
628
|
#
|
|
631
629
|
# @!attribute [rw] project_name
|
|
@@ -665,8 +663,8 @@ module Aws::CodeBuild
|
|
|
665
663
|
# used. If not specified, the default branch's HEAD commit ID is
|
|
666
664
|
# used.
|
|
667
665
|
#
|
|
668
|
-
# * For Amazon
|
|
669
|
-
#
|
|
666
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
667
|
+
# build input ZIP file to use.
|
|
670
668
|
# @return [Array<Types::ProjectSourceVersion>]
|
|
671
669
|
#
|
|
672
670
|
# @!attribute [rw] artifacts
|
|
@@ -906,7 +904,7 @@ module Aws::CodeBuild
|
|
|
906
904
|
#
|
|
907
905
|
# @!attribute [rw] contexts
|
|
908
906
|
# Additional information about the batch build phase. Especially to
|
|
909
|
-
# help troubleshoot a failed
|
|
907
|
+
# help troubleshoot a failed batch build.
|
|
910
908
|
# @return [Array<Types::PhaseContext>]
|
|
911
909
|
#
|
|
912
910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BuildBatchPhase AWS API Documentation
|
|
@@ -1559,8 +1557,8 @@ module Aws::CodeBuild
|
|
|
1559
1557
|
# used. If not specified, the default branch's HEAD commit ID is
|
|
1560
1558
|
# used.
|
|
1561
1559
|
#
|
|
1562
|
-
# * For Amazon
|
|
1563
|
-
#
|
|
1560
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
1561
|
+
# build input ZIP file to use.
|
|
1564
1562
|
#
|
|
1565
1563
|
# If `sourceVersion` is specified at the build level, then that
|
|
1566
1564
|
# version takes precedence over this `sourceVersion` (at the project
|
|
@@ -1724,6 +1722,7 @@ module Aws::CodeBuild
|
|
|
1724
1722
|
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
|
1725
1723
|
# s3_destination: {
|
|
1726
1724
|
# bucket: "NonEmptyString",
|
|
1725
|
+
# bucket_owner: "String",
|
|
1727
1726
|
# path: "String",
|
|
1728
1727
|
# packaging: "ZIP", # accepts ZIP, NONE
|
|
1729
1728
|
# encryption_key: "NonEmptyString",
|
|
@@ -3606,8 +3605,8 @@ module Aws::CodeBuild
|
|
|
3606
3605
|
# used. If not specified, the default branch's HEAD commit ID is
|
|
3607
3606
|
# used.
|
|
3608
3607
|
#
|
|
3609
|
-
# * For Amazon
|
|
3610
|
-
#
|
|
3608
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
3609
|
+
# build input ZIP file to use.
|
|
3611
3610
|
#
|
|
3612
3611
|
# If `sourceVersion` is specified at the build level, then that
|
|
3613
3612
|
# version takes precedence over this `sourceVersion` (at the project
|
|
@@ -3792,8 +3791,7 @@ module Aws::CodeBuild
|
|
|
3792
3791
|
# * `NO_ARTIFACTS`\: The build project does not produce any build
|
|
3793
3792
|
# output.
|
|
3794
3793
|
#
|
|
3795
|
-
# * `S3`\: The build project stores build output in Amazon
|
|
3796
|
-
# Storage Service (Amazon S3).
|
|
3794
|
+
# * `S3`\: The build project stores build output in Amazon S3.
|
|
3797
3795
|
# @return [String]
|
|
3798
3796
|
#
|
|
3799
3797
|
# @!attribute [rw] location
|
|
@@ -3913,9 +3911,8 @@ module Aws::CodeBuild
|
|
|
3913
3911
|
#
|
|
3914
3912
|
# @!attribute [rw] encryption_disabled
|
|
3915
3913
|
# Set to true if you do not want your output artifacts encrypted. This
|
|
3916
|
-
# option is valid only if your artifacts type is Amazon
|
|
3917
|
-
#
|
|
3918
|
-
# invalidInputException is thrown.
|
|
3914
|
+
# option is valid only if your artifacts type is Amazon S3. If this is
|
|
3915
|
+
# set with another artifacts type, an invalidInputException is thrown.
|
|
3919
3916
|
# @return [Boolean]
|
|
3920
3917
|
#
|
|
3921
3918
|
# @!attribute [rw] artifact_identifier
|
|
@@ -4226,10 +4223,9 @@ module Aws::CodeBuild
|
|
|
4226
4223
|
# @return [Boolean]
|
|
4227
4224
|
#
|
|
4228
4225
|
# @!attribute [rw] certificate
|
|
4229
|
-
# The ARN of the Amazon
|
|
4230
|
-
#
|
|
4231
|
-
# certificate
|
|
4232
|
-
# [certificate][1] in the *AWS CodeBuild User Guide*.
|
|
4226
|
+
# The ARN of the Amazon S3 bucket, path prefix, and object key that
|
|
4227
|
+
# contains the PEM-encoded certificate for the build project. For more
|
|
4228
|
+
# information, see [certificate][1] in the *AWS CodeBuild User Guide*.
|
|
4233
4229
|
#
|
|
4234
4230
|
#
|
|
4235
4231
|
#
|
|
@@ -4391,8 +4387,7 @@ module Aws::CodeBuild
|
|
|
4391
4387
|
#
|
|
4392
4388
|
# * `NO_SOURCE`\: The project does not have input source code.
|
|
4393
4389
|
#
|
|
4394
|
-
# * `S3`\: The source code is in an Amazon
|
|
4395
|
-
# (Amazon S3) input bucket.
|
|
4390
|
+
# * `S3`\: The source code is in an Amazon S3 input bucket.
|
|
4396
4391
|
# @return [String]
|
|
4397
4392
|
#
|
|
4398
4393
|
# @!attribute [rw] location
|
|
@@ -4410,8 +4405,8 @@ module Aws::CodeBuild
|
|
|
4410
4405
|
# buildspec file (for example,
|
|
4411
4406
|
# `https://git-codecommit.<region-ID>.amazonaws.com/v1/repos/<repo-name>`).
|
|
4412
4407
|
#
|
|
4413
|
-
# * For source code in an Amazon
|
|
4414
|
-
#
|
|
4408
|
+
# * For source code in an Amazon S3 input bucket, one of the
|
|
4409
|
+
# following.
|
|
4415
4410
|
#
|
|
4416
4411
|
# * The path to the ZIP file that contains the source code (for
|
|
4417
4412
|
# example, `<bucket-name>/<path>/<object-name>.zip`).
|
|
@@ -4571,8 +4566,8 @@ module Aws::CodeBuild
|
|
|
4571
4566
|
# used. If not specified, the default branch's HEAD commit ID is
|
|
4572
4567
|
# used.
|
|
4573
4568
|
#
|
|
4574
|
-
# * For Amazon
|
|
4575
|
-
#
|
|
4569
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
4570
|
+
# build input ZIP file to use.
|
|
4576
4571
|
#
|
|
4577
4572
|
# For more information, see [Source Version Sample with CodeBuild][1]
|
|
4578
4573
|
# in the *AWS CodeBuild User Guide*.
|
|
@@ -4781,6 +4776,7 @@ module Aws::CodeBuild
|
|
|
4781
4776
|
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
|
4782
4777
|
# s3_destination: {
|
|
4783
4778
|
# bucket: "NonEmptyString",
|
|
4779
|
+
# bucket_owner: "String",
|
|
4784
4780
|
# path: "String",
|
|
4785
4781
|
# packaging: "ZIP", # accepts ZIP, NONE
|
|
4786
4782
|
# encryption_key: "NonEmptyString",
|
|
@@ -4956,7 +4952,7 @@ module Aws::CodeBuild
|
|
|
4956
4952
|
|
|
4957
4953
|
# Represents a resolved build artifact. A resolve artifact is an
|
|
4958
4954
|
# artifact that is built and deployed to the destination, such as Amazon
|
|
4959
|
-
#
|
|
4955
|
+
# S3.
|
|
4960
4956
|
#
|
|
4961
4957
|
# @!attribute [rw] type
|
|
4962
4958
|
# Specifies the type of artifact.
|
|
@@ -5131,6 +5127,7 @@ module Aws::CodeBuild
|
|
|
5131
5127
|
#
|
|
5132
5128
|
# {
|
|
5133
5129
|
# bucket: "NonEmptyString",
|
|
5130
|
+
# bucket_owner: "String",
|
|
5134
5131
|
# path: "String",
|
|
5135
5132
|
# packaging: "ZIP", # accepts ZIP, NONE
|
|
5136
5133
|
# encryption_key: "NonEmptyString",
|
|
@@ -5142,6 +5139,12 @@ module Aws::CodeBuild
|
|
|
5142
5139
|
# exported.
|
|
5143
5140
|
# @return [String]
|
|
5144
5141
|
#
|
|
5142
|
+
# @!attribute [rw] bucket_owner
|
|
5143
|
+
# The AWS account identifier of the owner of the Amazon S3 bucket.
|
|
5144
|
+
# This allows report data to be exported to an Amazon S3 bucket that
|
|
5145
|
+
# is owned by an account other than the account running the build.
|
|
5146
|
+
# @return [String]
|
|
5147
|
+
#
|
|
5145
5148
|
# @!attribute [rw] path
|
|
5146
5149
|
# The path to the exported report's raw data results.
|
|
5147
5150
|
# @return [String]
|
|
@@ -5169,6 +5172,7 @@ module Aws::CodeBuild
|
|
|
5169
5172
|
#
|
|
5170
5173
|
class S3ReportExportConfig < Struct.new(
|
|
5171
5174
|
:bucket,
|
|
5175
|
+
:bucket_owner,
|
|
5172
5176
|
:path,
|
|
5173
5177
|
:packaging,
|
|
5174
5178
|
:encryption_key,
|
|
@@ -5400,7 +5404,7 @@ module Aws::CodeBuild
|
|
|
5400
5404
|
# specified, the branch's HEAD commit ID is used. If not specified,
|
|
5401
5405
|
# the default branch's HEAD commit ID is used.
|
|
5402
5406
|
#
|
|
5403
|
-
# Amazon
|
|
5407
|
+
# Amazon S3
|
|
5404
5408
|
#
|
|
5405
5409
|
# : The version ID of the object that represents the build input ZIP
|
|
5406
5410
|
# file to use.
|
|
@@ -5806,7 +5810,7 @@ module Aws::CodeBuild
|
|
|
5806
5810
|
# specified, the branch's HEAD commit ID is used. If not specified,
|
|
5807
5811
|
# the default branch's HEAD commit ID is used.
|
|
5808
5812
|
#
|
|
5809
|
-
# Amazon
|
|
5813
|
+
# Amazon S3
|
|
5810
5814
|
#
|
|
5811
5815
|
# : The version ID of the object that represents the build input ZIP
|
|
5812
5816
|
# file to use.
|
|
@@ -6485,8 +6489,8 @@ module Aws::CodeBuild
|
|
|
6485
6489
|
# used. If not specified, the default branch's HEAD commit ID is
|
|
6486
6490
|
# used.
|
|
6487
6491
|
#
|
|
6488
|
-
# * For Amazon
|
|
6489
|
-
#
|
|
6492
|
+
# * For Amazon S3: the version ID of the object that represents the
|
|
6493
|
+
# build input ZIP file to use.
|
|
6490
6494
|
#
|
|
6491
6495
|
# If `sourceVersion` is specified at the build level, then that
|
|
6492
6496
|
# version takes precedence over this `sourceVersion` (at the project
|
|
@@ -6650,6 +6654,7 @@ module Aws::CodeBuild
|
|
|
6650
6654
|
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
|
6651
6655
|
# s3_destination: {
|
|
6652
6656
|
# bucket: "NonEmptyString",
|
|
6657
|
+
# bucket_owner: "String",
|
|
6653
6658
|
# path: "String",
|
|
6654
6659
|
# packaging: "ZIP", # accepts ZIP, NONE
|
|
6655
6660
|
# encryption_key: "NonEmptyString",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-codebuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.69.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-02-
|
|
11
|
+
date: 2021-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|