aws-sdk-codebuild 1.10.0 → 1.11.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 +15 -1
- data/lib/aws-sdk-codebuild/client_api.rb +2 -0
- data/lib/aws-sdk-codebuild/types.rb +29 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c466e508ee1043308fb1a552685965a1152c39a3
|
4
|
+
data.tar.gz: e52d89ca9f558aa03167e53e2180ee843beab52d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8b007609806bbfe5645e61a24993e75049be8d621bd70103d17f7257b5a334c73eb38bf7f8f7612116aba11af0231f564166a4159b5708aa4dcccb57c61fde4
|
7
|
+
data.tar.gz: 87e00a3d344606355ce8bff1aa4b1215840822996c9aa04ada84330597417fee8a89dd48616cb2d17f2da4011884b24248656242ec44331b0addeb8756c9c1f5
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -494,6 +494,7 @@ module Aws::CodeBuild
|
|
494
494
|
# resp.builds[0].source.buildspec #=> String
|
495
495
|
# resp.builds[0].source.auth.type #=> String, one of "OAUTH"
|
496
496
|
# resp.builds[0].source.auth.resource #=> String
|
497
|
+
# resp.builds[0].source.report_build_status #=> Boolean
|
497
498
|
# resp.builds[0].source.insecure_ssl #=> Boolean
|
498
499
|
# resp.builds[0].artifacts.location #=> String
|
499
500
|
# resp.builds[0].artifacts.sha256sum #=> String
|
@@ -563,6 +564,7 @@ module Aws::CodeBuild
|
|
563
564
|
# resp.projects[0].source.buildspec #=> String
|
564
565
|
# resp.projects[0].source.auth.type #=> String, one of "OAUTH"
|
565
566
|
# resp.projects[0].source.auth.resource #=> String
|
567
|
+
# resp.projects[0].source.report_build_status #=> Boolean
|
566
568
|
# resp.projects[0].source.insecure_ssl #=> Boolean
|
567
569
|
# resp.projects[0].artifacts.type #=> String, one of "CODEPIPELINE", "S3", "NO_ARTIFACTS"
|
568
570
|
# resp.projects[0].artifacts.location #=> String
|
@@ -682,6 +684,7 @@ module Aws::CodeBuild
|
|
682
684
|
# type: "OAUTH", # required, accepts OAUTH
|
683
685
|
# resource: "String",
|
684
686
|
# },
|
687
|
+
# report_build_status: false,
|
685
688
|
# insecure_ssl: false,
|
686
689
|
# },
|
687
690
|
# artifacts: { # required
|
@@ -738,6 +741,7 @@ module Aws::CodeBuild
|
|
738
741
|
# resp.project.source.buildspec #=> String
|
739
742
|
# resp.project.source.auth.type #=> String, one of "OAUTH"
|
740
743
|
# resp.project.source.auth.resource #=> String
|
744
|
+
# resp.project.source.report_build_status #=> Boolean
|
741
745
|
# resp.project.source.insecure_ssl #=> Boolean
|
742
746
|
# resp.project.artifacts.type #=> String, one of "CODEPIPELINE", "S3", "NO_ARTIFACTS"
|
743
747
|
# resp.project.artifacts.location #=> String
|
@@ -1167,6 +1171,11 @@ module Aws::CodeBuild
|
|
1167
1171
|
# code. This override applies only if the build's source is GitHub
|
1168
1172
|
# Enterprise.
|
1169
1173
|
#
|
1174
|
+
# @option params [Boolean] :report_build_status_override
|
1175
|
+
# Set to true to report to your source provider the status of a build's
|
1176
|
+
# start and completion. If you use this option with a source provider
|
1177
|
+
# other than GitHub, an invalidInputException is thrown.
|
1178
|
+
#
|
1170
1179
|
# @option params [String] :environment_type_override
|
1171
1180
|
# A container type for this build that overrides the one specified in
|
1172
1181
|
# the build project.
|
@@ -1239,6 +1248,7 @@ module Aws::CodeBuild
|
|
1239
1248
|
# git_clone_depth_override: 1,
|
1240
1249
|
# buildspec_override: "String",
|
1241
1250
|
# insecure_ssl_override: false,
|
1251
|
+
# report_build_status_override: false,
|
1242
1252
|
# environment_type_override: "WINDOWS_CONTAINER", # accepts WINDOWS_CONTAINER, LINUX_CONTAINER
|
1243
1253
|
# image_override: "NonEmptyString",
|
1244
1254
|
# compute_type_override: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE
|
@@ -1278,6 +1288,7 @@ module Aws::CodeBuild
|
|
1278
1288
|
# resp.build.source.buildspec #=> String
|
1279
1289
|
# resp.build.source.auth.type #=> String, one of "OAUTH"
|
1280
1290
|
# resp.build.source.auth.resource #=> String
|
1291
|
+
# resp.build.source.report_build_status #=> Boolean
|
1281
1292
|
# resp.build.source.insecure_ssl #=> Boolean
|
1282
1293
|
# resp.build.artifacts.location #=> String
|
1283
1294
|
# resp.build.artifacts.sha256sum #=> String
|
@@ -1357,6 +1368,7 @@ module Aws::CodeBuild
|
|
1357
1368
|
# resp.build.source.buildspec #=> String
|
1358
1369
|
# resp.build.source.auth.type #=> String, one of "OAUTH"
|
1359
1370
|
# resp.build.source.auth.resource #=> String
|
1371
|
+
# resp.build.source.report_build_status #=> Boolean
|
1360
1372
|
# resp.build.source.insecure_ssl #=> Boolean
|
1361
1373
|
# resp.build.artifacts.location #=> String
|
1362
1374
|
# resp.build.artifacts.sha256sum #=> String
|
@@ -1472,6 +1484,7 @@ module Aws::CodeBuild
|
|
1472
1484
|
# type: "OAUTH", # required, accepts OAUTH
|
1473
1485
|
# resource: "String",
|
1474
1486
|
# },
|
1487
|
+
# report_build_status: false,
|
1475
1488
|
# insecure_ssl: false,
|
1476
1489
|
# },
|
1477
1490
|
# artifacts: {
|
@@ -1528,6 +1541,7 @@ module Aws::CodeBuild
|
|
1528
1541
|
# resp.project.source.buildspec #=> String
|
1529
1542
|
# resp.project.source.auth.type #=> String, one of "OAUTH"
|
1530
1543
|
# resp.project.source.auth.resource #=> String
|
1544
|
+
# resp.project.source.report_build_status #=> Boolean
|
1531
1545
|
# resp.project.source.insecure_ssl #=> Boolean
|
1532
1546
|
# resp.project.artifacts.type #=> String, one of "CODEPIPELINE", "S3", "NO_ARTIFACTS"
|
1533
1547
|
# resp.project.artifacts.location #=> String
|
@@ -1633,7 +1647,7 @@ module Aws::CodeBuild
|
|
1633
1647
|
params: params,
|
1634
1648
|
config: config)
|
1635
1649
|
context[:gem_name] = 'aws-sdk-codebuild'
|
1636
|
-
context[:gem_version] = '1.
|
1650
|
+
context[:gem_version] = '1.11.0'
|
1637
1651
|
Seahorse::Client::Request.new(handlers, context)
|
1638
1652
|
end
|
1639
1653
|
|
@@ -343,6 +343,7 @@ module Aws::CodeBuild
|
|
343
343
|
ProjectSource.add_member(:git_clone_depth, Shapes::ShapeRef.new(shape: GitCloneDepth, location_name: "gitCloneDepth"))
|
344
344
|
ProjectSource.add_member(:buildspec, Shapes::ShapeRef.new(shape: String, location_name: "buildspec"))
|
345
345
|
ProjectSource.add_member(:auth, Shapes::ShapeRef.new(shape: SourceAuth, location_name: "auth"))
|
346
|
+
ProjectSource.add_member(:report_build_status, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "reportBuildStatus"))
|
346
347
|
ProjectSource.add_member(:insecure_ssl, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "insecureSsl"))
|
347
348
|
ProjectSource.struct_class = Types::ProjectSource
|
348
349
|
|
@@ -364,6 +365,7 @@ module Aws::CodeBuild
|
|
364
365
|
StartBuildInput.add_member(:git_clone_depth_override, Shapes::ShapeRef.new(shape: GitCloneDepth, location_name: "gitCloneDepthOverride"))
|
365
366
|
StartBuildInput.add_member(:buildspec_override, Shapes::ShapeRef.new(shape: String, location_name: "buildspecOverride"))
|
366
367
|
StartBuildInput.add_member(:insecure_ssl_override, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "insecureSslOverride"))
|
368
|
+
StartBuildInput.add_member(:report_build_status_override, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "reportBuildStatusOverride"))
|
367
369
|
StartBuildInput.add_member(:environment_type_override, Shapes::ShapeRef.new(shape: EnvironmentType, location_name: "environmentTypeOverride"))
|
368
370
|
StartBuildInput.add_member(:image_override, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "imageOverride"))
|
369
371
|
StartBuildInput.add_member(:compute_type_override, Shapes::ShapeRef.new(shape: ComputeType, location_name: "computeTypeOverride"))
|
@@ -399,6 +399,7 @@ module Aws::CodeBuild
|
|
399
399
|
# type: "OAUTH", # required, accepts OAUTH
|
400
400
|
# resource: "String",
|
401
401
|
# },
|
402
|
+
# report_build_status: false,
|
402
403
|
# insecure_ssl: false,
|
403
404
|
# },
|
404
405
|
# artifacts: { # required
|
@@ -1385,8 +1386,17 @@ module Aws::CodeBuild
|
|
1385
1386
|
# build environment image is provided by AWS CodeBuild with Docker
|
1386
1387
|
# support.)
|
1387
1388
|
#
|
1389
|
+
# If the operating system's base image is Ubuntu Linux:
|
1390
|
+
#
|
1391
|
+
# `- nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock
|
1392
|
+
# --host=tcp://0.0.0.0:2375 --storage-driver=overlay& - timeout 15 sh
|
1393
|
+
# -c "until docker info; do echo .; sleep 1; done"`
|
1394
|
+
#
|
1395
|
+
# If the operating system's base image is Alpine Linux, add the `-t`
|
1396
|
+
# argument to `timeout`\:
|
1397
|
+
#
|
1388
1398
|
# `- nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock
|
1389
|
-
# --host=tcp://0.0.0.0:2375 --storage-driver=overlay& - timeout -t
|
1399
|
+
# --host=tcp://0.0.0.0:2375 --storage-driver=overlay& - timeout 15 -t
|
1390
1400
|
# sh -c "until docker info; do echo .; sleep 1; done"`
|
1391
1401
|
# @return [Boolean]
|
1392
1402
|
#
|
@@ -1420,6 +1430,7 @@ module Aws::CodeBuild
|
|
1420
1430
|
# type: "OAUTH", # required, accepts OAUTH
|
1421
1431
|
# resource: "String",
|
1422
1432
|
# },
|
1433
|
+
# report_build_status: false,
|
1423
1434
|
# insecure_ssl: false,
|
1424
1435
|
# }
|
1425
1436
|
#
|
@@ -1509,6 +1520,13 @@ module Aws::CodeBuild
|
|
1509
1520
|
# build project's source `type` value is `BITBUCKET` or `GITHUB`).
|
1510
1521
|
# @return [Types::SourceAuth]
|
1511
1522
|
#
|
1523
|
+
# @!attribute [rw] report_build_status
|
1524
|
+
# Set to true to report the status of a build's start and finish to
|
1525
|
+
# your source provider. This option is only valid when your source
|
1526
|
+
# provider is GitHub. If this is set and you use a different source
|
1527
|
+
# provider, an invalidInputException is thrown.
|
1528
|
+
# @return [Boolean]
|
1529
|
+
#
|
1512
1530
|
# @!attribute [rw] insecure_ssl
|
1513
1531
|
# Enable this flag to ignore SSL warnings while connecting to the
|
1514
1532
|
# project source code.
|
@@ -1522,6 +1540,7 @@ module Aws::CodeBuild
|
|
1522
1540
|
:git_clone_depth,
|
1523
1541
|
:buildspec,
|
1524
1542
|
:auth,
|
1543
|
+
:report_build_status,
|
1525
1544
|
:insecure_ssl)
|
1526
1545
|
include Aws::Structure
|
1527
1546
|
end
|
@@ -1588,6 +1607,7 @@ module Aws::CodeBuild
|
|
1588
1607
|
# git_clone_depth_override: 1,
|
1589
1608
|
# buildspec_override: "String",
|
1590
1609
|
# insecure_ssl_override: false,
|
1610
|
+
# report_build_status_override: false,
|
1591
1611
|
# environment_type_override: "WINDOWS_CONTAINER", # accepts WINDOWS_CONTAINER, LINUX_CONTAINER
|
1592
1612
|
# image_override: "NonEmptyString",
|
1593
1613
|
# compute_type_override: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE
|
@@ -1676,6 +1696,12 @@ module Aws::CodeBuild
|
|
1676
1696
|
# GitHub Enterprise.
|
1677
1697
|
# @return [Boolean]
|
1678
1698
|
#
|
1699
|
+
# @!attribute [rw] report_build_status_override
|
1700
|
+
# Set to true to report to your source provider the status of a
|
1701
|
+
# build's start and completion. If you use this option with a source
|
1702
|
+
# provider other than GitHub, an invalidInputException is thrown.
|
1703
|
+
# @return [Boolean]
|
1704
|
+
#
|
1679
1705
|
# @!attribute [rw] environment_type_override
|
1680
1706
|
# A container type for this build that overrides the one specified in
|
1681
1707
|
# the build project.
|
@@ -1737,6 +1763,7 @@ module Aws::CodeBuild
|
|
1737
1763
|
:git_clone_depth_override,
|
1738
1764
|
:buildspec_override,
|
1739
1765
|
:insecure_ssl_override,
|
1766
|
+
:report_build_status_override,
|
1740
1767
|
:environment_type_override,
|
1741
1768
|
:image_override,
|
1742
1769
|
:compute_type_override,
|
@@ -1833,6 +1860,7 @@ module Aws::CodeBuild
|
|
1833
1860
|
# type: "OAUTH", # required, accepts OAUTH
|
1834
1861
|
# resource: "String",
|
1835
1862
|
# },
|
1863
|
+
# report_build_status: false,
|
1836
1864
|
# insecure_ssl: false,
|
1837
1865
|
# },
|
1838
1866
|
# artifacts: {
|
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.11.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: 2018-
|
11
|
+
date: 2018-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|