aws-sdk-codebuild 1.50.0 → 1.51.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50e12aa990e733dc8d7dbb37bbcfe4c2b7affef2b5c8e07992dda78316c869bf
4
- data.tar.gz: de2f3bef527224fcd735b972304ef6ebb068a4f6947636b8564a2ca036a296a0
3
+ metadata.gz: d269ea666e7760ed3a4980064dae71ebb7b72ade37145600141434cda4d2b9ae
4
+ data.tar.gz: 743dbdcd5ddd5a3cc46acaa343e895e23dbb212890aad327da9f4bd3bace7572
5
5
  SHA512:
6
- metadata.gz: c808390458783acb61a3e4649a377364eb9896cda08b7795d08ecc9edbd28db25c38814e70ed163a3c3c64212b140cf02773d097b0719d004854c050f23cffdd
7
- data.tar.gz: c134e71aa48545a1df8b268b18f3279dd5f4b9421bbf596eb9ccec2abe9ff431fdcc8aa93813d7fef41e97f4cfea8ad22e69e9d05eef60687d6fe2d669fbb450
6
+ metadata.gz: 74b3d7b2709fd64b34b762141554cc16702d5eed9f852856228e6e2439007b88bbd61923dfe1bae3fbf5e8a414475262558502fb35384c71060c80d9ad3bffb2
7
+ data.tar.gz: 330a834624a0001c183d5bacf3e56e48c6dd82b51cfc2a052d2f7e711f49aa14c851a278ef582f319713d5a6c7bb677c1153568b2c482d13b11767ba2fed7b6b
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-codebuild/customizations'
45
45
  # @service
46
46
  module Aws::CodeBuild
47
47
 
48
- GEM_VERSION = '1.50.0'
48
+ GEM_VERSION = '1.51.0'
49
49
 
50
50
  end
@@ -908,6 +908,9 @@ module Aws::CodeBuild
908
908
  # resp.report_groups[0].export_config.s3_destination.encryption_disabled #=> Boolean
909
909
  # resp.report_groups[0].created #=> Time
910
910
  # resp.report_groups[0].last_modified #=> Time
911
+ # resp.report_groups[0].tags #=> Array
912
+ # resp.report_groups[0].tags[0].key #=> String
913
+ # resp.report_groups[0].tags[0].value #=> String
911
914
  # resp.report_groups_not_found #=> Array
912
915
  # resp.report_groups_not_found[0] #=> String
913
916
  #
@@ -1062,7 +1065,7 @@ module Aws::CodeBuild
1062
1065
  # if available, the CMK's alias (using the format `alias/alias-name `).
1063
1066
  #
1064
1067
  # @option params [Array<Types::Tag>] :tags
1065
- # A set of tags for this build project.
1068
+ # A list of tag key and value pairs associated with this build project.
1066
1069
  #
1067
1070
  # These tags are available for use by AWS services that support AWS
1068
1071
  # CodeBuild build project tags.
@@ -1348,6 +1351,12 @@ module Aws::CodeBuild
1348
1351
  # A `ReportExportConfig` object that contains information about where
1349
1352
  # the report group test results are exported.
1350
1353
  #
1354
+ # @option params [Array<Types::Tag>] :tags
1355
+ # A list of tag key and value pairs associated with this report group.
1356
+ #
1357
+ # These tags are available for use by AWS services that support AWS
1358
+ # CodeBuild report group tags.
1359
+ #
1351
1360
  # @return [Types::CreateReportGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1352
1361
  #
1353
1362
  # * {Types::CreateReportGroupOutput#report_group #report_group} => Types::ReportGroup
@@ -1367,6 +1376,12 @@ module Aws::CodeBuild
1367
1376
  # encryption_disabled: false,
1368
1377
  # },
1369
1378
  # },
1379
+ # tags: [
1380
+ # {
1381
+ # key: "KeyInput",
1382
+ # value: "ValueInput",
1383
+ # },
1384
+ # ],
1370
1385
  # })
1371
1386
  #
1372
1387
  # @example Response structure
@@ -1382,6 +1397,9 @@ module Aws::CodeBuild
1382
1397
  # resp.report_group.export_config.s3_destination.encryption_disabled #=> Boolean
