aws-sdk-codebuild 1.49.0 → 1.54.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 +3 -1
- data/lib/aws-sdk-codebuild/client.rb +72 -16
- data/lib/aws-sdk-codebuild/client_api.rb +56 -0
- data/lib/aws-sdk-codebuild/errors.rb +2 -0
- data/lib/aws-sdk-codebuild/resource.rb +3 -7
- data/lib/aws-sdk-codebuild/types.rb +175 -25
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83f161a48d98d3a772e2c6e0a25f6f0c77f239e227c61eae7c3a86fce7778603
|
4
|
+
data.tar.gz: 5df91eff0c5caadf2e2293dd1076a049aa0ea7210f334275ecbf98c60dda6ba4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e18fd5c4dd0a1cc676b6f49a8e04dff411a45eb702a271b4232a8535dbc294f9d383242a9e6da01777eadc347f76558a860decc2499ee15a6722b508c6b2a9cb
|
7
|
+
data.tar.gz: 53294cd93e6b0d2aaedf3a007276d45e2b96496d1a0af41408a32e19e6331e1617e43214e8d6c5757b05d63b980116784f35d0d8278c9d60dd7f3b5455e4121b
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-codebuild/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::CodeBuild
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.54.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::CodeBuild
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::CodeBuild
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::CodeBuild
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::CodeBuild
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -279,8 +283,7 @@ module Aws::CodeBuild
|
|
279
283
|
#
|
280
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
281
285
|
# number of seconds to wait for response data. This value can
|
282
|
-
# safely be set
|
283
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
284
287
|
#
|
285
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
286
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -292,7 +295,7 @@ module Aws::CodeBuild
|
|
292
295
|
# request body. This option has no effect unless the request has
|
293
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
294
297
|
# disables this behaviour. This value can safely be set per
|
295
|
-
# request on the session
|
298
|
+
# request on the session.
|
296
299
|
#
|
297
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
298
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -843,7 +846,7 @@ module Aws::CodeBuild
|
|
843
846
|
# resp.projects[0].webhook.branch_filter #=> String
|
844
847
|
# resp.projects[0].webhook.filter_groups #=> Array
|
845
848
|
# resp.projects[0].webhook.filter_groups[0] #=> Array
|
846
|
-
# resp.projects[0].webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH"
|
849
|
+
# resp.projects[0].webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
|
847
850
|
# resp.projects[0].webhook.filter_groups[0][0].pattern #=> String
|
848
851
|
# resp.projects[0].webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
|
849
852
|
# resp.projects[0].webhook.last_modified_secret #=> Time
|
@@ -909,6 +912,9 @@ module Aws::CodeBuild
|
|
909
912
|
# resp.report_groups[0].export_config.s3_destination.encryption_disabled #=> Boolean
|
910
913
|
# resp.report_groups[0].created #=> Time
|
911
914
|
# resp.report_groups[0].last_modified #=> Time
|
915
|
+
# resp.report_groups[0].tags #=> Array
|
916
|
+
# resp.report_groups[0].tags[0].key #=> String
|
917
|
+
# resp.report_groups[0].tags[0].value #=> String
|
912
918
|
# resp.report_groups_not_found #=> Array
|
913
919
|
# resp.report_groups_not_found[0] #=> String
|
914
920
|
#
|
@@ -1063,7 +1069,7 @@ module Aws::CodeBuild
|
|
1063
1069
|
# if available, the CMK's alias (using the format `alias/alias-name `).
|
1064
1070
|
#
|
1065
1071
|
# @option params [Array<Types::Tag>] :tags
|
1066
|
-
# A
|
1072
|
+
# A list of tag key and value pairs associated with this build project.
|
1067
1073
|
#
|
1068
1074
|
# These tags are available for use by AWS services that support AWS
|
1069
1075
|
# CodeBuild build project tags.
|
@@ -1303,7 +1309,7 @@ module Aws::CodeBuild
|
|
1303
1309
|
# resp.project.webhook.branch_filter #=> String
|
1304
1310
|
# resp.project.webhook.filter_groups #=> Array
|
1305
1311
|
# resp.project.webhook.filter_groups[0] #=> Array
|
1306
|
-
# resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH"
|
1312
|
+
# resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
|
1307
1313
|
# resp.project.webhook.filter_groups[0][0].pattern #=> String
|
1308
1314
|
# resp.project.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
|
1309
1315
|
# resp.project.webhook.last_modified_secret #=> Time
|
@@ -1349,6 +1355,12 @@ module Aws::CodeBuild
|
|
1349
1355
|
# A `ReportExportConfig` object that contains information about where
|
1350
1356
|
# the report group test results are exported.
|
1351
1357
|
#
|
1358
|
+
# @option params [Array<Types::Tag>] :tags
|
1359
|
+
# A list of tag key and value pairs associated with this report group.
|
1360
|
+
#
|
1361
|
+
# These tags are available for use by AWS services that support AWS
|
1362
|
+
# CodeBuild report group tags.
|
1363
|
+
#
|
1352
1364
|
# @return [Types::CreateReportGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1353
1365
|
#
|
1354
1366
|
# * {Types::CreateReportGroupOutput#report_group #report_group} => Types::ReportGroup
|
@@ -1368,6 +1380,12 @@ module Aws::CodeBuild
|
|
1368
1380
|
# encryption_disabled: false,
|
1369
1381
|
# },
|
1370
1382
|
# },
|
1383
|
+
# tags: [
|
1384
|
+
# {
|
1385
|
+
# key: "KeyInput",
|
1386
|
+
# value: "ValueInput",
|
1387
|
+
# },
|
1388
|
+
# ],
|
1371
1389
|
# })
|
1372
1390
|
#
|
1373
1391
|
# @example Response structure
|
@@ -1383,6 +1401,9 @@ module Aws::CodeBuild
|
|
1383
1401
|
# resp.report_group.export_config.s3_destination.encryption_disabled #=> Boolean
|
1384
1402
|
# resp.report_group.created #=> Time
|
1385
1403
|
# resp.report_group.last_modified #=> Time
|
1404
|
+
# resp.report_group.tags #=> Array
|
1405
|
+
# resp.report_group.tags[0].key #=> String
|
1406
|
+
# resp.report_group.tags[0].value #=> String
|
1386
1407
|
#
|
1387
1408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroup AWS API Documentation
|
1388
1409
|
#
|
@@ -1446,7 +1467,7 @@ module Aws::CodeBuild
|
|
1446
1467
|
# filter_groups: [
|
1447
1468
|
# [
|
1448
1469
|
# {
|
1449
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH
|
1470
|
+
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
1450
1471
|
# pattern: "String", # required
|
1451
1472
|
# exclude_matched_pattern: false,
|
1452
1473
|
# },
|
@@ -1462,7 +1483,7 @@ module Aws::CodeBuild
|
|
1462
1483
|
# resp.webhook.branch_filter #=> String
|
1463
1484
|
# resp.webhook.filter_groups #=> Array
|
1464
1485
|
# resp.webhook.filter_groups[0] #=> Array
|
1465
|
-
# resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH"
|
1486
|
+
# resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
|
1466
1487
|
# resp.webhook.filter_groups[0][0].pattern #=> String
|
1467
1488
|
# resp.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
|
1468
1489
|
# resp.webhook.last_modified_secret #=> Time
|
@@ -1656,6 +1677,8 @@ module Aws::CodeBuild
|
|
1656
1677
|
# * {Types::DescribeTestCasesOutput#next_token #next_token} => String
|
1657
1678
|
# * {Types::DescribeTestCasesOutput#test_cases #test_cases} => Array<Types::TestCase>
|
1658
1679
|
#
|
1680
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1681
|
+
#
|
1659
1682
|
# @example Request syntax with placeholder values
|
1660
1683
|
#
|
1661
1684
|
# resp = client.describe_test_cases({
|
@@ -1818,6 +1841,8 @@ module Aws::CodeBuild
|
|
1818
1841
|
# * {Types::ListBuildsOutput#ids #ids} => Array<String>
|
1819
1842
|
# * {Types::ListBuildsOutput#next_token #next_token} => String
|
1820
1843
|
#
|
1844
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1845
|
+
#
|
1821
1846
|
# @example Request syntax with placeholder values
|
1822
1847
|
#
|
1823
1848
|
# resp = client.list_builds({
|
@@ -1867,6 +1892,8 @@ module Aws::CodeBuild
|
|
1867
1892
|
# * {Types::ListBuildsForProjectOutput#ids #ids} => Array<String>
|
1868
1893
|
# * {Types::ListBuildsForProjectOutput#next_token #next_token} => String
|
1869
1894
|
#
|
1895
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1896
|
+
#
|
1870
1897
|
# @example Request syntax with placeholder values
|
1871
1898
|
#
|
1872
1899
|
# resp = client.list_builds_for_project({
|
@@ -1959,6 +1986,8 @@ module Aws::CodeBuild
|
|
1959
1986
|
# * {Types::ListProjectsOutput#next_token #next_token} => String
|
1960
1987
|
# * {Types::ListProjectsOutput#projects #projects} => Array<String>
|
1961
1988
|
#
|
1989
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1990
|
+
#
|
1962
1991
|
# @example Request syntax with placeholder values
|
1963
1992
|
#
|
1964
1993
|
# resp = client.list_projects({
|
@@ -2018,6 +2047,8 @@ module Aws::CodeBuild
|
|
2018
2047
|
# * {Types::ListReportGroupsOutput#next_token #next_token} => String
|
2019
2048
|
# * {Types::ListReportGroupsOutput#report_groups #report_groups} => Array<String>
|
2020
2049
|
#
|
2050
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2051
|
+
#
|
2021
2052
|
# @example Request syntax with placeholder values
|
2022
2053
|
#
|
2023
2054
|
# resp = client.list_report_groups({
|
@@ -2076,6 +2107,8 @@ module Aws::CodeBuild
|
|
2076
2107
|
# * {Types::ListReportsOutput#next_token #next_token} => String
|
2077
2108
|
# * {Types::ListReportsOutput#reports #reports} => Array<String>
|
2078
2109
|
#
|
2110
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2111
|
+
#
|
2079
2112
|
# @example Request syntax with placeholder values
|
2080
2113
|
#
|
2081
2114
|
# resp = client.list_reports({
|
@@ -2133,6 +2166,8 @@ module Aws::CodeBuild
|
|
2133
2166
|
# * {Types::ListReportsForReportGroupOutput#next_token #next_token} => String
|
2134
2167
|
# * {Types::ListReportsForReportGroupOutput#reports #reports} => Array<String>
|
2135
2168
|
#
|
2169
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2170
|
+
#
|
2136
2171
|
# @example Request syntax with placeholder values
|
2137
2172
|
#
|
2138
2173
|
# resp = client.list_reports_for_report_group({
|
@@ -2199,6 +2234,8 @@ module Aws::CodeBuild
|
|
2199
2234
|
# * {Types::ListSharedProjectsOutput#next_token #next_token} => String
|
2200
2235
|
# * {Types::ListSharedProjectsOutput#projects #projects} => Array<String>
|
2201
2236
|
#
|
2237
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2238
|
+
#
|
2202
2239
|
# @example Request syntax with placeholder values
|
2203
2240
|
#
|
2204
2241
|
# resp = client.list_shared_projects({
|
@@ -2261,6 +2298,8 @@ module Aws::CodeBuild
|
|
2261
2298
|
# * {Types::ListSharedReportGroupsOutput#next_token #next_token} => String
|
2262
2299
|
# * {Types::ListSharedReportGroupsOutput#report_groups #report_groups} => Array<String>
|
2263
2300
|
#
|
2301
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2302
|
+
#
|
2264
2303
|
# @example Request syntax with placeholder values
|
2265
2304
|
#
|
2266
2305
|
# resp = client.list_shared_report_groups({
|
@@ -3003,7 +3042,8 @@ module Aws::CodeBuild
|
|
3003
3042
|
# if available, the CMK's alias (using the format `alias/alias-name `).
|
3004
3043
|
#
|
3005
3044
|
# @option params [Array<Types::Tag>] :tags
|
3006
|
-
#
|
3045
|
+
# An updated list of tag key and value pairs associated with this build
|
3046
|
+
# project.
|
3007
3047
|
#
|
3008
3048
|
# These tags are available for use by AWS services that support AWS
|
3009
3049
|
# CodeBuild build project tags.
|
@@ -3242,7 +3282,7 @@ module Aws::CodeBuild
|
|
3242
3282
|
# resp.project.webhook.branch_filter #=> String
|
3243
3283
|
# resp.project.webhook.filter_groups #=> Array
|
3244
3284
|
# resp.project.webhook.filter_groups[0] #=> Array
|
3245
|
-
# resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH"
|
3285
|
+
# resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
|
3246
3286
|
# resp.project.webhook.filter_groups[0][0].pattern #=> String
|
3247
3287
|
# resp.project.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
|
3248
3288
|
# resp.project.webhook.last_modified_secret #=> Time
|
@@ -3287,6 +3327,13 @@ module Aws::CodeBuild
|
|
3287
3327
|
#
|
3288
3328
|
# * `NO_EXPORT`\: The report results are not exported.
|
3289
3329
|
#
|
3330
|
+
# @option params [Array<Types::Tag>] :tags
|
3331
|
+
# An updated list of tag key and value pairs associated with this report
|
3332
|
+
# group.
|
3333
|
+
#
|
3334
|
+
# These tags are available for use by AWS services that support AWS
|
3335
|
+
# CodeBuild report group tags.
|
3336
|
+
#
|
3290
3337
|
# @return [Types::UpdateReportGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3291
3338
|
#
|
3292
3339
|
# * {Types::UpdateReportGroupOutput#report_group #report_group} => Types::ReportGroup
|
@@ -3305,6 +3352,12 @@ module Aws::CodeBuild
|
|
3305
3352
|
# encryption_disabled: false,
|
3306
3353
|
# },
|
3307
3354
|
# },
|
3355
|
+
# tags: [
|
3356
|
+
# {
|
3357
|
+
# key: "KeyInput",
|
3358
|
+
# value: "ValueInput",
|
3359
|
+
# },
|
3360
|
+
# ],
|
3308
3361
|
# })
|
3309
3362
|
#
|
3310
3363
|
# @example Response structure
|
@@ -3320,6 +3373,9 @@ module Aws::CodeBuild
|
|
3320
3373
|
# resp.report_group.export_config.s3_destination.encryption_disabled #=> Boolean
|
3321
3374
|
# resp.report_group.created #=> Time
|
3322
3375
|
# resp.report_group.last_modified #=> Time
|
3376
|
+
# resp.report_group.tags #=> Array
|
3377
|
+
# resp.report_group.tags[0].key #=> String
|
3378
|
+
# resp.report_group.tags[0].value #=> String
|
3323
3379
|
#
|
3324
3380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroup AWS API Documentation
|
3325
3381
|
#
|
@@ -3373,7 +3429,7 @@ module Aws::CodeBuild
|
|
3373
3429
|
# filter_groups: [
|
3374
3430
|
# [
|
3375
3431
|
# {
|
3376
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH
|
3432
|
+
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
3377
3433
|
# pattern: "String", # required
|
3378
3434
|
# exclude_matched_pattern: false,
|
3379
3435
|
# },
|
@@ -3389,7 +3445,7 @@ module Aws::CodeBuild
|
|
3389
3445
|
# resp.webhook.branch_filter #=> String
|
3390
3446
|
# resp.webhook.filter_groups #=> Array
|
3391
3447
|
# resp.webhook.filter_groups[0] #=> Array
|
3392
|
-
# resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH"
|
3448
|
+
# resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
|
3393
3449
|
# resp.webhook.filter_groups[0][0].pattern #=> String
|
3394
3450
|
# resp.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
|
3395
3451
|
# resp.webhook.last_modified_secret #=> Time
|
@@ -3416,7 +3472,7 @@ module Aws::CodeBuild
|
|
3416
3472
|
params: params,
|
3417
3473
|
config: config)
|
3418
3474
|
context[:gem_name] = 'aws-sdk-codebuild'
|
3419
|
-
context[:gem_version] = '1.
|
3475
|
+
context[:gem_version] = '1.54.0'
|
3420
3476
|
Seahorse::Client::Request.new(handlers, context)
|
3421
3477
|
end
|
3422
3478
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -335,6 +337,7 @@ module Aws::CodeBuild
|
|
335
337
|
CreateReportGroupInput.add_member(:name, Shapes::ShapeRef.new(shape: ReportGroupName, required: true, location_name: "name"))
|
336
338
|
CreateReportGroupInput.add_member(:type, Shapes::ShapeRef.new(shape: ReportType, required: true, location_name: "type"))
|
337
339
|
CreateReportGroupInput.add_member(:export_config, Shapes::ShapeRef.new(shape: ReportExportConfig, required: true, location_name: "exportConfig"))
|
340
|
+
CreateReportGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
338
341
|
CreateReportGroupInput.struct_class = Types::CreateReportGroupInput
|
339
342
|
|
340
343
|
CreateReportGroupOutput.add_member(:report_group, Shapes::ShapeRef.new(shape: ReportGroup, location_name: "reportGroup"))
|
@@ -698,6 +701,7 @@ module Aws::CodeBuild
|
|
698
701
|
ReportGroup.add_member(:export_config, Shapes::ShapeRef.new(shape: ReportExportConfig, location_name: "exportConfig"))
|
699
702
|
ReportGroup.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
|
700
703
|
ReportGroup.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModified"))
|
704
|
+
ReportGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
701
705
|
ReportGroup.struct_class = Types::ReportGroup
|
702
706
|
|
703
707
|
ReportGroupArns.member = Shapes::ShapeRef.new(shape: NonEmptyString)
|
@@ -832,6 +836,7 @@ module Aws::CodeBuild
|
|
832
836
|
|
833
837
|
UpdateReportGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "arn"))
|
834
838
|
UpdateReportGroupInput.add_member(:export_config, Shapes::ShapeRef.new(shape: ReportExportConfig, location_name: "exportConfig"))
|
839
|
+
UpdateReportGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
835
840
|
UpdateReportGroupInput.struct_class = Types::UpdateReportGroupInput
|
836
841
|
|
837
842
|
UpdateReportGroupOutput.add_member(:report_group, Shapes::ShapeRef.new(shape: ReportGroup, location_name: "reportGroup"))
|
@@ -1026,6 +1031,12 @@ module Aws::CodeBuild
|
|
1026
1031
|
o.output = Shapes::ShapeRef.new(shape: DescribeTestCasesOutput)
|
1027
1032
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1028
1033
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1034
|
+
o[:pager] = Aws::Pager.new(
|
1035
|
+
limit_key: "max_results",
|
1036
|
+
tokens: {
|
1037
|
+
"next_token" => "next_token"
|
1038
|
+
}
|
1039
|
+
)
|
1029
1040
|
end)
|
1030
1041
|
|
1031
1042
|
api.add_operation(:get_resource_policy, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1066,6 +1077,11 @@ module Aws::CodeBuild
|
|
1066
1077
|
o.input = Shapes::ShapeRef.new(shape: ListBuildsInput)
|
1067
1078
|
o.output = Shapes::ShapeRef.new(shape: ListBuildsOutput)
|
1068
1079
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1080
|
+
o[:pager] = Aws::Pager.new(
|
1081
|
+
tokens: {
|
1082
|
+
"next_token" => "next_token"
|
1083
|
+
}
|
1084
|
+
)
|
1069
1085
|
end)
|
1070
1086
|
|
1071
1087
|
api.add_operation(:list_builds_for_project, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1076,6 +1092,11 @@ module Aws::CodeBuild
|
|
1076
1092
|
o.output = Shapes::ShapeRef.new(shape: ListBuildsForProjectOutput)
|
1077
1093
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1078
1094
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1095
|
+
o[:pager] = Aws::Pager.new(
|
1096
|
+
tokens: {
|
1097
|
+
"next_token" => "next_token"
|
1098
|
+
}
|
1099
|
+
)
|
1079
1100
|
end)
|
1080
1101
|
|
1081
1102
|
api.add_operation(:list_curated_environment_images, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1093,6 +1114,11 @@ module Aws::CodeBuild
|
|
1093
1114
|
o.input = Shapes::ShapeRef.new(shape: ListProjectsInput)
|
1094
1115
|
o.output = Shapes::ShapeRef.new(shape: ListProjectsOutput)
|
1095
1116
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1117
|
+
o[:pager] = Aws::Pager.new(
|
1118
|
+
tokens: {
|
1119
|
+
"next_token" => "next_token"
|
1120
|
+
}
|
1121
|
+
)
|
1096
1122
|
end)
|
1097
1123
|
|
1098
1124
|
api.add_operation(:list_report_groups, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1102,6 +1128,12 @@ module Aws::CodeBuild
|
|
1102
1128
|
o.input = Shapes::ShapeRef.new(shape: ListReportGroupsInput)
|
1103
1129
|
o.output = Shapes::ShapeRef.new(shape: ListReportGroupsOutput)
|
1104
1130
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1131
|
+
o[:pager] = Aws::Pager.new(
|
1132
|
+
limit_key: "max_results",
|
1133
|
+
tokens: {
|
1134
|
+
"next_token" => "next_token"
|
1135
|
+
}
|
1136
|
+
)
|
1105
1137
|
end)
|
1106
1138
|
|
1107
1139
|
api.add_operation(:list_reports, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1111,6 +1143,12 @@ module Aws::CodeBuild
|
|
1111
1143
|
o.input = Shapes::ShapeRef.new(shape: ListReportsInput)
|
1112
1144
|
o.output = Shapes::ShapeRef.new(shape: ListReportsOutput)
|
1113
1145
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1146
|
+
o[:pager] = Aws::Pager.new(
|
1147
|
+
limit_key: "max_results",
|
1148
|
+
tokens: {
|
1149
|
+
"next_token" => "next_token"
|
1150
|
+
}
|
1151
|
+
)
|
1114
1152
|
end)
|
1115
1153
|
|
1116
1154
|
api.add_operation(:list_reports_for_report_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1121,6 +1159,12 @@ module Aws::CodeBuild
|
|
1121
1159
|
o.output = Shapes::ShapeRef.new(shape: ListReportsForReportGroupOutput)
|
1122
1160
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1123
1161
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1162
|
+
o[:pager] = Aws::Pager.new(
|
1163
|
+
limit_key: "max_results",
|
1164
|
+
tokens: {
|
1165
|
+
"next_token" => "next_token"
|
1166
|
+
}
|
1167
|
+
)
|
1124
1168
|
end)
|
1125
1169
|
|
1126
1170
|
api.add_operation(:list_shared_projects, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1130,6 +1174,12 @@ module Aws::CodeBuild
|
|
1130
1174
|
o.input = Shapes::ShapeRef.new(shape: ListSharedProjectsInput)
|
1131
1175
|
o.output = Shapes::ShapeRef.new(shape: ListSharedProjectsOutput)
|
1132
1176
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1177
|
+
o[:pager] = Aws::Pager.new(
|
1178
|
+
limit_key: "max_results",
|
1179
|
+
tokens: {
|
1180
|
+
"next_token" => "next_token"
|
1181
|
+
}
|
1182
|
+
)
|
1133
1183
|
end)
|
1134
1184
|
|
1135
1185
|
api.add_operation(:list_shared_report_groups, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1139,6 +1189,12 @@ module Aws::CodeBuild
|
|
1139
1189
|
o.input = Shapes::ShapeRef.new(shape: ListSharedReportGroupsInput)
|
1140
1190
|
o.output = Shapes::ShapeRef.new(shape: ListSharedReportGroupsOutput)
|
1141
1191
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1192
|
+
o[:pager] = Aws::Pager.new(
|
1193
|
+
limit_key: "max_results",
|
1194
|
+
tokens: {
|
1195
|
+
"next_token" => "next_token"
|
1196
|
+
}
|
1197
|
+
)
|
1142
1198
|
end)
|
1143
1199
|
|
1144
1200
|
api.add_operation(:list_source_credentials, Seahorse::Model::Operation.new.tap do |o|
|