aws-sdk-codebuild 1.113.0 → 1.114.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78f9264716711452171d6469f510d7c21f145c9a9d931f478155cda081735f2a
4
- data.tar.gz: d2f24879928f2e0b9f2d0401f66145edf586166b927292c8b9827d2be60af68a
3
+ metadata.gz: 75591482384a8f908fdda2c29855eb315d572999e56ddbb56229b9b91eca3b01
4
+ data.tar.gz: 82de6fff579f37e9e931e22509967074c7fa974182e61c3e74084eb4b7238cf1
5
5
  SHA512:
6
- metadata.gz: 802cbc10611957fb28a2494c48f224263304aad60219da6cbaabdb13974b161146561d9a6d1026376480c2397aff85f519824b4364297866192cddc734723df6
7
- data.tar.gz: 313596add193ad123094161a083e5a287328db3e97841cde61a433f33d38ce7a7f7c48c5dab35cbf61e2d1d62a1a0b05fef17e1a03c86a634df101a1d58515a7
6
+ metadata.gz: f9f490cab650e59287ce5beaf0c53be142b40cc96bae2a0e9180a289501fad056335229c4095586dfae90408c1c0920b912f3cda9fc8d7da2592b2dce7e15d51
7
+ data.tar.gz: f0ef20b6d9d30219faab3b08ae2d92125a8e7740f27cc03dae1e5ea36ee58ef90372557f71ae0b1ed2ad8df41eac3c835a13da98d0806d6b5f21aa3bec724256
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2024-05-17)
5
+ ------------------
6
+
7
+ * Feature - Aws CodeBuild now supports 36 hours build timeout
8
+
4
9
  1.113.0 (2024-05-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.114.0
@@ -1372,7 +1372,7 @@ module Aws::CodeBuild
1372
1372
  # Services account.
1373
1373
  #
1374
1374
  # @option params [Integer] :timeout_in_minutes
1375
- # How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait
1375
+ # How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait
1376
1376
  # before it times out any build that has not been marked as completed.
1377
1377
  # The default is 60 minutes.
1378
1378
  #
@@ -3733,7 +3733,7 @@ module Aws::CodeBuild
3733
3733
  # Enable this flag to override privileged mode in the build project.
3734
3734
  #
3735
3735
  # @option params [Integer] :timeout_in_minutes_override
3736
- # The number of build timeout minutes, from 5 to 480 (8 hours), that
3736
+ # The number of build timeout minutes, from 5 to 2160 (36 hours), that
3737
3737
  # overrides, for this build only, the latest setting already defined in
3738
3738
  # the build project.
3739
3739
  #
@@ -5148,7 +5148,7 @@ module Aws::CodeBuild
5148
5148
  # Web Services account.
5149
5149
  #
5150
5150
  # @option params [Integer] :timeout_in_minutes
5151
- # The replacement value in minutes, from 5 to 480 (8 hours), for
5151
+ # The replacement value in minutes, from 5 to 2160 (36 hours), for
5152
5152
  # CodeBuild to wait before timing out any related build that did not get
5153
5153
  # marked as completed.
5154
5154
  #
@@ -5751,7 +5751,7 @@ module Aws::CodeBuild
5751
5751
  params: params,
5752
5752
  config: config)
5753
5753
  context[:gem_name] = 'aws-sdk-codebuild'
5754
- context[:gem_version] = '1.113.0'
5754
+ context[:gem_version] = '1.114.0'
5755
5755
  Seahorse::Client::Request.new(handlers, context)
5756
5756
  end
5757
5757
 
@@ -57,6 +57,7 @@ module Aws::CodeBuild
57
57
  BuildStatusConfig = Shapes::StructureShape.new(name: 'BuildStatusConfig')
58
58
  BuildSummaries = Shapes::ListShape.new(name: 'BuildSummaries')
59
59
  BuildSummary = Shapes::StructureShape.new(name: 'BuildSummary')
60
+ BuildTimeOut = Shapes::IntegerShape.new(name: 'BuildTimeOut')
60
61
  Builds = Shapes::ListShape.new(name: 'Builds')