1383
1398
  # resp.report_group.created #=> Time
1384
1399
  # resp.report_group.last_modified #=> Time
1400
+ # resp.report_group.tags #=> Array
1401
+ # resp.report_group.tags[0].key #=> String
1402
+ # resp.report_group.tags[0].value #=> String
1385
1403
  #
1386
1404
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroup AWS API Documentation
1387
1405
  #
@@ -2530,7 +2548,7 @@ module Aws::CodeBuild
2530
2548
  # @option params [String] :idempotency_token
2531
2549
  # A unique, case sensitive identifier you provide to ensure the
2532
2550
  # idempotency of the StartBuild request. The token is included in the
2533
- # StartBuild request and is valid for 5 minutes. If you repeat the
2551
+ # StartBuild request and is valid for 12 hours. If you repeat the
2534
2552
  # StartBuild request with the same token, but change a parameter, AWS
2535
2553
  # CodeBuild returns a parameter mismatch error.
2536
2554
  #
@@ -3020,7 +3038,8 @@ module Aws::CodeBuild
3020
3038
  # if available, the CMK's alias (using the format `alias/alias-name `).
3021
3039
  #
3022
3040
  # @option params [Array<Types::Tag>] :tags
3023
- # The replacement set of tags for this build project.
3041
+ # An updated list of tag key and value pairs associated with this build
3042
+ # project.
3024
3043
  #
3025
3044
  # These tags are available for use by AWS services that support AWS
3026
3045
  # CodeBuild build project tags.
@@ -3304,6 +3323,13 @@ module Aws::CodeBuild
3304
3323
  #
3305
3324
  # * `NO_EXPORT`\: The report results are not exported.
3306
3325
  #
3326
+ # @option params [Array<Types::Tag>] :tags
3327
+ # An updated list of tag key and value pairs associated with this report
3328
+ # group.
3329
+ #
3330
+ # These tags are available for use by AWS services that support AWS
3331
+ # CodeBuild report group tags.
3332
+ #
3307
3333
  # @return [Types::UpdateReportGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3308
3334
  #
3309
3335
  # * {Types::UpdateReportGroupOutput#report_group #report_group} => Types::ReportGroup
@@ -3322,6 +3348,12 @@ module Aws::CodeBuild
3322
3348
  # encryption_disabled: false,
3323
3349
  # },
3324
3350
  # },
3351
+ # tags: [
3352
+ # {
3353
+ # key: "KeyInput",
3354
+ # value: "ValueInput",
3355
+ # },
3356
+ # ],
3325
3357
  # })
3326
3358
  #
3327
3359
  # @example Response structure
@@ -3337,6 +3369,9 @@ module Aws::CodeBuild
3337
3369
  # resp.report_group.export_config.s3_destination.encryption_disabled #=> Boolean
3338
3370
  # resp.report_group.created #=> Time
3339
3371
  # resp.report_group.last_modified #=> Time
3372
+ # resp.report_group.tags #=> Array
3373
+ # resp.report_group.tags[0].key #=> String
3374
+ # resp.report_group.tags[0].value #=> String
3340
3375
  #
3341
3376
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroup AWS API Documentation
3342
3377
  #
@@ -3433,7 +3468,7 @@ module Aws::CodeBuild
3433
3468
  params: params,
3434
3469
  config: config)
3435
3470
  context[:gem_name] = 'aws-sdk-codebuild'
3436
- context[:gem_version] = '1.50.0'
3471
+ context[:gem_version] = '1.51.0'
3437
3472
  Seahorse::Client::Request.new(handlers, context)
3438
3473
  end
3439
3474
 
@@ -335,6 +335,7 @@ module Aws::CodeBuild
335
335
  CreateReportGroupInput.add_member(:name, Shapes::ShapeRef.new(shape: ReportGroupName, required: true, location_name: "name"))
336
336
  CreateReportGroupInput.add_member(:type, Shapes::ShapeRef.new(shape: ReportType, required: true, location_name: "type"))
337
337
  CreateReportGroupInput.add_member(:export_config, Shapes::ShapeRef.new(shape: ReportExportConfig, required: true, location_name: "exportConfig"))
