aws-sdk-codepipeline 1.18.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a455beddc6ff67e3dc0451aa24fae7532bf50f1
4
- data.tar.gz: 55e0cd4b58d82930c2a1f33bf9fa25d41cff4743
3
+ metadata.gz: 2518c7b16257d5810cda3a88d336455bb1939081
4
+ data.tar.gz: 72fced213f32b251becf0c8e0054a1797a9bb420
5
5
  SHA512:
6
- metadata.gz: 113d72e7a8a8bd44360c3e0985b48bee45ec15dfa09938f36b64c731abeb7381f47c4b5b1656734cdff1693de2be34c895c8dc33e81a13784d727be4c2e67e5b
7
- data.tar.gz: 2aa974984d0d9d0d1ce0b08fc2225eac0268e5938c900073815bcd01914e1f96cec7b163b8b979284d5d749bd5b7c4b3aa168cbf1402ec793f44c3194634c14c
6
+ metadata.gz: db17c17249be7abcf21ee8576c9d89cd850a28f87733f59e75f784013fdd8e9e5e7bfc035fceb2ae48da53e439c22b6fb2ee5ed560c0e998b5402f21dcda9228
7
+ data.tar.gz: 854b31ea8ffd81214e8823d9336490fb1bff13cd2285ae5b505ae8c8e643abd07917b1d2741a28337a626bd4d66938a43599d0b4c384b64eb8c9e49b03063e8f
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
42
42
  # @service
43
43
  module Aws::CodePipeline
44
44
 
45
- GEM_VERSION = '1.18.0'
45
+ GEM_VERSION = '1.19.0'
46
46
 
47
47
  end
@@ -383,9 +383,13 @@ module Aws::CodePipeline
383
383
  # The details of the output artifact of the action, such as its commit
384
384
  # ID.
385
385
  #
386
+ # @option params [Array<Types::Tag>] :tags
387
+ # The tags for the custom action.
388
+ #
386
389
  # @return [Types::CreateCustomActionTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
387
390
  #
388
391
  # * {Types::CreateCustomActionTypeOutput#action_type #action_type} => Types::ActionType
392
+ # * {Types::CreateCustomActionTypeOutput#tags #tags} => Array&lt;Types::Tag&gt;
389
393
  #
390
394
  # @example Request syntax with placeholder values
391
395
  #
@@ -418,6 +422,12 @@ module Aws::CodePipeline
418
422
  # minimum_count: 1, # required
419
423
  # maximum_count: 1, # required
420
424
  # },
425
+ # tags: [
426
+ # {
427
+ # key: "TagKey", # required
428
+ # value: "TagValue", # required
429
+ # },
430
+ # ],
421
431
  # })
422
432
  #
423
433
  # @example Response structure
@@ -442,6 +452,9 @@ module Aws::CodePipeline
442
452
  # resp.action_type.input_artifact_details.maximum_count #=> Integer
443
453
  # resp.action_type.output_artifact_details.minimum_count #=> Integer
444
454
  # resp.action_type.output_artifact_details.maximum_count #=> Integer
455
+ # resp.tags #=> Array
456
+ # resp.tags[0].key #=> String
457
+ # resp.tags[0].value #=> String
445
458
  #
446
459
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreateCustomActionType AWS API Documentation
447
460
  #
@@ -458,9 +471,13 @@ module Aws::CodePipeline
458
471
  # Represents the structure of actions and stages to be performed in the
459
472
  # pipeline.
460
473
  #
474
+ # @option params [Array<Types::Tag>] :tags
475
+ # The tags for the pipeline.
476
+ #
461
477
  # @return [Types::CreatePipelineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
462
478
  #
463
479
  # * {Types::CreatePipelineOutput#pipeline #pipeline} => Types::PipelineDeclaration
480
+ # * {Types::CreatePipelineOutput#tags #tags} => Array&lt;Types::Tag&gt;
464
481
  #
465
482
  # @example Request syntax with placeholder values
466
483
  #
@@ -526,6 +543,12 @@ module Aws::CodePipeline
526
543
  # ],
527
544
  # version: 1,
528
545
  # },
546
+ # tags: [
547
+ # {
548
+ # key: "TagKey", # required
549
+ # value: "TagValue", # required
550
+ # },
551
+ # ],
529
552
  # })
530
553
  #
531
554
  # @example Response structure
@@ -562,6 +585,9 @@ module Aws::CodePipeline
562
585
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
563
586
  # resp.pipeline.stages[0].actions[0].region #=> String
564
587
  # resp.pipeline.version #=> Integer
588
+ # resp.tags #=> Array
589
+ # resp.tags[0].key #=> String
590
+ # resp.tags[0].value #=> String
565
591
  #
566
592
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreatePipeline AWS API Documentation
567
593
  #
@@ -1315,6 +1341,50 @@ module Aws::CodePipeline
1315
1341
  req.send_request(options)
1316
1342
  end
1317
1343
 
