aws-sdk-codebuild 1.103.0 → 1.105.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: a09b4c8431edbd6b7308498d0503b4ae4f499444858b86a49fb2f6a6edd27a3d
4
- data.tar.gz: b047ddbcf60a1c20b45c24d1bdef8ad4927c666c9c74a388ffbf74ecc2d9c5b4
3
+ metadata.gz: e8fd13a33b29c83a730ee0076f328cb22f14318c334a1ec1e6660ab5c2399ce2
4
+ data.tar.gz: 1f11e087b701bec0459420b3971ebdd0cb90d0b5019759dd7910165da9f4a173
5
5
  SHA512:
6
- metadata.gz: a9c980da2e65064dc9e869b9300e6d94ddcbeb6835d1c4bf0e2dbbaf0d4840f46866d7392016afc58deeda45e56fdfa2b32da4a06c9930e9deddd8299a244798
7
- data.tar.gz: 1e6cb80e1be496ae5d56544d4c249d070cecac8678878ab2c4906a90f5cdcdf9f6ed8f39ebc6b06d04e8aae5a23249c2d702ebb642fb6eaadc349ddd2b52b51a
6
+ metadata.gz: 04f06047976451348fb7869fdff9f7897f0d7273a1fbf21a3260bea04538995500bc44cf06631779e90d1c815780ce264a10db05afc7070426f34ca59ddc5369
7
+ data.tar.gz: e1c03f1f1594388df4cb34f45d277442d388d14d866cafc3ab6a435264bce68c7c8019c80fa619521ab640a3bdeacb3e381ff44c12386fe9daee079d54c782de
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.105.0 (2024-03-15)
5
+ ------------------
6
+
7
+ * Feature - AWS CodeBuild now supports overflow behavior on Reserved Capacity.
8
+
9
+ 1.104.0 (2024-03-08)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for a new webhook event: PULL_REQUEST_CLOSED.
13
+
4
14
  1.103.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.105.0
@@ -785,6 +785,7 @@ module Aws::CodeBuild
785
785
  # resp.fleets[0].scaling_configuration.target_tracking_scaling_configs[0].target_value #=> Float
786
786
  # resp.fleets[0].scaling_configuration.max_capacity #=> Integer
787
787
  # resp.fleets[0].scaling_configuration.desired_capacity #=> Integer
788
+ # resp.fleets[0].overflow_behavior #=> String, one of "QUEUE", "ON_DEMAND"
788
789
  # resp.fleets[0].tags #=> Array
789
790
  # resp.fleets[0].tags[0].key #=> String
790
791
  # resp.fleets[0].tags[0].value #=> String
@@ -1158,6 +1159,15 @@ module Aws::CodeBuild
1158
1159
  # @option params [Types::ScalingConfigurationInput] :scaling_configuration
1159
1160
  # The scaling configuration of the compute fleet.
1160
1161
  #
1162
+ # @option params [String] :overflow_behavior
1163
+ # The compute fleet overflow behavior.
1164
+ #
1165
+ # * For overflow behavior `QUEUE`, your overflow builds need to wait on
1166
+ # the existing fleet instance to become available.
1167
+ #
1168
+ # * For overflow behavior `ON_DEMAND`, your overflow builds run on
1169
+ # CodeBuild on-demand.
1170
+ #
1161
1171
  # @option params [Array<Types::Tag>] :tags
1162
1172
  # A list of tag key and value pairs associated with this compute fleet.
1163
1173
  #
@@ -1185,6 +1195,7 @@ module Aws::CodeBuild
1185
1195
  # ],
1186
1196
  # max_capacity: 1,
1187
1197
  # },
1198
+ # overflow_behavior: "QUEUE", # accepts QUEUE, ON_DEMAND
1188
1199
  # tags: [
1189
1200
  # {
1190
1201
  # key: "KeyInput",
@@ -1212,6 +1223,7 @@ module Aws::CodeBuild
1212
1223
  # resp.fleet.scaling_configuration.target_tracking_scaling_configs[0].target_value #=> Float