338
+ CreateReportGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
338
339
  CreateReportGroupInput.struct_class = Types::CreateReportGroupInput
339
340
 
340
341
  CreateReportGroupOutput.add_member(:report_group, Shapes::ShapeRef.new(shape: ReportGroup, location_name: "reportGroup"))
@@ -698,6 +699,7 @@ module Aws::CodeBuild
698
699
  ReportGroup.add_member(:export_config, Shapes::ShapeRef.new(shape: ReportExportConfig, location_name: "exportConfig"))
699
700
  ReportGroup.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
700
701
  ReportGroup.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModified"))
702
+ ReportGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
701
703
  ReportGroup.struct_class = Types::ReportGroup
702
704
 
703
705
  ReportGroupArns.member = Shapes::ShapeRef.new(shape: NonEmptyString)
@@ -832,6 +834,7 @@ module Aws::CodeBuild
832
834
 
833
835
  UpdateReportGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "arn"))
834
836
  UpdateReportGroupInput.add_member(:export_config, Shapes::ShapeRef.new(shape: ReportExportConfig, location_name: "exportConfig"))
837
+ UpdateReportGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
835
838
  UpdateReportGroupInput.struct_class = Types::UpdateReportGroupInput
836
839
 
837
840
  UpdateReportGroupOutput.add_member(:report_group, Shapes::ShapeRef.new(shape: ReportGroup, location_name: "reportGroup"))
@@ -882,7 +882,8 @@ module Aws::CodeBuild
882
882
  # @return [String]
883
883
  #
884
884
  # @!attribute [rw] tags
885
- # A set of tags for this build project.
885
+ # A list of tag key and value pairs associated with this build
886
+ # project.
886
887
  #
887
888
  # These tags are available for use by AWS services that support AWS
888
889
  # CodeBuild build project tags.
@@ -963,6 +964,12 @@ module Aws::CodeBuild
963
964
  # encryption_disabled: false,
964
965
  # },
965
966
  # },
967
+ # tags: [
968
+ # {
969
+ # key: "KeyInput",
970
+ # value: "ValueInput",
971
+ # },
972
+ # ],
966
973
  # }
967
974
  #
968
975
  # @!attribute [rw] name
@@ -978,12 +985,20 @@ module Aws::CodeBuild
978
985
  # the report group test results are exported.
979
986
  # @return [Types::ReportExportConfig]
980
987
  #
988
+ # @!attribute [rw] tags
989
+ # A list of tag key and value pairs associated with this report group.
990
+ #
991
+ # These tags are available for use by AWS services that support AWS
992
+ # CodeBuild report group tags.
993
+ # @return [Array<Types::Tag>]
994
+ #
981
995
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroupInput AWS API Documentation
982
996
  #
983
997
  class CreateReportGroupInput < Struct.new(
984
998
  :name,
985
999
  :type,
986
- :export_config)
1000
+ :export_config,
1001
+ :tags)
987
1002
  include Aws::Structure
988
1003
  end
989
1004
 
@@ -2420,7 +2435,8 @@ module Aws::CodeBuild
2420
2435
  # @return [String]
2421
2436
  #
2422
2437
  # @!attribute [rw] tags
2423
- # The tags for this build project.
2438
+ # A list of tag key and value pairs associated with this build
2439
+ # project.
2424
2440
  #
2425
2441
  # These tags are available for use by AWS services that support AWS
2426
2442
  # CodeBuild build project tags.
@@ -3485,6 +3501,13 @@ module Aws::CodeBuild
3485
3501
  # The date and time this `ReportGroup` was last modified.
3486
3502
  # @return [Time]
3487
3503
  #
3504
+ # @!attribute [rw] tags
3505
+ # A list of tag key and value pairs associated with this report group.
3506
+ #
3507
+ # These tags are available for use by AWS services that support AWS
3508
+ # CodeBuild report group tags.
3509
+ # @return [Array<Types::Tag>]
3510
+ #
3488
3511
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ReportGroup AWS API Documentation
3489
3512
  #
3490
3513
  class ReportGroup < Struct.new(
@@ -3493,7 +3516,8 @@ module Aws::CodeBuild
3493
3516
  :type,
3494
3517
  :export_config,
3495
3518
  :created,
3496
- :last_modified)
3519
+ :last_modified,
3520
+ :tags)
3497
3521
  include Aws::Structure