1344
+ # Gets the set of key/value pairs (metadata) that are used to manage the
1345
+ # resource.
1346
+ #
1347
+ # @option params [required, String] :resource_arn
1348
+ # The Amazon Resource Name (ARN) of the resource to get tags for.
1349
+ #
1350
+ # @option params [String] :next_token
1351
+ # The token that was returned from the previous API call, which would be
1352
+ # used to return the next page of the list. However, the
1353
+ # ListTagsforResource call lists all available tags in one call and does
1354
+ # not use pagination.
1355
+ #
1356
+ # @option params [Integer] :max_results
1357
+ # The maximum number of results to return in a single call.
1358
+ #
1359
+ # @return [Types::ListTagsForResourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1360
+ #
1361
+ # * {Types::ListTagsForResourceOutput#tags #tags} => Array&lt;Types::Tag&gt;
1362
+ # * {Types::ListTagsForResourceOutput#next_token #next_token} => String
1363
+ #
1364
+ # @example Request syntax with placeholder values
1365
+ #
1366
+ # resp = client.list_tags_for_resource({
1367
+ # resource_arn: "ResourceArn", # required
1368
+ # next_token: "NextToken",
1369
+ # max_results: 1,
1370
+ # })
1371
+ #
1372
+ # @example Response structure
1373
+ #
1374
+ # resp.tags #=> Array
1375
+ # resp.tags[0].key #=> String
1376
+ # resp.tags[0].value #=> String
1377
+ # resp.next_token #=> String
1378
+ #
1379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListTagsForResource AWS API Documentation
1380
+ #
1381
+ # @overload list_tags_for_resource(params = {})
1382
+ # @param [Hash] params ({})
1383
+ def list_tags_for_resource(params = {}, options = {})
1384
+ req = build_request(:list_tags_for_resource, params)
1385
+ req.send_request(options)
1386
+ end
1387
+
1318
1388
  # Gets a listing of all the webhooks in this region for this account.
1319
1389
  # The output lists all webhooks and includes the webhook URL and ARN, as
1320
1390
  # well the configuration for each webhook.
@@ -1357,6 +1427,9 @@ module Aws::CodePipeline
1357
1427
  # resp.webhooks[0].error_code #=> String
1358
1428
  # resp.webhooks[0].last_triggered #=> Time
1359
1429
  # resp.webhooks[0].arn #=> String
1430
+ # resp.webhooks[0].tags #=> Array
1431
+ # resp.webhooks[0].tags[0].key #=> String
1432
+ # resp.webhooks[0].tags[0].value #=> String
1360
1433
  # resp.next_token #=> String
1361
1434
  #
1362
1435
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListWebhooks AWS API Documentation
@@ -1799,6 +1872,9 @@ module Aws::CodePipeline
1799
1872
  # may choose to name the webhook after the pipeline and action it
1800
1873
  # targets so that you can easily recognize what it's used for later.
1801
1874
  #
1875
+ # @option params [Array<Types::Tag>] :tags
1876
+ # The tags for the webhook.
1877
+ #
1802
1878
  # @return [Types::PutWebhookOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1803
1879
  #
1804
1880
  # * {Types::PutWebhookOutput#webhook #webhook} => Types::ListWebhookItem
@@ -1822,6 +1898,12 @@ module Aws::CodePipeline
1822
1898
  # secret_token: "WebhookAuthConfigurationSecretToken",
1823
1899
  # },
1824
1900
  # },
1901
+ # tags: [
1902
+ # {
1903
+ # key: "TagKey", # required
1904
+ # value: "TagValue", # required
1905
+ # },
1906
+ # ],
1825
1907
  # })
1826
1908
  #
1827
1909
  # @example Response structure
@@ -1840,6 +1922,9 @@ module Aws::CodePipeline
1840
1922
  # resp.webhook.error_code #=> String
1841
1923
  # resp.webhook.last_triggered #=> Time
1842
1924
  # resp.webhook.arn #=> String
1925
+ # resp.webhook.tags #=> Array
1926
+ # resp.webhook.tags[0].key #=> String
1927
+ # resp.webhook.tags[0].value #=> String
1843
1928
  #
1844
1929
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutWebhook AWS API Documentation
1845
1930
  #
@@ -1956,6 +2041,65 @@ module Aws::CodePipeline
1956
2041
  req.send_request(options)
1957
2042
  end
1958
2043
 
2044
+ # Adds to or modifies the tags of the given resource. Tags are metadata
2045
+ # that can be used to manage a resource.
2046
+ #
2047
+ # @option params [required, String] :resource_arn
2048
+ # The Amazon Resource Name (ARN) of the resource you want to add tags
2049
+ # to.
2050
+ #
2051
+ # @option params [required, Array<Types::Tag>] :tags
2052
+ # The tags you want to modify or add to the resource.
2053
+ #
2054
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2055
+ #
2056
+ # @example Request syntax with placeholder values
2057
+ #
2058
+ # resp = client.tag_resource({
2059
+ # resource_arn: "ResourceArn", # required
2060
+ # tags: [ # required
2061
+ # {
2062
+ # key: "TagKey", # required
2063
+ # value: "TagValue", # required
2064
+ # },
2065
+ # ],
2066
+ # })
2067
+ #
2068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/TagResource AWS API Documentation
2069
+ #
2070
+ # @overload tag_resource(params = {})
2071
+ # @param [Hash] params ({})
2072
+ def tag_resource(params = {}, options = {})
2073
+ req = build_request(:tag_resource, params)
2074
+ req.send_request(options)
2075
+ end
2076
+
2077
+ # Removes tags from an AWS resource.
2078
+ #
2079
+ # @option params [required, String] :resource_arn
2080
+ # The Amazon Resource Name (ARN) of the resource to remove tags from.
2081
+ #
2082
+ # @option params [required, Array<String>] :tag_keys
2083
+ # The list of keys for the tags to be removed from the resource.
2084
+ #
2085
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2086
+ #
2087
+ # @example Request syntax with placeholder values
2088
+ #
2089
+ # resp = client.untag_resource({
2090
+ # resource_arn: "ResourceArn", # required
2091
+ # tag_keys: ["TagKey"], # required
2092
+ # })
2093
+ #
2094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UntagResource AWS API Documentation
2095
+ #
2096
+ # @overload untag_resource(params = {})
2097
+ # @param [Hash] params ({})
2098
+ def untag_resource(params = {}, options = {})
2099
+ req = build_request(:untag_resource, params)
2100
+ req.send_request(options)
2101
+ end
2102
+
1959
2103
  # Updates a specified pipeline with edits or changes to its structure.