1213
1224
  # resp.fleet.scaling_configuration.max_capacity #=> Integer
1214
1225
  # resp.fleet.scaling_configuration.desired_capacity #=> Integer
1226
+ # resp.fleet.overflow_behavior #=> String, one of "QUEUE", "ON_DEMAND"
1215
1227
  # resp.fleet.tags #=> Array
1216
1228
  # resp.fleet.tags[0].key #=> String
1217
1229
  # resp.fleet.tags[0].value #=> String
@@ -3462,7 +3474,14 @@ module Aws::CodeBuild
3462
3474
  req.send_request(options)
3463
3475
  end
3464
3476
 
3465
- # Starts running a build.
3477
+ # Starts running a build with the settings defined in the project. These
3478
+ # setting include: how to run a build, where to get the source code,
3479
+ # which build environment to use, which build commands to run, and where
3480
+ # to store the build output.
3481
+ #
3482
+ # You can also start a build run by overriding some of the build
3483
+ # settings in the project. The overrides only apply for that specific
3484
+ # start build request. The settings in the project are unaltered.
3466
3485
  #
3467
3486
  # @option params [required, String] :project_name
3468
3487
  # The name of the CodeBuild build project to start running a build.
@@ -3549,8 +3568,9 @@ module Aws::CodeBuild
3549
3568
  # an CodeBuild build project.
3550
3569
  #
3551
3570
  # @option params [String] :buildspec_override
3552
- # A buildspec file declaration that overrides, for this build only, the
3553
- # latest one already defined in the build project.
3571
+ # A buildspec file declaration that overrides the latest one defined in
3572
+ # the build project, for this build only. The buildspec defined on the
3573
+ # project is not changed.
3554
3574
  #
3555
3575
  # If this value is set, it can be either an inline buildspec definition,
3556
3576
  # the path to an alternate buildspec file relative to the value of the
@@ -3562,6 +3582,15 @@ module Aws::CodeBuild
3562
3582
  # must contain a buildspec file in its root directory. For more
3563
3583
  # information, see [Buildspec File Name and Storage Location][1].
3564
3584
  #
3585
+ # <note markdown="1"> Since this property allows you to change the build commands that will
3586
+ # run in the container, you should note that an IAM principal with the
3587
+ # ability to call this API and set this parameter can override the
3588
+ # default settings. Moreover, we encourage that you use a trustworthy
3589
+ # buildspec location like a file in your source repository or a Amazon
3590
+ # S3 bucket.
3591
+ #
3592
+ # </note>
3593
+ #
3565
3594
  #
3566
3595
  #
3567
3596
  # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-name-storage
@@ -4854,6 +4883,15 @@ module Aws::CodeBuild
4854
4883
  # @option params [Types::ScalingConfigurationInput] :scaling_configuration
4855
4884
  # The scaling configuration of the compute fleet.
4856
4885
  #
4886
+ # @option params [String] :overflow_behavior
4887
+ # The compute fleet overflow behavior.
4888
+ #
4889
+ # * For overflow behavior `QUEUE`, your overflow builds need to wait on
4890
+ # the existing fleet instance to become available.
4891
+ #
4892
+ # * For overflow behavior `ON_DEMAND`, your overflow builds run on
4893
+ # CodeBuild on-demand.
4894
+ #
4857
4895
  # @option params [Array<Types::Tag>] :tags
4858
4896
  # A list of tag key and value pairs associated with this compute fleet.
4859
4897
  #
@@ -4881,6 +4919,7 @@ module Aws::CodeBuild
4881
4919
  # ],
4882
4920
  # max_capacity: 1,
4883
4921
  # },
4922
+ # overflow_behavior: "QUEUE", # accepts QUEUE, ON_DEMAND
4884
4923
  # tags: [
4885
4924
  # {
4886
4925
  # key: "KeyInput",
@@ -4908,6 +4947,7 @@ module Aws::CodeBuild
4908
4947
  # resp.fleet.scaling_configuration.target_tracking_scaling_configs[0].target_value #=> Float
