aws-sdk-codebuild 1.67.0 → 1.68.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: cae8053cc7b35bfbd25cb00dd9b9a7f6c247d051e3e221adefb503f1c8fb5318
4
- data.tar.gz: a3737804d7b0ac423db2b82f9370916ca676bc24fce6bc2743938f0c17d1bc74
3
+ metadata.gz: ad60e42f8c6615d6a54b1073988882b7742cb8d820ff4977369d8357f077f4c0
4
+ data.tar.gz: 6b323164ce938575eaadf420ae535731fce74ca716398c50b55a729dfc5f2a3e
5
5
  SHA512:
6
- metadata.gz: 33ca2dc78ddb270d699869490aa7aaeb8b49c41ce1b8c8f40d3569967a8fd80b8111d0cf31638c6f5afaf3723191fcb29d5d024ed5c49ccf7c9de9ed4409926c
7
- data.tar.gz: 751a50bd78f450e4de71fa336b98d71bfa12d4691f34c2444f95b6b5cbf692e0dcd04e233ee283e3ff1e560bda97b5fa1da46c36b3fa6449ffdd62be17405362
6
+ metadata.gz: d02fb94069395deeadf844538356002d9eb8fccb9fc63641406496be6714c99b70e67acbe60b71c2fc557a1810e5be2288cc0f254fd4b9ffbdacb91bb7279bd8
7
+ data.tar.gz: 5f0d5edd2a8275496517ca80fdaae3b14abd82251812d3b213e1ede1bdd9325b1b5853def13b5e71afe5cce5ed5d72867e9bad55ecdd52bde24281b8a5512fa0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codebuild/customizations'
48
48
  # @!group service
49
49
  module Aws::CodeBuild
50
50
 
51
- GEM_VERSION = '1.67.0'
51
+ GEM_VERSION = '1.68.0'
52
52
 
53
53
  end
@@ -1064,6 +1064,7 @@ module Aws::CodeBuild
1064
1064
  # resp.projects[0].build_batch_config.restrictions.compute_types_allowed #=> Array
1065
1065
  # resp.projects[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
1066
1066
  # resp.projects[0].build_batch_config.timeout_in_mins #=> Integer
1067
+ # resp.projects[0].concurrent_build_limit #=> Integer
1067
1068
  # resp.projects_not_found #=> Array
1068
1069
  # resp.projects_not_found[0] #=> String
1069
1070
  #
@@ -1299,6 +1300,14 @@ module Aws::CodeBuild
1299
1300
  # A ProjectBuildBatchConfig object that defines the batch build options
1300
1301
  # for the project.
1301
1302
  #
1303
+ # @option params [Integer] :concurrent_build_limit
1304
+ # The maximum number of concurrent builds that are allowed for this
1305
+ # project.
1306
+ #
1307
+ # New builds are only started if the current number of builds is less
1308
+ # than or equal to this limit. If the current build count meets this
1309
+ # limit, new builds are throttled and are not run.
1310
+ #
1302
1311
  # @return [Types::CreateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1303
1312
  #
1304
1313
  # * {Types::CreateProjectOutput#project #project} => Types::Project
@@ -1451,6 +1460,7 @@ module Aws::CodeBuild
1451
1460
  # },
1452
1461
  # timeout_in_mins: 1,
1453
1462
  # },
1463
+ # concurrent_build_limit: 1,
1454
1464
  # })
1455
1465
  #
1456
1466
  # @example Response structure
@@ -1567,6 +1577,7 @@ module Aws::CodeBuild
1567
1577
  # resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
1568
1578
  # resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
1569
1579
  # resp.project.build_batch_config.timeout_in_mins #=> Integer
1580
+ # resp.project.concurrent_build_limit #=> Integer
1570
1581
  #
1571
1582
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateProject AWS API Documentation
1572
1583
  #
@@ -4659,6 +4670,16 @@ module Aws::CodeBuild
4659
4670
  # @option params [Types::ProjectBuildBatchConfig] :build_batch_config
4660
4671
  # Contains configuration information about a batch build project.
4661
4672
  #
4673
+ # @option params [Integer] :concurrent_build_limit
4674
+ # The maximum number of concurrent builds that are allowed for this
4675
+ # project.
4676
+ #
4677
+ # New builds are only started if the current number of builds is less
4678
+ # than or equal to this limit. If the current build count meets this
4679
+ # limit, new builds are throttled and are not run.
4680
+ #
4681
+ # To remove this limit, set this value to -1.
4682
+ #
4662
4683
  # @return [Types::UpdateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4663