1960
2104
  # Use a JSON file with the pipeline structure in conjunction with
1961
2105
  # `UpdatePipeline` to provide the full structure of the pipeline.
@@ -2092,7 +2236,7 @@ module Aws::CodePipeline
2092
2236
  params: params,
2093
2237
  config: config)
2094
2238
  context[:gem_name] = 'aws-sdk-codepipeline'
2095
- context[:gem_version] = '1.18.0'
2239
+ context[:gem_version] = '1.19.0'
2096
2240
  Seahorse::Client::Request.new(handlers, context)
2097
2241
  end
2098
2242
 
@@ -80,6 +80,7 @@ module Aws::CodePipeline
80
80
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
81
81
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
82
82
  Code = Shapes::StringShape.new(name: 'Code')
83
+ ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
83
84
  ContinuationToken = Shapes::StringShape.new(name: 'ContinuationToken')
84
85
  CreateCustomActionTypeInput = Shapes::StructureShape.new(name: 'CreateCustomActionTypeInput')
85
86
  CreateCustomActionTypeOutput = Shapes::StructureShape.new(name: 'CreateCustomActionTypeOutput')
@@ -122,6 +123,7 @@ module Aws::CodePipeline
122
123
  InputArtifactList = Shapes::ListShape.new(name: 'InputArtifactList')
123
124
  InvalidActionDeclarationException = Shapes::StructureShape.new(name: 'InvalidActionDeclarationException')
124
125
  InvalidApprovalTokenException = Shapes::StructureShape.new(name: 'InvalidApprovalTokenException')
126
+ InvalidArnException = Shapes::StructureShape.new(name: 'InvalidArnException')
125
127
  InvalidBlockerDeclarationException = Shapes::StructureShape.new(name: 'InvalidBlockerDeclarationException')
126
128
  InvalidClientTokenException = Shapes::StructureShape.new(name: 'InvalidClientTokenException')
127
129
  InvalidJobException = Shapes::StructureShape.new(name: 'InvalidJobException')
@@ -130,6 +132,7 @@ module Aws::CodePipeline
130
132
  InvalidNonceException = Shapes::StructureShape.new(name: 'InvalidNonceException')
131
133
  InvalidStageDeclarationException = Shapes::StructureShape.new(name: 'InvalidStageDeclarationException')
132
134
  InvalidStructureException = Shapes::StructureShape.new(name: 'InvalidStructureException')
135
+ InvalidTagsException = Shapes::StructureShape.new(name: 'InvalidTagsException')
133
136
  InvalidWebhookAuthenticationParametersException = Shapes::StructureShape.new(name: 'InvalidWebhookAuthenticationParametersException')
134
137
  InvalidWebhookFilterPatternException = Shapes::StructureShape.new(name: 'InvalidWebhookFilterPatternException')
135
138
  Job = Shapes::StructureShape.new(name: 'Job')
@@ -152,6 +155,8 @@ module Aws::CodePipeline
152
155
  ListPipelineExecutionsOutput = Shapes::StructureShape.new(name: 'ListPipelineExecutionsOutput')
153
156
  ListPipelinesInput = Shapes::StructureShape.new(name: 'ListPipelinesInput')
154
157
  ListPipelinesOutput = Shapes::StructureShape.new(name: 'ListPipelinesOutput')
158
+ ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
159
+ ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
155
160
  ListWebhookItem = Shapes::StructureShape.new(name: 'ListWebhookItem')
156
161
  ListWebhooksInput = Shapes::StructureShape.new(name: 'ListWebhooksInput')
157
162
  ListWebhooksOutput = Shapes::StructureShape.new(name: 'ListWebhooksOutput')
@@ -202,6 +207,8 @@ module Aws::CodePipeline
202
207
  QueryParamMap = Shapes::MapShape.new(name: 'QueryParamMap')
203
208
  RegisterWebhookWithThirdPartyInput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyInput')
204
209
  RegisterWebhookWithThirdPartyOutput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyOutput')
210
+ ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
211
+ ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
205
212
  RetryStageExecutionInput = Shapes::StructureShape.new(name: 'RetryStageExecutionInput')
206
213
  RetryStageExecutionOutput = Shapes::StructureShape.new(name: 'RetryStageExecutionOutput')
207
214
  Revision = Shapes::StringShape.new(name: 'Revision')
@@ -233,6 +240,13 @@ module Aws::CodePipeline
233
240
  StageTransitionType = Shapes::StringShape.new(name: 'StageTransitionType')
234
241
  StartPipelineExecutionInput = Shapes::StructureShape.new(name: 'StartPipelineExecutionInput')
235
242
  StartPipelineExecutionOutput = Shapes::StructureShape.new(name: 'StartPipelineExecutionOutput')