3498
3522
  end
3499
3523
 
@@ -3964,7 +3988,7 @@ module Aws::CodeBuild
3964
3988
  # @!attribute [rw] idempotency_token
3965
3989
  # A unique, case sensitive identifier you provide to ensure the
3966
3990
  # idempotency of the StartBuild request. The token is included in the
3967
- # StartBuild request and is valid for 5 minutes. If you repeat the
3991
+ # StartBuild request and is valid for 12 hours. If you repeat the
3968
3992
  # StartBuild request with the same token, but change a parameter, AWS
3969
3993
  # CodeBuild returns a parameter mismatch error.
3970
3994
  # @return [String]
@@ -4449,7 +4473,8 @@ module Aws::CodeBuild
4449
4473
  # @return [String]
4450
4474
  #
4451
4475
  # @!attribute [rw] tags
4452
- # The replacement set of tags for this build project.
4476
+ # An updated list of tag key and value pairs associated with this
4477
+ # build project.
4453
4478
  #
4454
4479
  # These tags are available for use by AWS services that support AWS
4455
4480
  # CodeBuild build project tags.
@@ -4528,6 +4553,12 @@ module Aws::CodeBuild
4528
4553
  # encryption_disabled: false,
4529
4554
  # },
4530
4555
  # },
4556
+ # tags: [
4557
+ # {
4558
+ # key: "KeyInput",
4559
+ # value: "ValueInput",
4560
+ # },
4561
+ # ],
4531
4562
  # }
4532
4563
  #
4533
4564
  # @!attribute [rw] arn
@@ -4542,11 +4573,20 @@ module Aws::CodeBuild
4542
4573
  # * `NO_EXPORT`\: The report results are not exported.
4543
4574
  # @return [Types::ReportExportConfig]
4544
4575
  #
4576
+ # @!attribute [rw] tags
4577
+ # An updated list of tag key and value pairs associated with this
4578
+ # report group.
4579
+ #
4580
+ # These tags are available for use by AWS services that support AWS
4581
+ # CodeBuild report group tags.
4582
+ # @return [Array<Types::Tag>]
4583
+ #
4545
4584
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroupInput AWS API Documentation
4546
4585
  #
4547
4586
  class UpdateReportGroupInput < Struct.new(
4548
4587
  :arn,
4549
- :export_config)
4588
+ :export_config,
4589
+ :tags)
4550
4590
  include Aws::Structure
4551
4591
  end
4552
4592
 
@@ -4731,9 +4771,9 @@ module Aws::CodeBuild
4731
4771
  # }
4732
4772
  #
4733
4773
  # @!attribute [rw] type
4734
- # The type of webhook filter. There are six webhook filter types:
4735
- # `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, `FILE_PATH`,
4736
- # and `COMMIT_MESSAGE`.
4774
+ # The type of webhook filter. There are five webhook filter types:
4775
+ # `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, and
4776
+ # `FILE_PATH`.
4737
4777
  #
4738
4778
  # EVENT
4739
4779
  #
@@ -4780,20 +4820,7 @@ module Aws::CodeBuild
4780
4820
  # : A webhook triggers a build when the path of a changed file matches
4781
4821
  # the regular expression `pattern`.
4782
4822
  #
4783
- # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
4784
- # events. Also works with GitHub Enterprise push events, but does
4785
- # not work with GitHub Enterprise pull request events.
4786
- #
4787
- # </note>
4788
- #
4789
- # COMMIT\_MESSAGE
4790
- #
4791
- # : A webhook triggers a build when the head commit message matches
4792
- # the regular expression `pattern`.
4793
- #
4794
- # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
4795
- # events. Also works with GitHub Enterprise push events, but does
4796
- # not work with GitHub Enterprise pull request events.
4823
+ # <note markdown="1"> Works with GitHub and GitHub Enterprise push events only.
4797
4824
  #
4798
4825
  # </note>
4799
4826
  # @return [String]
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.50.0
4
+ version: 1.51.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: 2020-05-07 00:00:00.000000000 Z
11
+ date: 2020-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core