aws-sdk-codebuild 1.79.0 → 1.83.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codebuild/client.rb +19 -6
- data/lib/aws-sdk-codebuild/client_api.rb +2 -0
- data/lib/aws-sdk-codebuild/types.rb +67 -37
- data/lib/aws-sdk-codebuild.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b3f2ad67a0e0941df20705de35732efa2a7417685f433c9556f2b161180341c
|
4
|
+
data.tar.gz: 36b066c32ac4151dfc3503c613079dae1c7197df9c1b9d9220109b109d35a3b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e15801f625b8cd1f5bd63342ac68b22f912f57badf951a269fd92a8ba138ea29caf5fb71a6667263dda0314807383f8b47414b71ffa2134e089eae328f413773
|
7
|
+
data.tar.gz: 6e9fe4856a4679f49be350fc110cd7d9f9ae2f477c43648bf0589a840a8600a1d1c9faf6d651f3e5fe104156b03cc121c75dbc7b8592ac31bcdb717313f4063e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.83.0 (2021-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.82.0 (2021-10-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
|
13
|
+
|
14
|
+
1.81.0 (2021-09-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.80.0 (2021-08-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation updates for CodeBuild
|
23
|
+
|
4
24
|
1.79.0 (2021-08-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.83.0
|
@@ -497,6 +497,7 @@ module Aws::CodeBuild
|
|
497
497
|
# resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed #=> Array
|
498
498
|
# resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
499
499
|
# resp.build_batches[0].build_batch_config.timeout_in_mins #=> Integer
|
500
|
+
# resp.build_batches[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
500
501
|
# resp.build_batches[0].build_groups #=> Array
|
501
502
|
# resp.build_batches[0].build_groups[0].identifier #=> String
|
502
503
|
# resp.build_batches[0].build_groups[0].depends_on #=> Array
|
@@ -821,6 +822,7 @@ module Aws::CodeBuild
|
|
821
822
|
# resp.projects[0].build_batch_config.restrictions.compute_types_allowed #=> Array
|
822
823
|
# resp.projects[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
823
824
|
# resp.projects[0].build_batch_config.timeout_in_mins #=> Integer
|
825
|
+
# resp.projects[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
824
826
|
# resp.projects[0].concurrent_build_limit #=> Integer
|
825
827
|
# resp.projects[0].project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
|
826
828
|
# resp.projects[0].public_project_alias #=> String
|
@@ -1223,6 +1225,7 @@ module Aws::CodeBuild
|
|
1223
1225
|
# compute_types_allowed: ["NonEmptyString"],
|
1224
1226
|
# },
|
1225
1227
|
# timeout_in_mins: 1,
|
1228
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
1226
1229
|
# },
|
1227
1230
|
# concurrent_build_limit: 1,
|
1228
1231
|
# })
|
@@ -1344,6 +1347,7 @@ module Aws::CodeBuild
|
|
1344
1347
|
# resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
|
1345
1348
|
# resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
1346
1349
|
# resp.project.build_batch_config.timeout_in_mins #=> Integer
|
1350
|
+
# resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
1347
1351
|
# resp.project.concurrent_build_limit #=> Integer
|
1348
1352
|
# resp.project.project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
|
1349
1353
|
# resp.project.public_project_alias #=> String
|
@@ -2222,14 +2226,17 @@ module Aws::CodeBuild
|
|
2222
2226
|
# The name of the CodeBuild project.
|
2223
2227
|
#
|
2224
2228
|
# @option params [String] :sort_order
|
2225
|
-
# The order to
|
2226
|
-
# not the build identifier.
|
2229
|
+
# The order to sort the results in. The results are sorted by build
|
2230
|
+
# number, not the build identifier. If this is not specified, the
|
2231
|
+
# results are sorted in descending order.
|
2227
2232
|
#
|
2228
2233
|
# Valid values include:
|
2229
2234
|
#
|
2230
|
-
# * `ASCENDING`\: List the build
|
2235
|
+
# * `ASCENDING`\: List the build identifiers in ascending order, by
|
2236
|
+
# build number.
|
2231
2237
|
#
|
2232
|
-
# * `DESCENDING`\: List the build
|
2238
|
+
# * `DESCENDING`\: List the build identifiers in descending order, by
|
2239
|
+
# build number.
|
2233
2240
|
#
|
2234
2241
|
# If the project has more than 100 builds, setting the sort order will
|
2235
2242
|
# result in an error.
|
@@ -3035,6 +3042,7 @@ module Aws::CodeBuild
|
|
3035
3042
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
|
3036
3043
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
3037
3044
|
# resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
|
3045
|
+
# resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
3038
3046
|
# resp.build_batch.build_groups #=> Array
|
3039
3047
|
# resp.build_batch.build_groups[0].identifier #=> String
|
3040
3048
|
# resp.build_batch.build_groups[0].depends_on #=> Array
|
@@ -3893,6 +3901,7 @@ module Aws::CodeBuild
|
|
3893
3901
|
# compute_types_allowed: ["NonEmptyString"],
|
3894
3902
|
# },
|
3895
3903
|
# timeout_in_mins: 1,
|
3904
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
3896
3905
|
# },
|
3897
3906
|
# debug_session_enabled: false,
|
3898
3907
|
# })
|
@@ -4007,6 +4016,7 @@ module Aws::CodeBuild
|
|
4007
4016
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
|
4008
4017
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
4009
4018
|
# resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
|
4019
|
+
# resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
4010
4020
|
# resp.build_batch.build_groups #=> Array
|
4011
4021
|
# resp.build_batch.build_groups[0].identifier #=> String
|
4012
4022
|
# resp.build_batch.build_groups[0].depends_on #=> Array
|
@@ -4314,6 +4324,7 @@ module Aws::CodeBuild
|
|
4314
4324
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
|
4315
4325
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
4316
4326
|
# resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
|
4327
|
+
# resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
4317
4328
|
# resp.build_batch.build_groups #=> Array
|
4318
4329
|
# resp.build_batch.build_groups[0].identifier #=> String
|
4319
4330
|
# resp.build_batch.build_groups[0].depends_on #=> Array
|
@@ -4412,7 +4423,7 @@ module Aws::CodeBuild
|
|
4412
4423
|
# build project.
|
4413
4424
|
#
|
4414
4425
|
# @option params [Array<Types::ProjectArtifacts>] :secondary_artifacts
|
4415
|
-
# An array of `
|
4426
|
+
# An array of `ProjectArtifact` objects.
|
4416
4427
|
#
|
4417
4428
|
# @option params [Types::ProjectCache] :cache
|
4418
4429
|
# Stores recently used information so that it can be quickly accessed at
|
@@ -4640,6 +4651,7 @@ module Aws::CodeBuild
|
|
4640
4651
|
# compute_types_allowed: ["NonEmptyString"],
|
4641
4652
|
# },
|
4642
4653
|
# timeout_in_mins: 1,
|
4654
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
4643
4655
|
# },
|
4644
4656
|
# concurrent_build_limit: 1,
|
4645
4657
|
# })
|
@@ -4761,6 +4773,7 @@ module Aws::CodeBuild
|
|
4761
4773
|
# resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
|
4762
4774
|
# resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
4763
4775
|
# resp.project.build_batch_config.timeout_in_mins #=> Integer
|
4776
|
+
# resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
4764
4777
|
# resp.project.concurrent_build_limit #=> Integer
|
4765
4778
|
# resp.project.project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
|
4766
4779
|
# resp.project.public_project_alias #=> String
|
@@ -5026,7 +5039,7 @@ module Aws::CodeBuild
|
|
5026
5039
|
params: params,
|
5027
5040
|
config: config)
|
5028
5041
|
context[:gem_name] = 'aws-sdk-codebuild'
|
5029
|
-
context[:gem_version] = '1.
|
5042
|
+
context[:gem_version] = '1.83.0'
|
5030
5043
|
Seahorse::Client::Request.new(handlers, context)
|
5031
5044
|
end
|
5032
5045
|
|
@@ -30,6 +30,7 @@ module Aws::CodeBuild
|
|
30
30
|
BatchGetReportGroupsOutput = Shapes::StructureShape.new(name: 'BatchGetReportGroupsOutput')
|
31
31
|
BatchGetReportsInput = Shapes::StructureShape.new(name: 'BatchGetReportsInput')
|
32
32
|
BatchGetReportsOutput = Shapes::StructureShape.new(name: 'BatchGetReportsOutput')
|
33
|
+
BatchReportModeType = Shapes::StringShape.new(name: 'BatchReportModeType')
|
33
34
|
BatchRestrictions = Shapes::StructureShape.new(name: 'BatchRestrictions')
|
34
35
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
35
36
|
BucketOwnerAccess = Shapes::StringShape.new(name: 'BucketOwnerAccess')
|
@@ -849,6 +850,7 @@ module Aws::CodeBuild
|
|
849
850
|
ProjectBuildBatchConfig.add_member(:combine_artifacts, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "combineArtifacts"))
|
850
851
|
ProjectBuildBatchConfig.add_member(:restrictions, Shapes::ShapeRef.new(shape: BatchRestrictions, location_name: "restrictions"))
|
851
852
|
ProjectBuildBatchConfig.add_member(:timeout_in_mins, Shapes::ShapeRef.new(shape: WrapperInt, location_name: "timeoutInMins"))
|
853
|
+
ProjectBuildBatchConfig.add_member(:batch_report_mode, Shapes::ShapeRef.new(shape: BatchReportModeType, location_name: "batchReportMode"))
|
852
854
|
ProjectBuildBatchConfig.struct_class = Types::ProjectBuildBatchConfig
|
853
855
|
|
854
856
|
ProjectCache.add_member(:type, Shapes::ShapeRef.new(shape: CacheType, required: true, location_name: "type"))
|
@@ -938,11 +938,6 @@ module Aws::CodeBuild
|
|
938
938
|
#
|
939
939
|
# : The build phase is still in progress.
|
940
940
|
#
|
941
|
-
# QUEUED
|
942
|
-
#
|
943
|
-
# : The build has been submitted and is queued behind other submitted
|
944
|
-
# builds.
|
945
|
-
#
|
946
941
|
# STOPPED
|
947
942
|
#
|
948
943
|
# : The build phase stopped.
|
@@ -1051,35 +1046,50 @@ module Aws::CodeBuild
|
|
1051
1046
|
# @!attribute [rw] phase_type
|
1052
1047
|
# The name of the build phase. Valid values include:
|
1053
1048
|
#
|
1054
|
-
#
|
1055
|
-
#
|
1049
|
+
# BUILD
|
1050
|
+
#
|
1051
|
+
# : Core build activities typically occur in this build phase.
|
1052
|
+
#
|
1053
|
+
# COMPLETED
|
1054
|
+
#
|
1055
|
+
# : The build has been completed.
|
1056
|
+
#
|
1057
|
+
# DOWNLOAD\_SOURCE
|
1056
1058
|
#
|
1057
|
-
#
|
1059
|
+
# : Source code is being downloaded in this build phase.
|
1058
1060
|
#
|
1059
|
-
#
|
1060
|
-
# phase.
|
1061
|
+
# FINALIZING
|
1061
1062
|
#
|
1062
|
-
#
|
1063
|
-
# phase.
|
1063
|
+
# : The build process is completing in this build phase.
|
1064
1064
|
#
|
1065
|
-
#
|
1066
|
-
# phase.
|
1065
|
+
# INSTALL
|
1067
1066
|
#
|
1068
|
-
#
|
1069
|
-
#
|
1067
|
+
# : Installation activities typically occur in this build phase.
|
1068
|
+
#
|
1069
|
+
# POST\_BUILD
|
1070
|
+
#
|
1071
|
+
# : Post-build activities typically occur in this build phase.
|
1072
|
+
#
|
1073
|
+
# PRE\_BUILD
|
1074
|
+
#
|
1075
|
+
# : Pre-build activities typically occur in this build phase.
|
1076
|
+
#
|
1077
|
+
# PROVISIONING
|
1078
|
+
#
|
1079
|
+
# : The build environment is being set up.
|
1080
|
+
#
|
1081
|
+
# QUEUED
|
1070
1082
|
#
|
1071
|
-
#
|
1072
|
-
#
|
1083
|
+
# : The build has been submitted and is queued behind other submitted
|
1084
|
+
# builds.
|
1073
1085
|
#
|
1074
|
-
#
|
1086
|
+
# SUBMITTED
|
1075
1087
|
#
|
1076
|
-
#
|
1077
|
-
# submitted builds.
|
1088
|
+
# : The build has been submitted.
|
1078
1089
|
#
|
1079
|
-
#
|
1090
|
+
# UPLOAD\_ARTIFACTS
|
1080
1091
|
#
|
1081
|
-
#
|
1082
|
-
# the output location.
|
1092
|
+
# : Build output artifacts are being uploaded to the output location.
|
1083
1093
|
# @return [String]
|
1084
1094
|
#
|
1085
1095
|
# @!attribute [rw] phase_status
|
@@ -1097,11 +1107,6 @@ module Aws::CodeBuild
|
|
1097
1107
|
#
|
1098
1108
|
# : The build phase is still in progress.
|
1099
1109
|
#
|
1100
|
-
# QUEUED
|
1101
|
-
#
|
1102
|
-
# : The build has been submitted and is queued behind other submitted
|
1103
|
-
# builds.
|
1104
|
-
#
|
1105
1110
|
# STOPPED
|
1106
1111
|
#
|
1107
1112
|
# : The build phase stopped.
|
@@ -1586,6 +1591,7 @@ module Aws::CodeBuild
|
|
1586
1591
|
# compute_types_allowed: ["NonEmptyString"],
|
1587
1592
|
# },
|
1588
1593
|
# timeout_in_mins: 1,
|
1594
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
1589
1595
|
# },
|
1590
1596
|
# concurrent_build_limit: 1,
|
1591
1597
|
# }
|
@@ -2872,14 +2878,17 @@ module Aws::CodeBuild
|
|
2872
2878
|
# @return [String]
|
2873
2879
|
#
|
2874
2880
|
# @!attribute [rw] sort_order
|
2875
|
-
# The order to
|
2876
|
-
# number, not the build identifier.
|
2881
|
+
# The order to sort the results in. The results are sorted by build
|
2882
|
+
# number, not the build identifier. If this is not specified, the
|
2883
|
+
# results are sorted in descending order.
|
2877
2884
|
#
|
2878
2885
|
# Valid values include:
|
2879
2886
|
#
|
2880
|
-
# * `ASCENDING`\: List the build
|
2887
|
+
# * `ASCENDING`\: List the build identifiers in ascending order, by
|
2888
|
+
# build number.
|
2881
2889
|
#
|
2882
|
-
# * `DESCENDING`\: List the build
|
2890
|
+
# * `DESCENDING`\: List the build identifiers in descending order, by
|
2891
|
+
# build number.
|
2883
2892
|
#
|
2884
2893
|
# If the project has more than 100 builds, setting the sort order will
|
2885
2894
|
# result in an error.
|
@@ -2906,8 +2915,8 @@ module Aws::CodeBuild
|
|
2906
2915
|
end
|
2907
2916
|
|
2908
2917
|
# @!attribute [rw] ids
|
2909
|
-
# A list of build
|
2910
|
-
# ID representing a single build.
|
2918
|
+
# A list of build identifiers for the specified build project, with
|
2919
|
+
# each build ID representing a single build.
|
2911
2920
|
# @return [Array<String>]
|
2912
2921
|
#
|
2913
2922
|
# @!attribute [rw] next_token
|
@@ -4119,6 +4128,7 @@ module Aws::CodeBuild
|
|
4119
4128
|
# compute_types_allowed: ["NonEmptyString"],
|
4120
4129
|
# },
|
4121
4130
|
# timeout_in_mins: 1,
|
4131
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
4122
4132
|
# }
|
4123
4133
|
#
|
4124
4134
|
# @!attribute [rw] service_role
|
@@ -4140,13 +4150,31 @@ module Aws::CodeBuild
|
|
4140
4150
|
# build must be completed in.
|
4141
4151
|
# @return [Integer]
|
4142
4152
|
#
|
4153
|
+
# @!attribute [rw] batch_report_mode
|
4154
|
+
# Specifies how build status reports are sent to the source provider
|
4155
|
+
# for the batch build. This property is only used when the source
|
4156
|
+
# provider for your project is Bitbucket, GitHub, or GitHub
|
4157
|
+
# Enterprise, and your project is configured to report build statuses
|
4158
|
+
# to the source provider.
|
4159
|
+
#
|
4160
|
+
# REPORT\_AGGREGATED\_BATCH
|
4161
|
+
#
|
4162
|
+
# : (Default) Aggregate all of the build statuses into a single status
|
4163
|
+
# report.
|
4164
|
+
#
|
4165
|
+
# REPORT\_INDIVIDUAL\_BUILDS
|
4166
|
+
#
|
4167
|
+
# : Send a separate status report for each individual build.
|
4168
|
+
# @return [String]
|
4169
|
+
#
|
4143
4170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ProjectBuildBatchConfig AWS API Documentation
|
4144
4171
|
#
|
4145
4172
|
class ProjectBuildBatchConfig < Struct.new(
|
4146
4173
|
:service_role,
|
4147
4174
|
:combine_artifacts,
|
4148
4175
|
:restrictions,
|
4149
|
-
:timeout_in_mins
|
4176
|
+
:timeout_in_mins,
|
4177
|
+
:batch_report_mode)
|
4150
4178
|
SENSITIVE = []
|
4151
4179
|
include Aws::Structure
|
4152
4180
|
end
|
@@ -5596,6 +5624,7 @@ module Aws::CodeBuild
|
|
5596
5624
|
# compute_types_allowed: ["NonEmptyString"],
|
5597
5625
|
# },
|
5598
5626
|
# timeout_in_mins: 1,
|
5627
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
5599
5628
|
# },
|
5600
5629
|
# debug_session_enabled: false,
|
5601
5630
|
# }
|
@@ -6695,6 +6724,7 @@ module Aws::CodeBuild
|
|
6695
6724
|
# compute_types_allowed: ["NonEmptyString"],
|
6696
6725
|
# },
|
6697
6726
|
# timeout_in_mins: 1,
|
6727
|
+
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
6698
6728
|
# },
|
6699
6729
|
# concurrent_build_limit: 1,
|
6700
6730
|
# }
|
@@ -6767,7 +6797,7 @@ module Aws::CodeBuild
|
|
6767
6797
|
# @return [Types::ProjectArtifacts]
|
6768
6798
|
#
|
6769
6799
|
# @!attribute [rw] secondary_artifacts
|
6770
|
-
# An array of `
|
6800
|
+
# An array of `ProjectArtifact` objects.
|
6771
6801
|
# @return [Array<Types::ProjectArtifacts>]
|
6772
6802
|
#
|
6773
6803
|
# @!attribute [rw] cache
|
data/lib/aws-sdk-codebuild.rb
CHANGED
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.83.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-
|
11
|
+
date: 2021-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.121.2
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.121.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|