243
+ Tag = Shapes::StructureShape.new(name: 'Tag')
244
+ TagKey = Shapes::StringShape.new(name: 'TagKey')
245
+ TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
246
+ TagList = Shapes::ListShape.new(name: 'TagList')
247
+ TagResourceInput = Shapes::StructureShape.new(name: 'TagResourceInput')
248
+ TagResourceOutput = Shapes::StructureShape.new(name: 'TagResourceOutput')
249
+ TagValue = Shapes::StringShape.new(name: 'TagValue')
236
250
  ThirdPartyJob = Shapes::StructureShape.new(name: 'ThirdPartyJob')
237
251
  ThirdPartyJobData = Shapes::StructureShape.new(name: 'ThirdPartyJobData')
238
252
  ThirdPartyJobDetails = Shapes::StructureShape.new(name: 'ThirdPartyJobDetails')
@@ -240,7 +254,10 @@ module Aws::CodePipeline
240
254
  ThirdPartyJobList = Shapes::ListShape.new(name: 'ThirdPartyJobList')
241
255
  Time = Shapes::TimestampShape.new(name: 'Time')
242
256
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
257
+ TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
243
258
  TransitionState = Shapes::StructureShape.new(name: 'TransitionState')
259
+ UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
260
+ UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
244
261
  UpdatePipelineInput = Shapes::StructureShape.new(name: 'UpdatePipelineInput')
245
262
  UpdatePipelineOutput = Shapes::StructureShape.new(name: 'UpdatePipelineOutput')
246
263
  Url = Shapes::StringShape.new(name: 'Url')
@@ -447,15 +464,19 @@ module Aws::CodePipeline
447
464
  CreateCustomActionTypeInput.add_member(:configuration_properties, Shapes::ShapeRef.new(shape: ActionConfigurationPropertyList, location_name: "configurationProperties"))
448
465
  CreateCustomActionTypeInput.add_member(:input_artifact_details, Shapes::ShapeRef.new(shape: ArtifactDetails, required: true, location_name: "inputArtifactDetails"))
449
466
  CreateCustomActionTypeInput.add_member(:output_artifact_details, Shapes::ShapeRef.new(shape: ArtifactDetails, required: true, location_name: "outputArtifactDetails"))
467
+ CreateCustomActionTypeInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
450
468
  CreateCustomActionTypeInput.struct_class = Types::CreateCustomActionTypeInput
451
469
 
452
470
  CreateCustomActionTypeOutput.add_member(:action_type, Shapes::ShapeRef.new(shape: ActionType, required: true, location_name: "actionType"))
471
+ CreateCustomActionTypeOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
453
472
  CreateCustomActionTypeOutput.struct_class = Types::CreateCustomActionTypeOutput
454
473
 
455
474
  CreatePipelineInput.add_member(:pipeline, Shapes::ShapeRef.new(shape: PipelineDeclaration, required: true, location_name: "pipeline"))
475
+ CreatePipelineInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
456
476
  CreatePipelineInput.struct_class = Types::CreatePipelineInput
457
477
 
458
478
  CreatePipelineOutput.add_member(:pipeline, Shapes::ShapeRef.new(shape: PipelineDeclaration, location_name: "pipeline"))
479
+ CreatePipelineOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
459
480
  CreatePipelineOutput.struct_class = Types::CreatePipelineOutput
460
481
 
461
482
  CurrentRevision.add_member(:revision, Shapes::ShapeRef.new(shape: Revision, required: true, location_name: "revision"))
@@ -611,12 +632,22 @@ module Aws::CodePipeline
611
632
  ListPipelinesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
612
633
  ListPipelinesOutput.struct_class = Types::ListPipelinesOutput
613
634
 
635
+ ListTagsForResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "resourceArn"))
636
+ ListTagsForResourceInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
637
+ ListTagsForResourceInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
638
+ ListTagsForResourceInput.struct_class = Types::ListTagsForResourceInput
639
+
640
+ ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
641
+ ListTagsForResourceOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
642
+ ListTagsForResourceOutput.struct_class = Types::ListTagsForResourceOutput
643
+
614
644
  ListWebhookItem.add_member(:definition, Shapes::ShapeRef.new(shape: WebhookDefinition, required: true, location_name: "definition"))
615
645
  ListWebhookItem.add_member(:url, Shapes::ShapeRef.new(shape: WebhookUrl, required: true, location_name: "url"))
616
646
  ListWebhookItem.add_member(:error_message, Shapes::ShapeRef.new(shape: WebhookErrorMessage, location_name: "errorMessage"))
617
647
  ListWebhookItem.add_member(:error_code, Shapes::ShapeRef.new(shape: WebhookErrorCode, location_name: "errorCode"))
618
648
  ListWebhookItem.add_member(:last_triggered, Shapes::ShapeRef.new(shape: WebhookLastTriggered, location_name: "lastTriggered"))
619
649
  ListWebhookItem.add_member(:arn, Shapes::ShapeRef.new(shape: WebhookArn, location_name: "arn"))
650
+ ListWebhookItem.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
620
651
  ListWebhookItem.struct_class = Types::ListWebhookItem
621
652
 
622
653
  ListWebhooksInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
@@ -736,6 +767,7 @@ module Aws::CodePipeline
736
767
  PutThirdPartyJobSuccessResultInput.struct_class = Types::PutThirdPartyJobSuccessResultInput
737
768
 