4909
4948
  # resp.fleet.scaling_configuration.max_capacity #=> Integer
4910
4949
  # resp.fleet.scaling_configuration.desired_capacity #=> Integer
4950
+ # resp.fleet.overflow_behavior #=> String, one of "QUEUE", "ON_DEMAND"
4911
4951
  # resp.fleet.tags #=> Array
4912
4952
  # resp.fleet.tags[0].key #=> String
4913
4953
  # resp.fleet.tags[0].value #=> String
@@ -5601,7 +5641,7 @@ module Aws::CodeBuild
5601
5641
  params: params,
5602
5642
  config: config)
5603
5643
  context[:gem_name] = 'aws-sdk-codebuild'
5604
- context[:gem_version] = '1.103.0'
5644
+ context[:gem_version] = '1.105.0'
5605
5645
  Seahorse::Client::Request.new(handlers, context)
5606
5646
  end
5607
5647
 
@@ -118,6 +118,7 @@ module Aws::CodeBuild
118
118
  FleetContextCode = Shapes::StringShape.new(name: 'FleetContextCode')
119
119
  FleetName = Shapes::StringShape.new(name: 'FleetName')
120
120
  FleetNames = Shapes::ListShape.new(name: 'FleetNames')
121
+ FleetOverflowBehavior = Shapes::StringShape.new(name: 'FleetOverflowBehavior')
121
122
  FleetScalingMetricType = Shapes::StringShape.new(name: 'FleetScalingMetricType')
122
123
  FleetScalingType = Shapes::StringShape.new(name: 'FleetScalingType')
123
124
  FleetSortByType = Shapes::StringShape.new(name: 'FleetSortByType')
@@ -517,6 +518,7 @@ module Aws::CodeBuild
517
518
  CreateFleetInput.add_member(:environment_type, Shapes::ShapeRef.new(shape: EnvironmentType, required: true, location_name: "environmentType"))
518
519
  CreateFleetInput.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, required: true, location_name: "computeType"))
519
520
  CreateFleetInput.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfigurationInput, location_name: "scalingConfiguration"))
521
+ CreateFleetInput.add_member(:overflow_behavior, Shapes::ShapeRef.new(shape: FleetOverflowBehavior, location_name: "overflowBehavior"))
520
522
  CreateFleetInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
521
523
  CreateFleetInput.struct_class = Types::CreateFleetInput
522
524
 
@@ -685,6 +687,7 @@ module Aws::CodeBuild
685
687
  Fleet.add_member(:environment_type, Shapes::ShapeRef.new(shape: EnvironmentType, location_name: "environmentType"))
686
688
  Fleet.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, location_name: "computeType"))
687
689
  Fleet.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfigurationOutput, location_name: "scalingConfiguration"))
690
+ Fleet.add_member(:overflow_behavior, Shapes::ShapeRef.new(shape: FleetOverflowBehavior, location_name: "overflowBehavior"))
688
691
  Fleet.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
689
692
  Fleet.struct_class = Types::Fleet
690
693
 
@@ -1246,6 +1249,7 @@ module Aws::CodeBuild
1246
1249
  UpdateFleetInput.add_member(:environment_type, Shapes::ShapeRef.new(shape: EnvironmentType, location_name: "environmentType"))
1247
1250
  UpdateFleetInput.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, location_name: "computeType"))
1248
1251
  UpdateFleetInput.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfigurationInput, location_name: "scalingConfiguration"))
1252
+ UpdateFleetInput.add_member(:overflow_behavior, Shapes::ShapeRef.new(shape: FleetOverflowBehavior, location_name: "overflowBehavior"))
1249
1253
  UpdateFleetInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
1250
1254
  UpdateFleetInput.struct_class = Types::UpdateFleetInput
1251
1255
 
@@ -1498,6 +1498,16 @@ module Aws::CodeBuild
1498
1498
  # The scaling configuration of the compute fleet.
1499
1499
  # @return [Types::ScalingConfigurationInput]
1500
1500
  #
