aws-sdk-codebuild 1.43.0 → 1.44.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 +18 -11
- data/lib/aws-sdk-codebuild/client_api.rb +2 -0
- data/lib/aws-sdk-codebuild/types.rb +35 -12
- 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: 59c74b0c601ae19c8e8bbeac6037afb499737e50
|
4
|
+
data.tar.gz: 68baab04c993f50bc498bb64dee532a3601697b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd0bd1911f8b3350b37eba9740dbf0a2a1a5b3ffe17fe6800392d19efcadbd95644c23cc01cedeeb7811092e6f9e9be7c42a804a8166ad0d1ebbbc35f314bd3f
|
7
|
+
data.tar.gz: 3e9dc907d7051fdcb871e84bf5cc8abde9e049e12be58135bbf5ca18a52ab89b9745dc5d8f0d1b859be75a5942b1fbd90de1b28cfdc5df7a229197aa733de262
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -646,6 +646,8 @@ module Aws::CodeBuild
|
|
646
646
|
# resp.builds[0].logs.stream_name #=> String
|
647
647
|
# resp.builds[0].logs.deep_link #=> String
|
648
648
|
# resp.builds[0].logs.s3_deep_link #=> String
|
649
|
+
# resp.builds[0].logs.cloud_watch_logs_arn #=> String
|
650
|
+
# resp.builds[0].logs.s3_logs_arn #=> String
|
649
651
|
# resp.builds[0].logs.cloud_watch_logs.status #=> String, one of "ENABLED", "DISABLED"
|
650
652
|
# resp.builds[0].logs.cloud_watch_logs.group_name #=> String
|
651
653
|
# resp.builds[0].logs.cloud_watch_logs.stream_name #=> String
|
@@ -1232,7 +1234,8 @@ module Aws::CodeBuild
|
|
1232
1234
|
req.send_request(options)
|
1233
1235
|
end
|
1234
1236
|
|
1235
|
-
# Deletes a build project.
|
1237
|
+
# Deletes a build project. When you delete a project, its builds are not
|
1238
|
+
# deleted.
|
1236
1239
|
#
|
1237
1240
|
# @option params [required, String] :name
|
1238
1241
|
# The name of the build project.
|
@@ -1398,9 +1401,9 @@ module Aws::CodeBuild
|
|
1398
1401
|
# @option params [String] :next_token
|
1399
1402
|
# During a previous call, if there are more than 100 items in the list,
|
1400
1403
|
# only the first 100 items are returned, along with a unique string
|
1401
|
-
# called a *
|
1402
|
-
#
|
1403
|
-
#
|
1404
|
+
# called a *nextToken*. To get the next batch of items in the list, call
|
1405
|
+
# this operation again, adding the next token to the call. To get all of
|
1406
|
+
# the items in the list, keep calling this operation with each
|
1404
1407
|
# subsequent next token that is returned, until no more next tokens are
|
1405
1408
|
# returned.
|
1406
1409
|
#
|
@@ -1447,9 +1450,9 @@ module Aws::CodeBuild
|
|
1447
1450
|
# @option params [String] :next_token
|
1448
1451
|
# During a previous call, if there are more than 100 items in the list,
|
1449
1452
|
# only the first 100 items are returned, along with a unique string
|
1450
|
-
# called a *
|
1451
|
-
#
|
1452
|
-
#
|
1453
|
+
# called a *nextToken*. To get the next batch of items in the list, call
|
1454
|
+
# this operation again, adding the next token to the call. To get all of
|
1455
|
+
# the items in the list, keep calling this operation with each
|
1453
1456
|
# subsequent next token that is returned, until no more next tokens are
|
1454
1457
|
# returned.
|
1455
1458
|
#
|
@@ -1539,9 +1542,9 @@ module Aws::CodeBuild
|
|
1539
1542
|
# @option params [String] :next_token
|
1540
1543
|
# During a previous call, if there are more than 100 items in the list,
|
1541
1544
|
# only the first 100 items are returned, along with a unique string
|
1542
|
-
# called a *
|
1543
|
-
#
|
1544
|
-
#
|
1545
|
+
# called a *nextToken*. To get the next batch of items in the list, call
|
1546
|
+
# this operation again, adding the next token to the call. To get all of
|
1547
|
+
# the items in the list, keep calling this operation with each
|
1545
1548
|
# subsequent next token that is returned, until no more next tokens are
|
1546
1549
|
# returned.
|
1547
1550
|
#
|
@@ -1948,6 +1951,8 @@ module Aws::CodeBuild
|
|
1948
1951
|
# resp.build.logs.stream_name #=> String
|
1949
1952
|
# resp.build.logs.deep_link #=> String
|
1950
1953
|
# resp.build.logs.s3_deep_link #=> String
|
1954
|
+
# resp.build.logs.cloud_watch_logs_arn #=> String
|
1955
|
+
# resp.build.logs.s3_logs_arn #=> String
|
1951
1956
|
# resp.build.logs.cloud_watch_logs.status #=> String, one of "ENABLED", "DISABLED"
|
1952
1957
|
# resp.build.logs.cloud_watch_logs.group_name #=> String
|
1953
1958
|
# resp.build.logs.cloud_watch_logs.stream_name #=> String
|
@@ -2073,6 +2078,8 @@ module Aws::CodeBuild
|
|
2073
2078
|
# resp.build.logs.stream_name #=> String
|
2074
2079
|
# resp.build.logs.deep_link #=> String
|
2075
2080
|
# resp.build.logs.s3_deep_link #=> String
|
2081
|
+
# resp.build.logs.cloud_watch_logs_arn #=> String
|
2082
|
+
# resp.build.logs.s3_logs_arn #=> String
|
2076
2083
|
# resp.build.logs.cloud_watch_logs.status #=> String, one of "ENABLED", "DISABLED"
|
2077
2084
|
# resp.build.logs.cloud_watch_logs.group_name #=> String
|
2078
2085
|
# resp.build.logs.cloud_watch_logs.stream_name #=> String
|
@@ -2539,7 +2546,7 @@ module Aws::CodeBuild
|
|
2539
2546
|
params: params,
|
2540
2547
|
config: config)
|
2541
2548
|
context[:gem_name] = 'aws-sdk-codebuild'
|
2542
|
-
context[:gem_version] = '1.
|
2549
|
+
context[:gem_version] = '1.44.0'
|
2543
2550
|
Seahorse::Client::Request.new(handlers, context)
|
2544
2551
|
end
|
2545
2552
|
|
@@ -378,6 +378,8 @@ module Aws::CodeBuild
|
|
378
378
|
LogsLocation.add_member(:stream_name, Shapes::ShapeRef.new(shape: String, location_name: "streamName"))
|
379
379
|
LogsLocation.add_member(:deep_link, Shapes::ShapeRef.new(shape: String, location_name: "deepLink"))
|
380
380
|
LogsLocation.add_member(:s3_deep_link, Shapes::ShapeRef.new(shape: String, location_name: "s3DeepLink"))
|
381
|
+
LogsLocation.add_member(:cloud_watch_logs_arn, Shapes::ShapeRef.new(shape: String, location_name: "cloudWatchLogsArn"))
|
382
|
+
LogsLocation.add_member(:s3_logs_arn, Shapes::ShapeRef.new(shape: String, location_name: "s3LogsArn"))
|
381
383
|
LogsLocation.add_member(:cloud_watch_logs, Shapes::ShapeRef.new(shape: CloudWatchLogsConfig, location_name: "cloudWatchLogs"))
|
382
384
|
LogsLocation.add_member(:s3_logs, Shapes::ShapeRef.new(shape: S3LogsConfig, location_name: "s3Logs"))
|
383
385
|
LogsLocation.struct_class = Types::LogsLocation
|
@@ -1240,7 +1240,7 @@ module Aws::CodeBuild
|
|
1240
1240
|
# @!attribute [rw] next_token
|
1241
1241
|
# During a previous call, if there are more than 100 items in the
|
1242
1242
|
# list, only the first 100 items are returned, along with a unique
|
1243
|
-
# string called a *
|
1243
|
+
# string called a *nextToken*. To get the next batch of items in the
|
1244
1244
|
# list, call this operation again, adding the next token to the call.
|
1245
1245
|
# To get all of the items in the list, keep calling this operation
|
1246
1246
|
# with each subsequent next token that is returned, until no more next
|
@@ -1263,9 +1263,9 @@ module Aws::CodeBuild
|
|
1263
1263
|
#
|
1264
1264
|
# @!attribute [rw] next_token
|
1265
1265
|
# If there are more than 100 items in the list, only the first 100
|
1266
|
-
# items are returned, along with a unique string called a *
|
1267
|
-
#
|
1268
|
-
#
|
1266
|
+
# items are returned, along with a unique string called a *nextToken*.
|
1267
|
+
# To get the next batch of items in the list, call this operation
|
1268
|
+
# again, adding the next token to the call.
|
1269
1269
|
# @return [String]
|
1270
1270
|
#
|
1271
1271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListBuildsForProjectOutput AWS API Documentation
|
@@ -1295,7 +1295,7 @@ module Aws::CodeBuild
|
|
1295
1295
|
# @!attribute [rw] next_token
|
1296
1296
|
# During a previous call, if there are more than 100 items in the
|
1297
1297
|
# list, only the first 100 items are returned, along with a unique
|
1298
|
-
# string called a *
|
1298
|
+
# string called a *nextToken*. To get the next batch of items in the
|
1299
1299
|
# list, call this operation again, adding the next token to the call.
|
1300
1300
|
# To get all of the items in the list, keep calling this operation
|
1301
1301
|
# with each subsequent next token that is returned, until no more next
|
@@ -1316,9 +1316,9 @@ module Aws::CodeBuild
|
|
1316
1316
|
#
|
1317
1317
|
# @!attribute [rw] next_token
|
1318
1318
|
# If there are more than 100 items in the list, only the first 100
|
1319
|
-
# items are returned, along with a unique string called a *
|
1320
|
-
#
|
1321
|
-
#
|
1319
|
+
# items are returned, along with a unique string called a *nextToken*.
|
1320
|
+
# To get the next batch of items in the list, call this operation
|
1321
|
+
# again, adding the next token to the call.
|
1322
1322
|
# @return [String]
|
1323
1323
|
#
|
1324
1324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListBuildsOutput AWS API Documentation
|
@@ -1386,7 +1386,7 @@ module Aws::CodeBuild
|
|
1386
1386
|
# @!attribute [rw] next_token
|
1387
1387
|
# During a previous call, if there are more than 100 items in the
|
1388
1388
|
# list, only the first 100 items are returned, along with a unique
|
1389
|
-
# string called a *
|
1389
|
+
# string called a *nextToken*. To get the next batch of items in the
|
1390
1390
|
# list, call this operation again, adding the next token to the call.
|
1391
1391
|
# To get all of the items in the list, keep calling this operation
|
1392
1392
|
# with each subsequent next token that is returned, until no more next
|
@@ -1404,9 +1404,9 @@ module Aws::CodeBuild
|
|
1404
1404
|
|
1405
1405
|
# @!attribute [rw] next_token
|
1406
1406
|
# If there are more than 100 items in the list, only the first 100
|
1407
|
-
# items are returned, along with a unique string called a *
|
1408
|
-
#
|
1409
|
-
#
|
1407
|
+
# items are returned, along with a unique string called a *nextToken*.
|
1408
|
+
# To get the next batch of items in the list, call this operation
|
1409
|
+
# again, adding the next token to the call.
|
1410
1410
|
# @return [String]
|
1411
1411
|
#
|
1412
1412
|
# @!attribute [rw] projects
|
@@ -1496,6 +1496,27 @@ module Aws::CodeBuild
|
|
1496
1496
|
# The URL to a build log in an S3 bucket.
|
1497
1497
|
# @return [String]
|
1498
1498
|
#
|
1499
|
+
# @!attribute [rw] cloud_watch_logs_arn
|
1500
|
+
# The ARN of Amazon CloudWatch Logs for a build project. Its format is
|
1501
|
+
# `arn:$\{Partition\}:logs:$\{Region\}:$\{Account\}:log-group:$\{LogGroupName\}:log-stream:$\{LogStreamName\}`.
|
1502
|
+
# For more information, see [Resources Defined by Amazon CloudWatch
|
1503
|
+
# Logs][1].
|
1504
|
+
#
|
1505
|
+
#
|
1506
|
+
#
|
1507
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazoncloudwatchlogs.html#amazoncloudwatchlogs-resources-for-iam-policies
|
1508
|
+
# @return [String]
|
1509
|
+
#
|
1510
|
+
# @!attribute [rw] s3_logs_arn
|
1511
|
+
# The ARN of S3 logs for a build project. Its format is
|
1512
|
+
# `arn:$\{Partition\}:s3:::$\{BucketName\}/$\{ObjectName\}`. For more
|
1513
|
+
# information, see [Resources Defined by Amazon S3][1].
|
1514
|
+
#
|
1515
|
+
#
|
1516
|
+
#
|
1517
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html#amazons3-resources-for-iam-policies
|
1518
|
+
# @return [String]
|
1519
|
+
#
|
1499
1520
|
# @!attribute [rw] cloud_watch_logs
|
1500
1521
|
# Information about Amazon CloudWatch Logs for a build project.
|
1501
1522
|
# @return [Types::CloudWatchLogsConfig]
|
@@ -1511,6 +1532,8 @@ module Aws::CodeBuild
|
|
1511
1532
|
:stream_name,
|
1512
1533
|
:deep_link,
|
1513
1534
|
:s3_deep_link,
|
1535
|
+
:cloud_watch_logs_arn,
|
1536
|
+
:s3_logs_arn,
|
1514
1537
|
:cloud_watch_logs,
|
1515
1538
|
:s3_logs)
|
1516
1539
|
include Aws::Structure
|
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.44.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: 2019-11-
|
11
|
+
date: 2019-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|