738
769
  PutWebhookInput.add_member(:webhook, Shapes::ShapeRef.new(shape: WebhookDefinition, required: true, location_name: "webhook"))
770
+ PutWebhookInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
739
771
  PutWebhookInput.struct_class = Types::PutWebhookInput
740
772
 
741
773
  PutWebhookOutput.add_member(:webhook, Shapes::ShapeRef.new(shape: ListWebhookItem, location_name: "webhook"))
@@ -805,6 +837,20 @@ module Aws::CodePipeline
805
837
  StartPipelineExecutionOutput.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, location_name: "pipelineExecutionId"))
806
838
  StartPipelineExecutionOutput.struct_class = Types::StartPipelineExecutionOutput
807
839
 
840
+ Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
841
+ Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
842
+ Tag.struct_class = Types::Tag
843
+
844
+ TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
845
+
846
+ TagList.member = Shapes::ShapeRef.new(shape: Tag)
847
+
848
+ TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "resourceArn"))
849
+ TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "tags"))
850
+ TagResourceInput.struct_class = Types::TagResourceInput
851
+
852
+ TagResourceOutput.struct_class = Types::TagResourceOutput
853
+
808
854
  ThirdPartyJob.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "clientId"))
809
855
  ThirdPartyJob.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "jobId"))
810
856
  ThirdPartyJob.struct_class = Types::ThirdPartyJob
@@ -832,6 +878,12 @@ module Aws::CodePipeline
832
878
  TransitionState.add_member(:disabled_reason, Shapes::ShapeRef.new(shape: DisabledReason, location_name: "disabledReason"))
833
879
  TransitionState.struct_class = Types::TransitionState
834
880
 
881
+ UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "resourceArn"))
882
+ UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "tagKeys"))
883
+ UntagResourceInput.struct_class = Types::UntagResourceInput
884
+
885
+ UntagResourceOutput.struct_class = Types::UntagResourceOutput
886
+
835
887
  UpdatePipelineInput.add_member(:pipeline, Shapes::ShapeRef.new(shape: PipelineDeclaration, required: true, location_name: "pipeline"))
836
888
  UpdatePipelineInput.struct_class = Types::UpdatePipelineInput
837
889
 
@@ -908,6 +960,9 @@ module Aws::CodePipeline
908
960
  o.output = Shapes::ShapeRef.new(shape: CreateCustomActionTypeOutput)
909
961
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
910
962
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
963
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
964
+ o.errors << Shapes::ShapeRef.new(shape: InvalidTagsException)
965
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
911
966
  end)
912
967
 
913
968
  api.add_operation(:create_pipeline, Seahorse::Model::Operation.new.tap do |o|
@@ -923,6 +978,9 @@ module Aws::CodePipeline
923
978
  o.errors << Shapes::ShapeRef.new(shape: InvalidBlockerDeclarationException)
924
979
  o.errors << Shapes::ShapeRef.new(shape: InvalidStructureException)
925
980
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
981
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
982
+ o.errors << Shapes::ShapeRef.new(shape: InvalidTagsException)
983
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
926
984
  end)
927
985
 
928
986
  api.add_operation(:delete_custom_action_type, Seahorse::Model::Operation.new.tap do |o|
@@ -932,6 +990,7 @@ module Aws::CodePipeline
932
990
  o.input = Shapes::ShapeRef.new(shape: DeleteCustomActionTypeInput)
933
991
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
934
992
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
993
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
935
994
  end)
936
995
 
937
996
  api.add_operation(:delete_pipeline, Seahorse::Model::Operation.new.tap do |o|
@@ -941,6 +1000,7 @@ module Aws::CodePipeline
941
1000
  o.input = Shapes::ShapeRef.new(shape: DeletePipelineInput)
942
1001
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
943
1002
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1003
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
944
1004
  end)
945
1005
 
946
1006
  api.add_operation(:delete_webhook, Seahorse::Model::Operation.new.tap do |o|
@@ -950,6 +1010,7 @@ module Aws::CodePipeline
950
1010
  o.input = Shapes::ShapeRef.new(shape: DeleteWebhookInput)
951
1011
  o.output = Shapes::ShapeRef.new(shape: DeleteWebhookOutput)
952
1012
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1013
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
953
1014
  end)
954
1015
 
955
1016
  api.add_operation(:deregister_webhook_with_third_party, Seahorse::Model::Operation.new.tap do |o|
@@ -1048,6 +1109,12 @@ module Aws::CodePipeline
1048
1109
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1049
1110
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1050
1111
  o.errors << Shapes::ShapeRef.new(shape: PipelineExecutionNotFoundException)
1112
+ o[:pager] = Aws::Pager.new(
1113
+ limit_key: "max_results",
1114
+ tokens: {
1115
+ "next_token" => "next_token"
1116
+ }
1117
+ )
1051
1118
  end)
1052
1119
 
1053
1120
  api.add_operation(:list_action_types, Seahorse::Model::Operation.new.tap do |o|
@@ -1058,6 +1125,11 @@ module Aws::CodePipeline
1058
1125
  o.output = Shapes::ShapeRef.new(shape: ListActionTypesOutput)
1059
1126
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1060
1127
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1128
+ o[:pager] = Aws::Pager.new(
1129
+ tokens: {
1130
+ "next_token" => "next_token"
1131
+ }
1132
+ )
1061
1133
  end)
1062
1134
 