1501
+ # @!attribute [rw] overflow_behavior
1502
+ # The compute fleet overflow behavior.
1503
+ #
1504
+ # * For overflow behavior `QUEUE`, your overflow builds need to wait
1505
+ # on the existing fleet instance to become available.
1506
+ #
1507
+ # * For overflow behavior `ON_DEMAND`, your overflow builds run on
1508
+ # CodeBuild on-demand.
1509
+ # @return [String]
1510
+ #
1501
1511
  # @!attribute [rw] tags
1502
1512
  # A list of tag key and value pairs associated with this compute
1503
1513
  # fleet.
@@ -1514,6 +1524,7 @@ module Aws::CodeBuild
1514
1524
  :environment_type,
1515
1525
  :compute_type,
1516
1526
  :scaling_configuration,
1527
+ :overflow_behavior,
1517
1528
  :tags)
1518
1529
  SENSITIVE = []
1519
1530
  include Aws::Structure
@@ -2428,6 +2439,16 @@ module Aws::CodeBuild
2428
2439
  # The scaling configuration of the compute fleet.
2429
2440
  # @return [Types::ScalingConfigurationOutput]
2430
2441
  #
2442
+ # @!attribute [rw] overflow_behavior
2443
+ # The compute fleet overflow behavior.
2444
+ #
2445
+ # * For overflow behavior `QUEUE`, your overflow builds need to wait
2446
+ # on the existing fleet instance to become available.
2447
+ #
2448
+ # * For overflow behavior `ON_DEMAND`, your overflow builds run on
2449
+ # CodeBuild on-demand.
2450
+ # @return [String]
2451
+ #
2431
2452
  # @!attribute [rw] tags
2432
2453
  # A list of tag key and value pairs associated with this compute
2433
2454
  # fleet.
@@ -2449,6 +2470,7 @@ module Aws::CodeBuild
2449
2470
  :environment_type,
2450
2471
  :compute_type,
2451
2472
  :scaling_configuration,
2473
+ :overflow_behavior,
2452
2474
  :tags)
2453
2475
  SENSITIVE = []
2454
2476
  include Aws::Structure
@@ -5774,8 +5796,9 @@ module Aws::CodeBuild
5774
5796
  # @return [Types::GitSubmodulesConfig]
5775
5797
  #
5776
5798
  # @!attribute [rw] buildspec_override
5777
- # A buildspec file declaration that overrides, for this build only,
5778
- # the latest one already defined in the build project.
5799
+ # A buildspec file declaration that overrides the latest one defined
5800
+ # in the build project, for this build only. The buildspec defined on
5801
+ # the project is not changed.
5779
5802
  #
5780
5803
  # If this value is set, it can be either an inline buildspec
5781
5804
  # definition, the path to an alternate buildspec file relative to the
@@ -5788,6 +5811,15 @@ module Aws::CodeBuild
5788
5811
  # contain a buildspec file in its root directory. For more
5789
5812
  # information, see [Buildspec File Name and Storage Location][1].
5790
5813
  #
5814
+ # <note markdown="1"> Since this property allows you to change the build commands that
5815
+ # will run in the container, you should note that an IAM principal
5816
+ # with the ability to call this API and set this parameter can
5817
+ # override the default settings. Moreover, we encourage that you use a
5818
+ # trustworthy buildspec location like a file in your source repository
5819
+ # or a Amazon S3 bucket.
5820
+ #
5821
+ # </note>
5822
+ #
5791
5823
  #
5792
5824
  #
5793
5825
  # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-name-storage
@@ -6299,6 +6331,16 @@ module Aws::CodeBuild
6299
6331
  # The scaling configuration of the compute fleet.
6300
6332
  # @return [Types::ScalingConfigurationInput]
6301
6333
  #
6334
+ # @!attribute [rw] overflow_behavior
6335
+ # The compute fleet overflow behavior.
6336
+ #
6337
+ # * For overflow behavior `QUEUE`, your overflow builds need to wait
6338
+ # on the existing fleet instance to become available.
6339
+ #
6340
+ # * For overflow behavior `ON_DEMAND`, your overflow builds run on
6341
+ # CodeBuild on-demand.
6342
+ # @return [String]
6343
+ #
6302
6344
  # @!attribute [rw] tags