4684
  #
4664
4685
  # * {Types::UpdateProjectOutput#project #project} => Types::Project
@@ -4811,6 +4832,7 @@ module Aws::CodeBuild
4811
4832
  # },
4812
4833
  # timeout_in_mins: 1,
4813
4834
  # },
4835
+ # concurrent_build_limit: 1,
4814
4836
  # })
4815
4837
  #
4816
4838
  # @example Response structure
@@ -4927,6 +4949,7 @@ module Aws::CodeBuild
4927
4949
  # resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
4928
4950
  # resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4929
4951
  # resp.project.build_batch_config.timeout_in_mins #=> Integer
4952
+ # resp.project.concurrent_build_limit #=> Integer
4930
4953
  #
4931
4954
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateProject AWS API Documentation
4932
4955
  #
@@ -5100,7 +5123,7 @@ module Aws::CodeBuild
5100
5123
  params: params,
5101
5124
  config: config)
5102
5125
  context[:gem_name] = 'aws-sdk-codebuild'
5103
- context[:gem_version] = '1.67.0'
5126
+ context[:gem_version] = '1.68.0'
5104
5127
  Seahorse::Client::Request.new(handlers, context)
5105
5128
  end
5106
5129
 
@@ -489,6 +489,7 @@ module Aws::CodeBuild
489
489
  CreateProjectInput.add_member(:logs_config, Shapes::ShapeRef.new(shape: LogsConfig, location_name: "logsConfig"))
490
490
  CreateProjectInput.add_member(:file_system_locations, Shapes::ShapeRef.new(shape: ProjectFileSystemLocations, location_name: "fileSystemLocations"))
491
491
  CreateProjectInput.add_member(:build_batch_config, Shapes::ShapeRef.new(shape: ProjectBuildBatchConfig, location_name: "buildBatchConfig"))
492
+ CreateProjectInput.add_member(:concurrent_build_limit, Shapes::ShapeRef.new(shape: WrapperInt, location_name: "concurrentBuildLimit"))
492
493
  CreateProjectInput.struct_class = Types::CreateProjectInput
493
494
 
494
495
  CreateProjectOutput.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "project"))
@@ -812,6 +813,7 @@ module Aws::CodeBuild
812
813
  Project.add_member(:logs_config, Shapes::ShapeRef.new(shape: LogsConfig, location_name: "logsConfig"))
813
814
  Project.add_member(:file_system_locations, Shapes::ShapeRef.new(shape: ProjectFileSystemLocations, location_name: "fileSystemLocations"))
814
815
  Project.add_member(:build_batch_config, Shapes::ShapeRef.new(shape: ProjectBuildBatchConfig, location_name: "buildBatchConfig"))
816
+ Project.add_member(:concurrent_build_limit, Shapes::ShapeRef.new(shape: WrapperInt, location_name: "concurrentBuildLimit"))
815
817
  Project.struct_class = Types::Project
816
818
 
817
819
  ProjectArns.member = Shapes::ShapeRef.new(shape: NonEmptyString)
@@ -1136,6 +1138,7 @@ module Aws::CodeBuild
1136
1138
  UpdateProjectInput.add_member(:logs_config, Shapes::ShapeRef.new(shape: LogsConfig, location_name: "logsConfig"))
1137
1139
  UpdateProjectInput.add_member(:file_system_locations, Shapes::ShapeRef.new(shape: ProjectFileSystemLocations, location_name: "fileSystemLocations"))
1138
1140
  UpdateProjectInput.add_member(:build_batch_config, Shapes::ShapeRef.new(shape: ProjectBuildBatchConfig, location_name: "buildBatchConfig"))
1141
+ UpdateProjectInput.add_member(:concurrent_build_limit, Shapes::ShapeRef.new(shape: WrapperInt, location_name: "concurrentBuildLimit"))
1139
1142
  UpdateProjectInput.struct_class = Types::UpdateProjectInput
1140
1143
 
1141
1144
  UpdateProjectOutput.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "project"))
@@ -1520,6 +1520,7 @@ module Aws::CodeBuild
1520
1520
  # },
1521
1521
  # timeout_in_mins: 1,
1522
1522
  # },
1523
+ # concurrent_build_limit: 1,
1523
1524
  # }
1524
1525
  #
1525
1526
  # @!attribute [rw] name