61
62
  BuildsNotDeleted = Shapes::ListShape.new(name: 'BuildsNotDeleted')
62
63
  CacheMode = Shapes::StringShape.new(name: 'CacheMode')
@@ -538,7 +539,7 @@ module Aws::CodeBuild
538
539
  CreateProjectInput.add_member(:cache, Shapes::ShapeRef.new(shape: ProjectCache, location_name: "cache"))
539
540
  CreateProjectInput.add_member(:environment, Shapes::ShapeRef.new(shape: ProjectEnvironment, required: true, location_name: "environment"))
540
541
  CreateProjectInput.add_member(:service_role, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "serviceRole"))
541
- CreateProjectInput.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeOut, location_name: "timeoutInMinutes"))
542
+ CreateProjectInput.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: BuildTimeOut, location_name: "timeoutInMinutes"))
542
543
  CreateProjectInput.add_member(:queued_timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeOut, location_name: "queuedTimeoutInMinutes"))
543
544
  CreateProjectInput.add_member(:encryption_key, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKey"))
544
545
  CreateProjectInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
@@ -901,7 +902,7 @@ module Aws::CodeBuild
901
902
  Project.add_member(:cache, Shapes::ShapeRef.new(shape: ProjectCache, location_name: "cache"))
902
903
  Project.add_member(:environment, Shapes::ShapeRef.new(shape: ProjectEnvironment, location_name: "environment"))
903
904
  Project.add_member(:service_role, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "serviceRole"))
904
- Project.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeOut, location_name: "timeoutInMinutes"))
905
+ Project.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: BuildTimeOut, location_name: "timeoutInMinutes"))
905
906
  Project.add_member(:queued_timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeOut, location_name: "queuedTimeoutInMinutes"))
906
907
  Project.add_member(:encryption_key, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKey"))
907
908
  Project.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
@@ -1151,7 +1152,7 @@ module Aws::CodeBuild
1151
1152
  StartBuildBatchInput.add_member(:cache_override, Shapes::ShapeRef.new(shape: ProjectCache, location_name: "cacheOverride"))
1152
1153
  StartBuildBatchInput.add_member(:service_role_override, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "serviceRoleOverride"))
1153
1154
  StartBuildBatchInput.add_member(:privileged_mode_override, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "privilegedModeOverride"))
1154
- StartBuildBatchInput.add_member(:build_timeout_in_minutes_override, Shapes::ShapeRef.new(shape: TimeOut, location_name: "buildTimeoutInMinutesOverride"))
1155
+ StartBuildBatchInput.add_member(:build_timeout_in_minutes_override, Shapes::ShapeRef.new(shape: BuildTimeOut, location_name: "buildTimeoutInMinutesOverride"))
1155
1156
  StartBuildBatchInput.add_member(:queued_timeout_in_minutes_override, Shapes::ShapeRef.new(shape: TimeOut, location_name: "queuedTimeoutInMinutesOverride"))
1156
1157
  StartBuildBatchInput.add_member(:encryption_key_override, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKeyOverride"))
1157
1158
  StartBuildBatchInput.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: String, location_name: "idempotencyToken"))
@@ -1188,7 +1189,7 @@ module Aws::CodeBuild
1188
1189
  StartBuildInput.add_member(:cache_override, Shapes::ShapeRef.new(shape: ProjectCache, location_name: "cacheOverride"))
1189
1190
  StartBuildInput.add_member(:service_role_override, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "serviceRoleOverride"))
1190
1191
  StartBuildInput.add_member(:privileged_mode_override, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "privilegedModeOverride"))
1191
- StartBuildInput.add_member(:timeout_in_minutes_override, Shapes::ShapeRef.new(shape: TimeOut, location_name: "timeoutInMinutesOverride"))
1192
+ StartBuildInput.add_member(:timeout_in_minutes_override, Shapes::ShapeRef.new(shape: BuildTimeOut, location_name: "timeoutInMinutesOverride"))
1192
1193
  StartBuildInput.add_member(:queued_timeout_in_minutes_override, Shapes::ShapeRef.new(shape: TimeOut, location_name: "queuedTimeoutInMinutesOverride"))