1063
1135
  api.add_operation(:list_pipeline_executions, Seahorse::Model::Operation.new.tap do |o|
@@ -1069,6 +1141,12 @@ module Aws::CodePipeline
1069
1141
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1070
1142
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1071
1143
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1144
+ o[:pager] = Aws::Pager.new(
1145
+ limit_key: "max_results",
1146
+ tokens: {
1147
+ "next_token" => "next_token"
1148
+ }
1149
+ )
1072
1150
  end)
1073
1151
 
1074
1152
  api.add_operation(:list_pipelines, Seahorse::Model::Operation.new.tap do |o|
@@ -1079,6 +1157,29 @@ module Aws::CodePipeline
1079
1157
  o.output = Shapes::ShapeRef.new(shape: ListPipelinesOutput)
1080
1158
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1081
1159
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1160
+ o[:pager] = Aws::Pager.new(
1161
+ tokens: {
1162
+ "next_token" => "next_token"
1163
+ }
1164
+ )
1165
+ end)
1166
+
1167
+ api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
1168
+ o.name = "ListTagsForResource"
1169
+ o.http_method = "POST"
1170
+ o.http_request_uri = "/"
1171
+ o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceInput)
1172
+ o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceOutput)
1173
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1174
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1175
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1176
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
1177
+ o[:pager] = Aws::Pager.new(
1178
+ limit_key: "max_results",
1179
+ tokens: {
1180
+ "next_token" => "next_token"
1181
+ }
1182
+ )
1082
1183
  end)
1083
1184
 
1084
1185
  api.add_operation(:list_webhooks, Seahorse::Model::Operation.new.tap do |o|
@@ -1089,6 +1190,12 @@ module Aws::CodePipeline
1089
1190
  o.output = Shapes::ShapeRef.new(shape: ListWebhooksOutput)
1090
1191
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1091
1192
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1193
+ o[:pager] = Aws::Pager.new(
1194
+ limit_key: "max_results",
1195
+ tokens: {
1196
+ "next_token" => "next_token"
1197
+ }
1198
+ )
1092
1199
  end)
1093
1200
 
1094
1201
  api.add_operation(:poll_for_jobs, Seahorse::Model::Operation.new.tap do |o|
@@ -1194,6 +1301,9 @@ module Aws::CodePipeline
1194
1301
  o.errors << Shapes::ShapeRef.new(shape: InvalidWebhookFilterPatternException)
1195
1302
  o.errors << Shapes::ShapeRef.new(shape: InvalidWebhookAuthenticationParametersException)
1196
1303
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1304
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1305
+ o.errors << Shapes::ShapeRef.new(shape: InvalidTagsException)
1306
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1197
1307
  end)
1198
1308
 
1199
1309
  api.add_operation(:register_webhook_with_third_party, Seahorse::Model::Operation.new.tap do |o|
@@ -1229,6 +1339,33 @@ module Aws::CodePipeline
1229
1339
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1230
1340
  end)
1231
1341
 
1342
+ api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
1343
+ o.name = "TagResource"
1344
+ o.http_method = "POST"
1345
+ o.http_request_uri = "/"
1346
+ o.input = Shapes::ShapeRef.new(shape: TagResourceInput)
1347
+ o.output = Shapes::ShapeRef.new(shape: TagResourceOutput)
1348
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1349
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1350
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
1351
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1352
+ o.errors << Shapes::ShapeRef.new(shape: InvalidTagsException)
1353
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1354
+ end)
1355
+
1356
+ api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
1357
+ o.name = "UntagResource"
1358
+ o.http_method = "POST"
1359
+ o.http_request_uri = "/"
1360
+ o.input = Shapes::ShapeRef.new(shape: UntagResourceInput)
1361
+ o.output = Shapes::ShapeRef.new(shape: UntagResourceOutput)
1362
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1363
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1364
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
1365
+ o.errors << Shapes::ShapeRef.new(shape: InvalidTagsException)
1366
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1367
+ end)
1368
+
1232
1369
  api.add_operation(:update_pipeline, Seahorse::Model::Operation.new.tap do |o|
1233
1370
  o.name = "UpdatePipeline"
1234
1371
  o.http_method = "POST"
@@ -1003,6 +1003,12 @@ module Aws::CodePipeline
1003
1003
  # minimum_count: 1, # required
1004
1004
  # maximum_count: 1, # required
1005
1005
  # },
1006
+ # tags: [
1007
+ # {
1008
+ # key: "TagKey", # required
1009
+ # value: "TagValue", # required
1010
+ # },
1011
+ # ],
1006
1012
  # }
1007
1013
  #
1008
1014
  # @!attribute [rw] category
@@ -1055,6 +1061,10 @@ module Aws::CodePipeline
1055
1061
  # ID.
1056
1062
  # @return [Types::ArtifactDetails]
1057
1063
  #
1064
+ # @!attribute [rw] tags
1065
+ # The tags for the custom action.
1066
+ # @return [Array<Types::Tag>]
1067
+ #
1058
1068
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreateCustomActionTypeInput AWS API Documentation
1059
1069
  #
1060
1070
  class CreateCustomActionTypeInput < Struct.new(
@@ -1064,7 +1074,8 @@ module Aws::CodePipeline
1064
1074
  :settings,
1065
1075
  :configuration_properties,
1066
1076
  :input_artifact_details,
1067
- :output_artifact_details)
1077
+ :output_artifact_details,
1078
+ :tags)
1068
1079
  include Aws::Structure