6303
6345
  # A list of tag key and value pairs associated with this compute
6304
6346
  # fleet.
@@ -6315,6 +6357,7 @@ module Aws::CodeBuild
6315
6357
  :environment_type,
6316
6358
  :compute_type,
6317
6359
  :scaling_configuration,
6360
+ :overflow_behavior,
6318
6361
  :tags)
6319
6362
  SENSITIVE = []
6320
6363
  include Aws::Structure
@@ -6785,67 +6828,70 @@ module Aws::CodeBuild
6785
6828
  # `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, `FILE_PATH`,
6786
6829
  # and `COMMIT_MESSAGE`.
6787
6830
  #
6788
- # EVENT
6831
+ # * EVENT
6789
6832
  #
6790
- # : A webhook event triggers a build when the provided `pattern`
6791
- # matches one of five event types: `PUSH`, `PULL_REQUEST_CREATED`,
6792
- # `PULL_REQUEST_UPDATED`, `PULL_REQUEST_REOPENED`, and
6793
- # `PULL_REQUEST_MERGED`. The `EVENT` patterns are specified as a
6794
- # comma-separated string. For example, `PUSH, PULL_REQUEST_CREATED,
6795
- # PULL_REQUEST_UPDATED` filters all push, pull request created, and
6796
- # pull request updated events.
6833
+ # * A webhook event triggers a build when the provided `pattern`
6834
+ # matches one of six event types: `PUSH`, `PULL_REQUEST_CREATED`,
6835
+ # `PULL_REQUEST_UPDATED`, `PULL_REQUEST_CLOSED`,
6836
+ # `PULL_REQUEST_REOPENED`, and `PULL_REQUEST_MERGED`. The `EVENT`
6837
+ # patterns are specified as a comma-separated string. For example,
6838
+ # `PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED` filters all
6839
+ # push, pull request created, and pull request updated events.
6797
6840
  #
6798
- # <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
6799
- # Enterprise only.
6841
+ # <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
6842
+ # Enterprise only.
6800
6843
  #
6801
- # </note>
6844
+ # </note>
6802
6845
  #
6803
- # ACTOR\_ACCOUNT\_ID
6846
+ # * ACTOR\_ACCOUNT\_ID
6804
6847
  #
6805
- # : A webhook event triggers a build when a GitHub, GitHub Enterprise,
6806
- # or Bitbucket account ID matches the regular expression `pattern`.
6848
+ # * A webhook event triggers a build when a GitHub, GitHub
6849
+ # Enterprise, or Bitbucket account ID matches the regular
6850
+ # expression `pattern`.
6807
6851
  #
6808
- # HEAD\_REF
6852
+ # ^
6809
6853
  #
6810
- # : A webhook event triggers a build when the head reference matches
6811
- # the regular expression `pattern`. For example,
6812
- # `refs/heads/branch-name` and `refs/tags/tag-name`.
6854
+ # * HEAD\_REF
6813
6855
  #
6814
- # Works with GitHub and GitHub Enterprise push, GitHub and GitHub
6815
- # Enterprise pull request, Bitbucket push, and Bitbucket pull
6816
- # request events.
6856
+ # * A webhook event triggers a build when the head reference matches
6857
+ # the regular expression `pattern`. For example,
6858
+ # `refs/heads/branch-name` and `refs/tags/tag-name`.
6817
6859
  #
6818
- # BASE\_REF
6860
+ # Works with GitHub and GitHub Enterprise push, GitHub and GitHub
6861
+ # Enterprise pull request, Bitbucket push, and Bitbucket pull
6862
+ # request events.
6819
6863
  #
6820
- # : A webhook event triggers a build when the base reference matches
6821
- # the regular expression `pattern`. For example,
6822
- # `refs/heads/branch-name`.
6864
+ # * BASE\_REF
6823
6865
  #