@@ -1664,6 +1665,15 @@ module Aws::CodeBuild
1664
1665
  # options for the project.
1665
1666
  # @return [Types::ProjectBuildBatchConfig]
1666
1667
  #
1668
+ # @!attribute [rw] concurrent_build_limit
1669
+ # The maximum number of concurrent builds that are allowed for this
1670
+ # project.
1671
+ #
1672
+ # New builds are only started if the current number of builds is less
1673
+ # than or equal to this limit. If the current build count meets this
1674
+ # limit, new builds are throttled and are not run.
1675
+ # @return [Integer]
1676
+ #
1667
1677
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateProjectInput AWS API Documentation
1668
1678
  #
1669
1679
  class CreateProjectInput < Struct.new(
@@ -1686,7 +1696,8 @@ module Aws::CodeBuild
1686
1696
  :badge_enabled,
1687
1697
  :logs_config,
1688
1698
  :file_system_locations,
1689
- :build_batch_config)
1699
+ :build_batch_config,
1700
+ :concurrent_build_limit)
1690
1701
  SENSITIVE = []
1691
1702
  include Aws::Structure
1692
1703
  end
@@ -3710,6 +3721,15 @@ module Aws::CodeBuild
3710
3721
  # options for the project.
3711
3722
  # @return [Types::ProjectBuildBatchConfig]
3712
3723
  #
3724
+ # @!attribute [rw] concurrent_build_limit
3725
+ # The maximum number of concurrent builds that are allowed for this
3726
+ # project.
3727
+ #
3728
+ # New builds are only started if the current number of builds is less
3729
+ # than or equal to this limit. If the current build count meets this
3730
+ # limit, new builds are throttled and are not run.
3731
+ # @return [Integer]
3732
+ #
3713
3733
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/Project AWS API Documentation
3714
3734
  #
3715
3735
  class Project < Struct.new(
@@ -3736,7 +3756,8 @@ module Aws::CodeBuild
3736
3756
  :badge,
3737
3757
  :logs_config,
3738
3758
  :file_system_locations,
3739
- :build_batch_config)
3759
+ :build_batch_config,
3760
+ :concurrent_build_limit)
3740
3761
  SENSITIVE = []
3741
3762
  include Aws::Structure
3742
3763
  end
@@ -3927,9 +3948,6 @@ module Aws::CodeBuild
3927
3948
  # @!attribute [rw] badge_request_url
3928
3949
  # The publicly-accessible URL through which you can access the build
3929
3950
  # badge for your project.
3930
- #
3931
- # The publicly accessible URL through which you can access the build
3932
- # badge for your project.
3933
3951
  # @return [String]
3934
3952
  #
3935
3953
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ProjectBadge AWS API Documentation
@@ -6423,6 +6441,7 @@ module Aws::CodeBuild
6423
6441
  # },
6424
6442
  # timeout_in_mins: 1,
6425
6443
  # },
6444
+ # concurrent_build_limit: 1,
6426
6445
  # }
6427
6446
  #
6428
6447
  # @!attribute [rw] name
@@ -6571,6 +6590,17 @@ module Aws::CodeBuild
6571
6590
  # Contains configuration information about a batch build project.
6572
6591
  # @return [Types::ProjectBuildBatchConfig]
6573
6592
  #
6593
+ # @!attribute [rw] concurrent_build_limit
6594
+ # The maximum number of concurrent builds that are allowed for this
6595
+ # project.
6596
+ #
6597
+ # New builds are only started if the current number of builds is less
6598
+ # than or equal to this limit. If the current build count meets this
6599
+ # limit, new builds are throttled and are not run.
6600
+ #
6601
+ # To remove this limit, set this value to -1.
6602
+ # @return [Integer]
6603
+ #
6574
6604
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateProjectInput AWS API Documentation
6575
6605
  #
6576
6606
  class UpdateProjectInput < Struct.new(
@@ -6593,7 +6623,8 @@ module Aws::CodeBuild
6593
6623
  :badge_enabled,
6594
6624
  :logs_config,
6595
6625
  :file_system_locations,
6596
- :build_batch_config)
6626
+ :build_batch_config,
6627
+ :concurrent_build_limit)
6597
6628
  SENSITIVE = []
6598
6629
  include Aws::Structure
6599
6630
  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.67.0
4
+ version: 1.68.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-03 00:00:00.000000000 Z
11
+ date: 2021-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core