1069
1080
  end
1070
1081
 
@@ -1074,10 +1085,15 @@ module Aws::CodePipeline
1074
1085
  # Returns information about the details of an action type.
1075
1086
  # @return [Types::ActionType]
1076
1087
  #
1088
+ # @!attribute [rw] tags
1089
+ # Specifies the tags applied to the custom action.
1090
+ # @return [Array<Types::Tag>]
1091
+ #
1077
1092
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreateCustomActionTypeOutput AWS API Documentation
1078
1093
  #
1079
1094
  class CreateCustomActionTypeOutput < Struct.new(
1080
- :action_type)
1095
+ :action_type,
1096
+ :tags)
1081
1097
  include Aws::Structure
1082
1098
  end
1083
1099
 
@@ -1148,6 +1164,12 @@ module Aws::CodePipeline
1148
1164
  # ],
1149
1165
  # version: 1,
1150
1166
  # },
1167
+ # tags: [
1168
+ # {
1169
+ # key: "TagKey", # required
1170
+ # value: "TagValue", # required
1171
+ # },
1172
+ # ],
1151
1173
  # }
1152
1174
  #
1153
1175
  # @!attribute [rw] pipeline
@@ -1155,10 +1177,15 @@ module Aws::CodePipeline
1155
1177
  # the pipeline.
1156
1178
  # @return [Types::PipelineDeclaration]
1157
1179
  #
1180
+ # @!attribute [rw] tags
1181
+ # The tags for the pipeline.
1182
+ # @return [Array<Types::Tag>]
1183
+ #
1158
1184
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreatePipelineInput AWS API Documentation
1159
1185
  #
1160
1186
  class CreatePipelineInput < Struct.new(
1161
- :pipeline)
1187
+ :pipeline,
1188
+ :tags)
1162
1189
  include Aws::Structure
1163
1190
  end
1164
1191
 
@@ -1169,10 +1196,15 @@ module Aws::CodePipeline
1169
1196
  # the pipeline.
1170
1197
  # @return [Types::PipelineDeclaration]
1171
1198
  #
1199
+ # @!attribute [rw] tags
1200
+ # Specifies the tags applied to the pipeline.
1201
+ # @return [Array<Types::Tag>]
1202
+ #
1172
1203
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreatePipelineOutput AWS API Documentation
1173
1204
  #
1174
1205
  class CreatePipelineOutput < Struct.new(
1175
- :pipeline)
1206
+ :pipeline,
1207
+ :tags)
1176
1208
  include Aws::Structure
1177
1209
  end
1178
1210
 
@@ -2103,6 +2135,59 @@ module Aws::CodePipeline
2103
2135
  include Aws::Structure
2104
2136
  end
2105
2137
 
2138
+ # @note When making an API call, you may pass ListTagsForResourceInput
2139
+ # data as a hash:
2140
+ #
2141
+ # {
2142
+ # resource_arn: "ResourceArn", # required
2143
+ # next_token: "NextToken",
2144
+ # max_results: 1,
2145
+ # }
2146
+ #
2147
+ # @!attribute [rw] resource_arn
2148
+ # The Amazon Resource Name (ARN) of the resource to get tags for.
2149
+ # @return [String]
2150
+ #
2151
+ # @!attribute [rw] next_token
2152
+ # The token that was returned from the previous API call, which would
2153
+ # be used to return the next page of the list. However, the
2154
+ # ListTagsforResource call lists all available tags in one call and
2155
+ # does not use pagination.
2156
+ # @return [String]
2157
+ #
2158
+ # @!attribute [rw] max_results
2159
+ # The maximum number of results to return in a single call.
2160
+ # @return [Integer]
2161
+ #
2162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListTagsForResourceInput AWS API Documentation
2163
+ #
2164
+ class ListTagsForResourceInput < Struct.new(
2165
+ :resource_arn,
2166
+ :next_token,
2167
+ :max_results)
2168
+ include Aws::Structure
2169
+ end
2170
+
2171
+ # @!attribute [rw] tags
2172
+ # The tags for the resource.
2173
+ # @return [Array<Types::Tag>]
2174
+ #
2175
+ # @!attribute [rw] next_token
2176
+ # If the amount of returned information is significantly large, an
2177
+ # identifier is also returned and can be used in a subsequent API call
2178
+ # to return the next page of the list. However, the
2179
+ # ListTagsforResource call lists all available tags in one call and
2180
+ # does not use pagination.
2181
+ # @return [String]
2182
+ #
2183
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListTagsForResourceOutput AWS API Documentation
2184
+ #
2185
+ class ListTagsForResourceOutput < Struct.new(
2186
+ :tags,
2187
+ :next_token)
2188
+ include Aws::Structure
2189
+ end
2190
+
2106
2191
  # The detail returned for each webhook after listing webhooks, such as
2107
2192
  # the webhook URL, the webhook name, and the webhook ARN.
2108
2193
  #
@@ -2136,6 +2221,10 @@ module Aws::CodePipeline
2136
2221
  # The Amazon Resource Name (ARN) of the webhook.
2137
2222
  # @return [String]
2138
2223
  #
2224
+ # @!attribute [rw] tags
2225
+ # Specifies the tags applied to the webhook.
2226
+ # @return [Array<Types::Tag>]
2227
+ #
2139
2228
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListWebhookItem AWS API Documentation
2140
2229
  #