1193
1194
  StartBuildInput.add_member(:encryption_key_override, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKeyOverride"))
1194
1195
  StartBuildInput.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: String, location_name: "idempotencyToken"))
@@ -1274,7 +1275,7 @@ module Aws::CodeBuild
1274
1275
  UpdateProjectInput.add_member(:cache, Shapes::ShapeRef.new(shape: ProjectCache, location_name: "cache"))
1275
1276
  UpdateProjectInput.add_member(:environment, Shapes::ShapeRef.new(shape: ProjectEnvironment, location_name: "environment"))
1276
1277
  UpdateProjectInput.add_member(:service_role, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "serviceRole"))
1277
- UpdateProjectInput.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeOut, location_name: "timeoutInMinutes"))
1278
+ UpdateProjectInput.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: BuildTimeOut, location_name: "timeoutInMinutes"))
1278
1279
  UpdateProjectInput.add_member(:queued_timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeOut, location_name: "queuedTimeoutInMinutes"))
1279
1280
  UpdateProjectInput.add_member(:encryption_key, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKey"))
1280
1281
  UpdateProjectInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
@@ -388,8 +388,9 @@ module Aws::CodeBuild
388
388
  # @return [Types::LogsLocation]
389
389
  #
390
390
  # @!attribute [rw] timeout_in_minutes
391
- # How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait
392
- # before timing out this build if it does not get marked as completed.
391
+ # How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to
392
+ # wait before timing out this build if it does not get marked as
393
+ # completed.
393
394
  # @return [Integer]
394
395
  #
395
396
  # @!attribute [rw] queued_timeout_in_minutes
@@ -1649,9 +1650,9 @@ module Aws::CodeBuild
1649
1650
  # @return [String]
1650
1651
  #
1651
1652
  # @!attribute [rw] timeout_in_minutes
1652
- # How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait
1653
- # before it times out any build that has not been marked as completed.
1654
- # The default is 60 minutes.
1653
+ # How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to
1654
+ # wait before it times out any build that has not been marked as
1655
+ # completed. The default is 60 minutes.
1655
1656
  # @return [Integer]
1656
1657
  #
1657
1658
  # @!attribute [rw] queued_timeout_in_minutes
@@ -3749,8 +3750,8 @@ module Aws::CodeBuild
3749
3750
  # @return [String]
3750
3751
  #
3751
3752
  # @!attribute [rw] timeout_in_minutes
3752
- # How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait
3753
- # before timing out any related build that did not get marked as
3753
+ # How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to
3754
+ # wait before timing out any related build that did not get marked as
3754
3755
  # completed. The default is 60 minutes.
3755
3756
  # @return [Integer]
3756
3757
  #
@@ -5984,7 +5985,7 @@ module Aws::CodeBuild
5984
5985
  # @return [Boolean]
5985
5986
  #
5986
5987
  # @!attribute [rw] timeout_in_minutes_override
5987
- # The number of build timeout minutes, from 5 to 480 (8 hours), that
5988
+ # The number of build timeout minutes, from 5 to 2160 (36 hours), that
5988
5989
  # overrides, for this build only, the latest setting already defined
5989
5990
  # in the build project.
5990
5991
  # @return [Integer]
@@ -6575,7 +6576,7 @@ module Aws::CodeBuild
6575
6576
  # @return [String]
6576
6577
  #
6577
6578
  # @!attribute [rw] timeout_in_minutes
6578
- # The replacement value in minutes, from 5 to 480 (8 hours), for
6579
+ # The replacement value in minutes, from 5 to 2160 (36 hours), for
6579
6580
  # CodeBuild to wait before timing out any related build that did not
6580
6581
  # get marked as completed.
6581
6582
  # @return [Integer]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codebuild/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeBuild
54
54
 
55
- GEM_VERSION = '1.113.0'
55
+ GEM_VERSION = '1.114.0'
56
56
 
57
57
  end
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.113.0
4
+ version: 1.114.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-05-15 00:00:00.000000000 Z
11
+ date: 2024-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core