6824
- # <note markdown="1"> Works with pull request events only.
6866
+ # * A webhook event triggers a build when the base reference matches
6867
+ # the regular expression `pattern`. For example,
6868
+ # `refs/heads/branch-name`.
6825
6869
  #
6826
- # </note>
6870
+ # <note markdown="1"> Works with pull request events only.
6827
6871
  #
6828
- # FILE\_PATH
6872
+ # </note>
6829
6873
  #
6830
- # : A webhook triggers a build when the path of a changed file matches
6831
- # the regular expression `pattern`.
6874
+ # * FILE\_PATH
6832
6875
  #
6833
- # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6834
- # events. Also works with GitHub Enterprise push events, but does
6835
- # not work with GitHub Enterprise pull request events.
6876
+ # * A webhook triggers a build when the path of a changed file
6877
+ # matches the regular expression `pattern`.
6836
6878
  #
6837
- # </note>
6879
+ # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6880
+ # events. Also works with GitHub Enterprise push events, but does
6881
+ # not work with GitHub Enterprise pull request events.
6838
6882
  #
6839
- # COMMIT\_MESSAGE
6883
+ # </note>
6840
6884
  #
6841
- # : A webhook triggers a build when the head commit message matches
6842
- # the regular expression `pattern`.
6885
+ # * COMMIT\_MESSAGE
6843
6886
  #
6844
- # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6845
- # events. Also works with GitHub Enterprise push events, but does
6846
- # not work with GitHub Enterprise pull request events.
6887
+ # * A webhook triggers a build when the head commit message matches
6888
+ # the regular expression `pattern`.
6847
6889
  #
6848
- # </note>
6890
+ # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6891
+ # events. Also works with GitHub Enterprise push events, but does
6892
+ # not work with GitHub Enterprise pull request events.
6893
+ #
6894
+ # </note>
6849
6895
  # @return [String]
6850
6896
  #
6851
6897
  # @!attribute [rw] pattern
@@ -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.103.0'
55
+ GEM_VERSION = '1.105.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -170,6 +170,7 @@ module Aws
170
170
  ]?,
171
171
  max_capacity: ::Integer?
172
172
  },
173
+ ?overflow_behavior: ("QUEUE" | "ON_DEMAND"),
173
174
  ?tags: Array[
174
175
  {
175
176
  key: ::String?,
@@ -1054,6 +1055,7 @@ module Aws
1054
1055
  ]?,
1055
1056
  max_capacity: ::Integer?
1056
1057
  },
1058
+ ?overflow_behavior: ("QUEUE" | "ON_DEMAND"),
1057
1059
  ?tags: Array[
1058
1060
  {
1059
1061
  key: ::String?,
data/sig/types.rbs CHANGED
@@ -267,6 +267,7 @@ module Aws::CodeBuild
267
267
  attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
268
268
  attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
269
269
  attr_accessor scaling_configuration: Types::ScalingConfigurationInput
270
+ attr_accessor overflow_behavior: ("QUEUE" | "ON_DEMAND")
270
271
  attr_accessor tags: ::Array[Types::Tag]
271
272
  SENSITIVE: []
272
273
  end
@@ -483,6 +484,7 @@ module Aws::CodeBuild
483
484
  attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
484
485
  attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
485
486
  attr_accessor scaling_configuration: Types::ScalingConfigurationOutput
487
+ attr_accessor overflow_behavior: ("QUEUE" | "ON_DEMAND")
486
488
  attr_accessor tags: ::Array[Types::Tag]
487
489
  SENSITIVE: []
488
490
  end
@@ -1158,6 +1160,7 @@ module Aws::CodeBuild
1158
1160
  attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
1159
1161
  attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
1160
1162
  attr_accessor scaling_configuration: Types::ScalingConfigurationInput
1163
+ attr_accessor overflow_behavior: ("QUEUE" | "ON_DEMAND")
1161
1164
  attr_accessor tags: ::Array[Types::Tag]
1162
1165
  SENSITIVE: []
1163
1166
  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.103.0
4
+ version: 1.105.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core