aws-sdk-codebuild 1.21.0 → 1.22.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 +19 -12
- data/lib/aws-sdk-codebuild/types.rb +28 -16
- 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: abb693222b54339b3b2a6f3b9e59045f88b9dfb1
|
4
|
+
data.tar.gz: cbf85ecf1491570bcfa1261fe78a9ab43ee766f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc3b33726f24db5f866c6d8b7817e38a94b0ab5063f1d30844a564c6bd53a4c998392736283ce5877bc9a974dbe56004c6e35cb8aea347cca58a2806c1b1b95c
|
7
|
+
data.tar.gz: 06d03dbc1fafab4e364e5537302530601cd7581556d260598fd9fd929ce0a42ff42c0bdb93418adaa731cfd549bcda5f80cb6a286d332470f9f9bb77f412b092
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -956,9 +956,9 @@ module Aws::CodeBuild
|
|
956
956
|
end
|
957
957
|
|
958
958
|
# For an existing AWS CodeBuild build project that has its source code
|
959
|
-
# stored in a GitHub repository, enables AWS CodeBuild to
|
960
|
-
# automatically rebuilding the source code every time a code
|
961
|
-
# pushed to the repository.
|
959
|
+
# stored in a GitHub or Bitbucket repository, enables AWS CodeBuild to
|
960
|
+
# begin automatically rebuilding the source code every time a code
|
961
|
+
# change is pushed to the repository.
|
962
962
|
#
|
963
963
|
# If you enable webhooks for an AWS CodeBuild project, and the project
|
964
964
|
# is used as a build step in AWS CodePipeline, then two identical builds
|
@@ -981,7 +981,7 @@ module Aws::CodeBuild
|
|
981
981
|
# A regular expression used to determine which branches in a repository
|
982
982
|
# are built when a webhook is triggered. If the name of a branch matches
|
983
983
|
# the regular expression, then it is built. If it doesn't match, then
|
984
|
-
# it is not. If branchFilter is empty, then all branches are built.
|
984
|
+
# it is not. If `branchFilter` is empty, then all branches are built.
|
985
985
|
#
|
986
986
|
# @return [Types::CreateWebhookOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
987
987
|
#
|
@@ -1034,9 +1034,9 @@ module Aws::CodeBuild
|
|
1034
1034
|
end
|
1035
1035
|
|
1036
1036
|
# For an existing AWS CodeBuild build project that has its source code
|
1037
|
-
# stored in a GitHub repository, stops AWS CodeBuild from
|
1038
|
-
# rebuilding the source code every time a code change is
|
1039
|
-
# repository.
|
1037
|
+
# stored in a GitHub or Bitbucket repository, stops AWS CodeBuild from
|
1038
|
+
# automatically rebuilding the source code every time a code change is
|
1039
|
+
# pushed to the repository.
|
1040
1040
|
#
|
1041
1041
|
# @option params [required, String] :project_name
|
1042
1042
|
# The name of the AWS CodeBuild project.
|
@@ -1350,7 +1350,8 @@ module Aws::CodeBuild
|
|
1350
1350
|
# @option params [Boolean] :report_build_status_override
|
1351
1351
|
# Set to true to report to your source provider the status of a build's
|
1352
1352
|
# start and completion. If you use this option with a source provider
|
1353
|
-
# other than GitHub,
|
1353
|
+
# other than GitHub, GitHub Enterprise, or Bitbucket, an
|
1354
|
+
# invalidInputException is thrown.
|
1354
1355
|
#
|
1355
1356
|
# @option params [String] :environment_type_override
|
1356
1357
|
# A container type for this build that overrides the one specified in
|
@@ -1966,6 +1967,11 @@ module Aws::CodeBuild
|
|
1966
1967
|
|
1967
1968
|
# Updates the webhook associated with an AWS CodeBuild build project.
|
1968
1969
|
#
|
1970
|
+
# <note markdown="1"> If you use Bitbucket for your repository then `rotateSecret` is
|
1971
|
+
# ignored.
|
1972
|
+
#
|
1973
|
+
# </note>
|
1974
|
+
#
|
1969
1975
|
# @option params [required, String] :project_name
|
1970
1976
|
# The name of the AWS CodeBuild project.
|
1971
1977
|
#
|
@@ -1973,11 +1979,12 @@ module Aws::CodeBuild
|
|
1973
1979
|
# A regular expression used to determine which branches in a repository
|
1974
1980
|
# are built when a webhook is triggered. If the name of a branch matches
|
1975
1981
|
# the regular expression, then it is built. If it doesn't match, then
|
1976
|
-
# it is not. If branchFilter is empty, then all branches are built.
|
1982
|
+
# it is not. If `branchFilter` is empty, then all branches are built.
|
1977
1983
|
#
|
1978
1984
|
# @option params [Boolean] :rotate_secret
|
1979
|
-
# A boolean value that specifies whether the associated
|
1980
|
-
# secret token should be updated.
|
1985
|
+
# A boolean value that specifies whether the associated GitHub
|
1986
|
+
# repository's secret token should be updated. If you use Bitbucket for
|
1987
|
+
# your repository then `rotateSecret` is ignored.
|
1981
1988
|
#
|
1982
1989
|
# @return [Types::UpdateWebhookOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1983
1990
|
#
|
@@ -2021,7 +2028,7 @@ module Aws::CodeBuild
|
|
2021
2028
|
params: params,
|
2022
2029
|
config: config)
|
2023
2030
|
context[:gem_name] = 'aws-sdk-codebuild'
|
2024
|
-
context[:gem_version] = '1.
|
2031
|
+
context[:gem_version] = '1.22.0'
|
2025
2032
|
Seahorse::Client::Request.new(handlers, context)
|
2026
2033
|
end
|
2027
2034
|
|
@@ -738,7 +738,7 @@ module Aws::CodeBuild
|
|
738
738
|
# A regular expression used to determine which branches in a
|
739
739
|
# repository are built when a webhook is triggered. If the name of a
|
740
740
|
# branch matches the regular expression, then it is built. If it
|
741
|
-
# doesn't match, then it is not. If branchFilter is empty, then all
|
741
|
+
# doesn't match, then it is not. If `branchFilter` is empty, then all
|
742
742
|
# branches are built.
|
743
743
|
# @return [String]
|
744
744
|
#
|
@@ -751,8 +751,8 @@ module Aws::CodeBuild
|
|
751
751
|
end
|
752
752
|
|
753
753
|
# @!attribute [rw] webhook
|
754
|
-
# Information about a webhook
|
755
|
-
#
|
754
|
+
# Information about a webhook that connects repository events to a
|
755
|
+
# build project in AWS CodeBuild.
|
756
756
|
# @return [Types::Webhook]
|
757
757
|
#
|
758
758
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateWebhookOutput AWS API Documentation
|
@@ -1332,8 +1332,8 @@ module Aws::CodeBuild
|
|
1332
1332
|
# @return [Time]
|
1333
1333
|
#
|
1334
1334
|
# @!attribute [rw] webhook
|
1335
|
-
# Information about a webhook
|
1336
|
-
#
|
1335
|
+
# Information about a webhook that connects repository events to a
|
1336
|
+
# build project in AWS CodeBuild.
|
1337
1337
|
# @return [Types::Webhook]
|
1338
1338
|
#
|
1339
1339
|
# @!attribute [rw] vpc_config
|
@@ -1749,8 +1749,13 @@ module Aws::CodeBuild
|
|
1749
1749
|
# `).
|
1750
1750
|
#
|
1751
1751
|
# * For source code in an Amazon Simple Storage Service (Amazon S3)
|
1752
|
-
# input bucket,
|
1753
|
-
#
|
1752
|
+
# input bucket, one of the following.
|
1753
|
+
#
|
1754
|
+
# * The path to the ZIP file that contains the source code (for
|
1755
|
+
# example, ` bucket-name/path/to/object-name.zip`).
|
1756
|
+
#
|
1757
|
+
# * The path to the folder that contains the source code (for
|
1758
|
+
# example, ` bucket-name/path/to/source-code/folder/`).
|
1754
1759
|
#
|
1755
1760
|
# * For source code in a GitHub repository, the HTTPS clone URL to the
|
1756
1761
|
# repository that contains the source and the build spec. Also, you
|
@@ -1804,8 +1809,9 @@ module Aws::CodeBuild
|
|
1804
1809
|
# @!attribute [rw] report_build_status
|
1805
1810
|
# Set to true to report the status of a build's start and finish to
|
1806
1811
|
# your source provider. This option is only valid when your source
|
1807
|
-
# provider is GitHub. If this is set
|
1808
|
-
# provider, an invalidInputException is
|
1812
|
+
# provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set
|
1813
|
+
# and you use a different source provider, an invalidInputException is
|
1814
|
+
# thrown.
|
1809
1815
|
# @return [Boolean]
|
1810
1816
|
#
|
1811
1817
|
# @!attribute [rw] insecure_ssl
|
@@ -2125,7 +2131,8 @@ module Aws::CodeBuild
|
|
2125
2131
|
# @!attribute [rw] report_build_status_override
|
2126
2132
|
# Set to true to report to your source provider the status of a
|
2127
2133
|
# build's start and completion. If you use this option with a source
|
2128
|
-
# provider other than GitHub,
|
2134
|
+
# provider other than GitHub, GitHub Enterprise, or Bitbucket, an
|
2135
|
+
# invalidInputException is thrown.
|
2129
2136
|
# @return [Boolean]
|
2130
2137
|
#
|
2131
2138
|
# @!attribute [rw] environment_type_override
|
@@ -2515,13 +2522,14 @@ module Aws::CodeBuild
|
|
2515
2522
|
# A regular expression used to determine which branches in a
|
2516
2523
|
# repository are built when a webhook is triggered. If the name of a
|
2517
2524
|
# branch matches the regular expression, then it is built. If it
|
2518
|
-
# doesn't match, then it is not. If branchFilter is empty, then all
|
2525
|
+
# doesn't match, then it is not. If `branchFilter` is empty, then all
|
2519
2526
|
# branches are built.
|
2520
2527
|
# @return [String]
|
2521
2528
|
#
|
2522
2529
|
# @!attribute [rw] rotate_secret
|
2523
|
-
# A boolean value that specifies whether the associated
|
2524
|
-
# secret token should be updated.
|
2530
|
+
# A boolean value that specifies whether the associated GitHub
|
2531
|
+
# repository's secret token should be updated. If you use Bitbucket
|
2532
|
+
# for your repository then `rotateSecret` is ignored.
|
2525
2533
|
# @return [Boolean]
|
2526
2534
|
#
|
2527
2535
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateWebhookInput AWS API Documentation
|
@@ -2578,8 +2586,8 @@ module Aws::CodeBuild
|
|
2578
2586
|
include Aws::Structure
|
2579
2587
|
end
|
2580
2588
|
|
2581
|
-
# Information about a webhook
|
2582
|
-
#
|
2589
|
+
# Information about a webhook that connects repository events to a build
|
2590
|
+
# project in AWS CodeBuild.
|
2583
2591
|
#
|
2584
2592
|
# @!attribute [rw] url
|
2585
2593
|
# The URL to the webhook.
|
@@ -2591,13 +2599,17 @@ module Aws::CodeBuild
|
|
2591
2599
|
#
|
2592
2600
|
# @!attribute [rw] secret
|
2593
2601
|
# The secret token of the associated repository.
|
2602
|
+
#
|
2603
|
+
# <note markdown="1"> A Bitbucket webhook does not support `secret`.
|
2604
|
+
#
|
2605
|
+
# </note>
|
2594
2606
|
# @return [String]
|
2595
2607
|
#
|
2596
2608
|
# @!attribute [rw] branch_filter
|
2597
2609
|
# A regular expression used to determine which branches in a
|
2598
2610
|
# repository are built when a webhook is triggered. If the name of a
|
2599
2611
|
# branch matches the regular expression, then it is built. If it
|
2600
|
-
# doesn't match, then it is not. If branchFilter is empty, then all
|
2612
|
+
# doesn't match, then it is not. If `branchFilter` is empty, then all
|
2601
2613
|
# branches are built.
|
2602
2614
|
# @return [String]
|
2603
2615
|
#
|
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.22.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-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|