2141
2230
  class ListWebhookItem < Struct.new(
@@ -2144,7 +2233,8 @@ module Aws::CodePipeline
2144
2233
  :error_message,
2145
2234
  :error_code,
2146
2235
  :last_triggered,
2147
- :arn)
2236
+ :arn,
2237
+ :tags)
2148
2238
  include Aws::Structure
2149
2239
  end
2150
2240
 
@@ -2958,6 +3048,12 @@ module Aws::CodePipeline
2958
3048
  # secret_token: "WebhookAuthConfigurationSecretToken",
2959
3049
  # },
2960
3050
  # },
3051
+ # tags: [
3052
+ # {
3053
+ # key: "TagKey", # required
3054
+ # value: "TagValue", # required
3055
+ # },
3056
+ # ],
2961
3057
  # }
2962
3058
  #
2963
3059
  # @!attribute [rw] webhook
@@ -2968,10 +3064,15 @@ module Aws::CodePipeline
2968
3064
  # targets so that you can easily recognize what it's used for later.
2969
3065
  # @return [Types::WebhookDefinition]
2970
3066
  #
3067
+ # @!attribute [rw] tags
3068
+ # The tags for the webhook.
3069
+ # @return [Array<Types::Tag>]
3070
+ #
2971
3071
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutWebhookInput AWS API Documentation
2972
3072
  #
2973
3073
  class PutWebhookInput < Struct.new(
2974
- :webhook)
3074
+ :webhook,
3075
+ :tags)
2975
3076
  include Aws::Structure
2976
3077
  end
2977
3078
 
@@ -3307,6 +3408,66 @@ module Aws::CodePipeline
3307
3408
  include Aws::Structure
3308
3409
  end
3309
3410
 
3411
+ # A tag is a key/value pair that is used to manage the resource.
3412
+ #
3413
+ # @note When making an API call, you may pass Tag
3414
+ # data as a hash:
3415
+ #
3416
+ # {
3417
+ # key: "TagKey", # required
3418
+ # value: "TagValue", # required
3419
+ # }
3420
+ #
3421
+ # @!attribute [rw] key
3422
+ # The tag's key.
3423
+ # @return [String]
3424
+ #
3425
+ # @!attribute [rw] value
3426
+ # The tag's value.
3427
+ # @return [String]
3428
+ #
3429
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/Tag AWS API Documentation
3430
+ #
3431
+ class Tag < Struct.new(
3432
+ :key,
3433
+ :value)
3434
+ include Aws::Structure
3435
+ end
3436
+
3437
+ # @note When making an API call, you may pass TagResourceInput
3438
+ # data as a hash:
3439
+ #
3440
+ # {
3441
+ # resource_arn: "ResourceArn", # required
3442
+ # tags: [ # required
3443
+ # {
3444
+ # key: "TagKey", # required
3445
+ # value: "TagValue", # required
3446
+ # },
3447
+ # ],
3448
+ # }
3449
+ #
3450
+ # @!attribute [rw] resource_arn
3451
+ # The Amazon Resource Name (ARN) of the resource you want to add tags
3452
+ # to.
3453
+ # @return [String]
3454
+ #
3455
+ # @!attribute [rw] tags
3456
+ # The tags you want to modify or add to the resource.
3457
+ # @return [Array<Types::Tag>]
3458
+ #
3459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/TagResourceInput AWS API Documentation
3460
+ #
3461
+ class TagResourceInput < Struct.new(
3462
+ :resource_arn,
3463
+ :tags)
3464
+ include Aws::Structure
3465
+ end
3466
+
3467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/TagResourceOutput AWS API Documentation
3468
+ #
3469
+ class TagResourceOutput < Aws::EmptyStructure; end
3470
+
3310
3471
  # A response to a `PollForThirdPartyJobs `request returned by AWS
3311
3472
  # CodePipeline when there is a job to be worked upon by a partner
3312
3473
  # action.
@@ -3452,6 +3613,34 @@ module Aws::CodePipeline
3452
3613
  include Aws::Structure
3453
3614
  end
3454
3615
 
3616
+ # @note When making an API call, you may pass UntagResourceInput
3617
+ # data as a hash:
3618
+ #
3619
+ # {
3620
+ # resource_arn: "ResourceArn", # required
3621
+ # tag_keys: ["TagKey"], # required
3622
+ # }
3623
+ #
3624
+ # @!attribute [rw] resource_arn
3625
+ # The Amazon Resource Name (ARN) of the resource to remove tags from.
3626
+ # @return [String]
3627
+ #
3628
+ # @!attribute [rw] tag_keys
3629
+ # The list of keys for the tags to be removed from the resource.
3630
+ # @return [Array<String>]
3631
+ #
3632
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UntagResourceInput AWS API Documentation
3633
+ #
3634
+ class UntagResourceInput < Struct.new(
3635
+ :resource_arn,
3636
+ :tag_keys)
3637
+ include Aws::Structure
3638
+ end
3639
+
3640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UntagResourceOutput AWS API Documentation
3641
+ #
3642
+ class UntagResourceOutput < Aws::EmptyStructure; end
3643
+
3455
3644
  # Represents the input of an `UpdatePipeline` action.
3456
3645
  #
3457
3646
  # @note When making an API call, you may pass UpdatePipelineInput
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codepipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.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-05-14 00:00:00.000000000 Z
11
+ date: 2019-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.48.2
22
+ version: 3.52.1
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.48.2
32
+ version: 3.52.1
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement