aws-sdk-codepipeline 1.36.0 → 1.41.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: 660d670c5822818a4f76aa541164c0c795429272856011d11bb0767b79751427
4
- data.tar.gz: 219b1ee2831e0834486ad37ef70414d1e01b2e607282ef82807bd470158e5f10
3
+ metadata.gz: f8719ecc224a4f703542fc59bc871137ad3939b1f80eb0d6c1fa6a7627bca5db
4
+ data.tar.gz: 1adf806b54507be59362df0b4ac6fee1470e09485b9367de11611adf208b30ea
5
5
  SHA512:
6
- metadata.gz: 4f5f036804352dc4ba6d10fd2e97ff829f6cd1a78d0795a65f450e480ac2dc200b8fa4092446e6b84f783a436d42f220f313d4050e536946bcef20c76ec2d92d
7
- data.tar.gz: 5e19e82b09e0ee6c295549c216714df21c06acc06dbd44259b07dd1ad09bc8fbddd6a7865c375b64afba04742baa91f4d4b057a51efd3778acf6849db5791034
6
+ metadata.gz: 7449a5d2eb3e2ccb78501b971da551d10e206dae44cf2af614d07bdefbc85a9be171dacd58fa59653c67c64d4bce2cc8ed292819e4a5222e4dc6e3ba2dd5474e
7
+ data.tar.gz: a3d25d61192c4b871d51933b9b0f66898f625574562460944847a1928a56d5fba96f9a4324ae8ba3d9878bad2153755799a2cd789a0282a7e51925368f205942
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
48
48
  # @!group service
49
49
  module Aws::CodePipeline
50
50
 
51
- GEM_VERSION = '1.36.0'
51
+ GEM_VERSION = '1.41.0'
52
52
 
53
53
  end
@@ -422,11 +422,6 @@ module Aws::CodePipeline
422
422
  # The category of the custom action, such as a build action or a test
423
423
  # action.
424
424
  #
425
- # <note markdown="1"> Although `Source` and `Approval` are listed as valid values, they are
426
- # not currently functional. These values are reserved for future use.
427
- #
428
- # </note>
429
- #
430
425
  # @option params [required, String] :provider
431
426
  # The provider of the service used in the custom action, such as AWS
432
427
  # CodeDeploy.
@@ -876,6 +871,94 @@ module Aws::CodePipeline
876
871
  req.send_request(options)
877
872
  end
878
873
 
874
+ # Returns information about an action type created for an external
875
+ # provider, where the action is to be used by customers of the external
876
+ # provider. The action can have been created with any supported
877
+ # integration model.
878
+ #
879
+ # @option params [required, String] :category
880
+ # A category defines what kind of action can be taken in the stage.
881
+ # Valid categories are limited to one of the following values:
882
+ #
883
+ # * `Source`
884
+ #
885
+ # * `Build`
886
+ #
887
+ # * `Test`
888
+ #
889
+ # * `Deploy`
890
+ #
891
+ # * `Approval`
892
+ #
893
+ # * `Invoke`
894
+ #
895
+ # @option params [required, String] :owner
896
+ # The creator of an action type that has been created with any supported
897
+ # integration model. There are two valid values for the `owner` field in
898
+ # the action type category: `AWS` and `ThirdParty`.
899
+ #
900
+ # @option params [required, String] :provider
901
+ # The provider of the action type being called. The provider name is
902
+ # specified when the action type is created.
903
+ #
904
+ # @option params [required, String] :version
905
+ # A string that describes the action type version.
906
+ #
907
+ # @return [Types::GetActionTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
908
+ #
909
+ # * {Types::GetActionTypeOutput#action_type #action_type} => Types::ActionTypeDeclaration
910
+ #
911
+ # @example Request syntax with placeholder values
912
+ #
913
+ # resp = client.get_action_type({
914
+ # category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
915
+ # owner: "ActionTypeOwner", # required
916
+ # provider: "ActionProvider", # required
917
+ # version: "Version", # required
918
+ # })
919
+ #
920
+ # @example Response structure
921
+ #
922
+ # resp.action_type.description #=> String
923
+ # resp.action_type.executor.configuration.lambda_executor_configuration.lambda_function_arn #=> String
924
+ # resp.action_type.executor.configuration.job_worker_executor_configuration.polling_accounts #=> Array
925
+ # resp.action_type.executor.configuration.job_worker_executor_configuration.polling_accounts[0] #=> String
926
+ # resp.action_type.executor.configuration.job_worker_executor_configuration.polling_service_principals #=> Array
927
+ # resp.action_type.executor.configuration.job_worker_executor_configuration.polling_service_principals[0] #=> String
928
+ # resp.action_type.executor.type #=> String, one of "JobWorker", "Lambda"
929
+ # resp.action_type.executor.policy_statements_template #=> String
930
+ # resp.action_type.executor.job_timeout #=> Integer
931
+ # resp.action_type.id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
932
+ # resp.action_type.id.owner #=> String
933
+ # resp.action_type.id.provider #=> String
934
+ # resp.action_type.id.version #=> String
935
+ # resp.action_type.input_artifact_details.minimum_count #=> Integer
936
+ # resp.action_type.input_artifact_details.maximum_count #=> Integer
937
+ # resp.action_type.output_artifact_details.minimum_count #=> Integer
938
+ # resp.action_type.output_artifact_details.maximum_count #=> Integer
939
+ # resp.action_type.permissions.allowed_accounts #=> Array
940
+ # resp.action_type.permissions.allowed_accounts[0] #=> String
941
+ # resp.action_type.properties #=> Array
942
+ # resp.action_type.properties[0].name #=> String
943
+ # resp.action_type.properties[0].optional #=> Boolean
944
+ # resp.action_type.properties[0].key #=> Boolean
945
+ # resp.action_type.properties[0].no_echo #=> Boolean
946
+ # resp.action_type.properties[0].queryable #=> Boolean
947
+ # resp.action_type.properties[0].description #=> String
948
+ # resp.action_type.urls.configuration_url #=> String
949
+ # resp.action_type.urls.entity_url_template #=> String
950
+ # resp.action_type.urls.execution_url_template #=> String
951
+ # resp.action_type.urls.revision_url_template #=> String
952
+ #
953
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetActionType AWS API Documentation
954
+ #
955
+ # @overload get_action_type(params = {})
956
+ # @param [Hash] params ({})
957
+ def get_action_type(params = {}, options = {})
958
+ req = build_request(:get_action_type, params)
959
+ req.send_request(options)
960
+ end
961
+
879
962
  # Returns information about a job. Used for custom actions only.
880
963
  #
881
964
  # When this API is called, AWS CodePipeline returns temporary
@@ -1042,7 +1125,8 @@ module Aws::CodePipeline
1042
1125
  # resp.pipeline_execution.pipeline_name #=> String
1043
1126
  # resp.pipeline_execution.pipeline_version #=> Integer
1044
1127
  # resp.pipeline_execution.pipeline_execution_id #=> String
1045
- # resp.pipeline_execution.status #=> String, one of "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
1128
+ # resp.pipeline_execution.status #=> String, one of "Cancelled", "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
1129
+ # resp.pipeline_execution.status_summary #=> String
1046
1130
  # resp.pipeline_execution.artifact_revisions #=> Array
1047
1131
  # resp.pipeline_execution.artifact_revisions[0].name #=> String
1048
1132
  # resp.pipeline_execution.artifact_revisions[0].revision_id #=> String
@@ -1092,6 +1176,8 @@ module Aws::CodePipeline
1092
1176
  # resp.pipeline_version #=> Integer
1093
1177
  # resp.stage_states #=> Array
1094
1178
  # resp.stage_states[0].stage_name #=> String
1179
+ # resp.stage_states[0].inbound_execution.pipeline_execution_id #=> String
1180
+ # resp.stage_states[0].inbound_execution.status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1095
1181
  # resp.stage_states[0].inbound_transition_state.enabled #=> Boolean
1096
1182
  # resp.stage_states[0].inbound_transition_state.last_changed_by #=> String
1097
1183
  # resp.stage_states[0].inbound_transition_state.last_changed_at #=> Time
@@ -1101,6 +1187,7 @@ module Aws::CodePipeline
1101
1187
  # resp.stage_states[0].action_states[0].current_revision.revision_id #=> String
1102
1188
  # resp.stage_states[0].action_states[0].current_revision.revision_change_id #=> String
1103
1189
  # resp.stage_states[0].action_states[0].current_revision.created #=> Time
1190
+ # resp.stage_states[0].action_states[0].latest_execution.action_execution_id #=> String
1104
1191
  # resp.stage_states[0].action_states[0].latest_execution.status #=> String, one of "InProgress", "Abandoned", "Succeeded", "Failed"
1105
1192
  # resp.stage_states[0].action_states[0].latest_execution.summary #=> String
1106
1193
  # resp.stage_states[0].action_states[0].latest_execution.last_status_change #=> Time
@@ -1114,7 +1201,7 @@ module Aws::CodePipeline
1114
1201
  # resp.stage_states[0].action_states[0].entity_url #=> String
1115
1202
  # resp.stage_states[0].action_states[0].revision_url #=> String
1116
1203
  # resp.stage_states[0].latest_execution.pipeline_execution_id #=> String
1117
- # resp.stage_states[0].latest_execution.status #=> String, one of "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1204
+ # resp.stage_states[0].latest_execution.status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1118
1205
  # resp.created #=> Time
1119
1206
  # resp.updated #=> Time
1120
1207
  #
@@ -1300,6 +1387,9 @@ module Aws::CodePipeline
1300
1387
  # call, which can be used to return the next set of action types in the
1301
1388
  # list.
1302
1389
  #
1390
+ # @option params [String] :region_filter
1391
+ # The Region to filter on for the list of action types.
1392
+ #
1303
1393
  # @return [Types::ListActionTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1304
1394
  #
1305
1395
  # * {Types::ListActionTypesOutput#action_types #action_types} => Array&lt;Types::ActionType&gt;
@@ -1312,6 +1402,7 @@ module Aws::CodePipeline
1312
1402
  # resp = client.list_action_types({
1313
1403
  # action_owner_filter: "AWS", # accepts AWS, ThirdParty, Custom
1314
1404
  # next_token: "NextToken",
1405
+ # region_filter: "AWSRegionName",
1315
1406
  # })
1316
1407
  #
1317
1408
  # @example Response structure
@@ -1384,7 +1475,7 @@ module Aws::CodePipeline
1384
1475
  #
1385
1476
  # resp.pipeline_execution_summaries #=> Array
1386
1477
  # resp.pipeline_execution_summaries[0].pipeline_execution_id #=> String
1387
- # resp.pipeline_execution_summaries[0].status #=> String, one of "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
1478
+ # resp.pipeline_execution_summaries[0].status #=> String, one of "Cancelled", "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
1388
1479
  # resp.pipeline_execution_summaries[0].start_time #=> Time
1389
1480
  # resp.pipeline_execution_summaries[0].last_update_time #=> Time
1390
1481
  # resp.pipeline_execution_summaries[0].source_revisions #=> Array
@@ -2267,6 +2358,80 @@ module Aws::CodePipeline
2267
2358
  req.send_request(options)
2268
2359
  end
2269
2360
 
2361
+ # Updates an action type that has been created with any supported
2362
+ # integration model, where the action type is to be used by customers of
2363
+ # the action type provider. Use a JSON file with the action definition
2364
+ # and `UpdateActionType` to provide the full structure.
2365
+ #
2366
+ # @option params [Types::ActionTypeDeclaration] :action_type
2367
+ # The action type definition for the action type to be updated.
2368
+ #
2369
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2370
+ #
2371
+ # @example Request syntax with placeholder values
2372
+ #
2373
+ # resp = client.update_action_type({
2374
+ # action_type: {
2375
+ # description: "ActionTypeDescription",
2376
+ # executor: { # required
2377
+ # configuration: { # required
2378
+ # lambda_executor_configuration: {
2379
+ # lambda_function_arn: "LambdaFunctionArn", # required
2380
+ # },
2381
+ # job_worker_executor_configuration: {
2382
+ # polling_accounts: ["AccountId"],
2383
+ # polling_service_principals: ["ServicePrincipal"],
2384
+ # },
2385
+ # },
2386
+ # type: "JobWorker", # required, accepts JobWorker, Lambda
2387
+ # policy_statements_template: "PolicyStatementsTemplate",
2388
+ # job_timeout: 1,
2389
+ # },
2390
+ # id: { # required
2391
+ # category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
2392
+ # owner: "ActionTypeOwner", # required
2393
+ # provider: "ActionProvider", # required
2394
+ # version: "Version", # required
2395
+ # },
2396
+ # input_artifact_details: { # required
2397
+ # minimum_count: 1, # required
2398
+ # maximum_count: 1, # required
2399
+ # },
2400
+ # output_artifact_details: { # required
2401
+ # minimum_count: 1, # required
2402
+ # maximum_count: 1, # required
2403
+ # },
2404
+ # permissions: {
2405
+ # allowed_accounts: ["AllowedAccount"], # required
2406
+ # },
2407
+ # properties: [
2408
+ # {
2409
+ # name: "ActionConfigurationKey", # required
2410
+ # optional: false, # required
2411
+ # key: false, # required
2412
+ # no_echo: false, # required
2413
+ # queryable: false,
2414
+ # description: "PropertyDescription",
2415
+ # },
2416
+ # ],
2417
+ # urls: {
2418
+ # configuration_url: "Url",
2419
+ # entity_url_template: "UrlTemplate",
2420
+ # execution_url_template: "UrlTemplate",
2421
+ # revision_url_template: "UrlTemplate",
2422
+ # },
2423
+ # },
2424
+ # })
2425
+ #
2426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdateActionType AWS API Documentation
2427
+ #
2428
+ # @overload update_action_type(params = {})
2429
+ # @param [Hash] params ({})
2430
+ def update_action_type(params = {}, options = {})
2431
+ req = build_request(:update_action_type, params)
2432
+ req.send_request(options)
2433
+ end
2434
+
2270
2435
  # Updates a specified pipeline with edits or changes to its structure.
2271
2436
  # Use a JSON file with the pipeline structure and `UpdatePipeline` to
2272
2437
  # provide the full structure of the pipeline. Updating the pipeline
@@ -2404,7 +2569,7 @@ module Aws::CodePipeline
2404
2569
  params: params,
2405
2570
  config: config)
2406
2571
  context[:gem_name] = 'aws-sdk-codepipeline'
2407
- context[:gem_version] = '1.36.0'
2572
+ context[:gem_version] = '1.41.0'
2408
2573
  Seahorse::Client::Request.new(handlers, context)
2409
2574
  end
2410
2575
 
@@ -52,10 +52,23 @@ module Aws::CodePipeline
52
52
  ActionState = Shapes::StructureShape.new(name: 'ActionState')
53
53
  ActionStateList = Shapes::ListShape.new(name: 'ActionStateList')
54
54
  ActionType = Shapes::StructureShape.new(name: 'ActionType')
55
+ ActionTypeAlreadyExistsException = Shapes::StructureShape.new(name: 'ActionTypeAlreadyExistsException')
56
+ ActionTypeArtifactDetails = Shapes::StructureShape.new(name: 'ActionTypeArtifactDetails')
57
+ ActionTypeDeclaration = Shapes::StructureShape.new(name: 'ActionTypeDeclaration')
58
+ ActionTypeDescription = Shapes::StringShape.new(name: 'ActionTypeDescription')
59
+ ActionTypeExecutor = Shapes::StructureShape.new(name: 'ActionTypeExecutor')
55
60
  ActionTypeId = Shapes::StructureShape.new(name: 'ActionTypeId')
61
+ ActionTypeIdentifier = Shapes::StructureShape.new(name: 'ActionTypeIdentifier')
56
62
  ActionTypeList = Shapes::ListShape.new(name: 'ActionTypeList')
57
63
  ActionTypeNotFoundException = Shapes::StructureShape.new(name: 'ActionTypeNotFoundException')
64
+ ActionTypeOwner = Shapes::StringShape.new(name: 'ActionTypeOwner')
65
+ ActionTypePermissions = Shapes::StructureShape.new(name: 'ActionTypePermissions')
66
+ ActionTypeProperties = Shapes::ListShape.new(name: 'ActionTypeProperties')
67
+ ActionTypeProperty = Shapes::StructureShape.new(name: 'ActionTypeProperty')
58
68
  ActionTypeSettings = Shapes::StructureShape.new(name: 'ActionTypeSettings')
69
+ ActionTypeUrls = Shapes::StructureShape.new(name: 'ActionTypeUrls')
70
+ AllowedAccount = Shapes::StringShape.new(name: 'AllowedAccount')
71
+ AllowedAccounts = Shapes::ListShape.new(name: 'AllowedAccounts')
59
72
  ApprovalAlreadyCompletedException = Shapes::StructureShape.new(name: 'ApprovalAlreadyCompletedException')
60
73
  ApprovalResult = Shapes::StructureShape.new(name: 'ApprovalResult')
61
74
  ApprovalStatus = Shapes::StringShape.new(name: 'ApprovalStatus')
@@ -84,6 +97,7 @@ module Aws::CodePipeline
84
97
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
85
98
  Code = Shapes::StringShape.new(name: 'Code')
86
99
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
100
+ ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
87
101
  ContinuationToken = Shapes::StringShape.new(name: 'ContinuationToken')
88
102
  CreateCustomActionTypeInput = Shapes::StructureShape.new(name: 'CreateCustomActionTypeInput')
89
103
  CreateCustomActionTypeOutput = Shapes::StructureShape.new(name: 'CreateCustomActionTypeOutput')
@@ -110,10 +124,14 @@ module Aws::CodePipeline
110
124
  ExecutionId = Shapes::StringShape.new(name: 'ExecutionId')
111
125
  ExecutionSummary = Shapes::StringShape.new(name: 'ExecutionSummary')
112
126
  ExecutionTrigger = Shapes::StructureShape.new(name: 'ExecutionTrigger')
127
+ ExecutorConfiguration = Shapes::StructureShape.new(name: 'ExecutorConfiguration')
128
+ ExecutorType = Shapes::StringShape.new(name: 'ExecutorType')
113
129
  ExternalExecutionId = Shapes::StringShape.new(name: 'ExternalExecutionId')
114
130
  ExternalExecutionSummary = Shapes::StringShape.new(name: 'ExternalExecutionSummary')
115
131
  FailureDetails = Shapes::StructureShape.new(name: 'FailureDetails')
116
132
  FailureType = Shapes::StringShape.new(name: 'FailureType')
133
+ GetActionTypeInput = Shapes::StructureShape.new(name: 'GetActionTypeInput')
134
+ GetActionTypeOutput = Shapes::StructureShape.new(name: 'GetActionTypeOutput')
117
135
  GetJobDetailsInput = Shapes::StructureShape.new(name: 'GetJobDetailsInput')
118
136
  GetJobDetailsOutput = Shapes::StructureShape.new(name: 'GetJobDetailsOutput')
119
137
  GetPipelineExecutionInput = Shapes::StructureShape.new(name: 'GetPipelineExecutionInput')
@@ -147,7 +165,11 @@ module Aws::CodePipeline
147
165
  JobList = Shapes::ListShape.new(name: 'JobList')
148
166
  JobNotFoundException = Shapes::StructureShape.new(name: 'JobNotFoundException')
149
167
  JobStatus = Shapes::StringShape.new(name: 'JobStatus')
168
+ JobTimeout = Shapes::IntegerShape.new(name: 'JobTimeout')
169
+ JobWorkerExecutorConfiguration = Shapes::StructureShape.new(name: 'JobWorkerExecutorConfiguration')
150
170
  JsonPath = Shapes::StringShape.new(name: 'JsonPath')
171
+ LambdaExecutorConfiguration = Shapes::StructureShape.new(name: 'LambdaExecutorConfiguration')
172
+ LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
151
173
  LastChangedAt = Shapes::TimestampShape.new(name: 'LastChangedAt')
152
174
  LastChangedBy = Shapes::StringShape.new(name: 'LastChangedBy')
153
175
  LastUpdatedBy = Shapes::StringShape.new(name: 'LastUpdatedBy')
@@ -168,8 +190,10 @@ module Aws::CodePipeline
168
190
  MatchEquals = Shapes::StringShape.new(name: 'MatchEquals')
169
191
  MaxBatchSize = Shapes::IntegerShape.new(name: 'MaxBatchSize')
170
192
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
193
+ MaximumActionTypeArtifactCount = Shapes::IntegerShape.new(name: 'MaximumActionTypeArtifactCount')
171
194
  MaximumArtifactCount = Shapes::IntegerShape.new(name: 'MaximumArtifactCount')
172
195
  Message = Shapes::StringShape.new(name: 'Message')
196
+ MinimumActionTypeArtifactCount = Shapes::IntegerShape.new(name: 'MinimumActionTypeArtifactCount')
173
197
  MinimumArtifactCount = Shapes::IntegerShape.new(name: 'MinimumArtifactCount')
174
198
  NextToken = Shapes::StringShape.new(name: 'NextToken')
175
199
  Nonce = Shapes::StringShape.new(name: 'Nonce')
@@ -189,6 +213,7 @@ module Aws::CodePipeline
189
213
  PipelineExecutionNotFoundException = Shapes::StructureShape.new(name: 'PipelineExecutionNotFoundException')
190
214
  PipelineExecutionNotStoppableException = Shapes::StructureShape.new(name: 'PipelineExecutionNotStoppableException')
191
215
  PipelineExecutionStatus = Shapes::StringShape.new(name: 'PipelineExecutionStatus')
216
+ PipelineExecutionStatusSummary = Shapes::StringShape.new(name: 'PipelineExecutionStatusSummary')
192
217
  PipelineExecutionSummary = Shapes::StructureShape.new(name: 'PipelineExecutionSummary')
193
218
  PipelineExecutionSummaryList = Shapes::ListShape.new(name: 'PipelineExecutionSummaryList')
194
219
  PipelineList = Shapes::ListShape.new(name: 'PipelineList')
@@ -200,10 +225,14 @@ module Aws::CodePipeline
200
225
  PipelineSummary = Shapes::StructureShape.new(name: 'PipelineSummary')
201
226
  PipelineVersion = Shapes::IntegerShape.new(name: 'PipelineVersion')
202
227
  PipelineVersionNotFoundException = Shapes::StructureShape.new(name: 'PipelineVersionNotFoundException')
228
+ PolicyStatementsTemplate = Shapes::StringShape.new(name: 'PolicyStatementsTemplate')
203
229
  PollForJobsInput = Shapes::StructureShape.new(name: 'PollForJobsInput')
204
230
  PollForJobsOutput = Shapes::StructureShape.new(name: 'PollForJobsOutput')
205
231
  PollForThirdPartyJobsInput = Shapes::StructureShape.new(name: 'PollForThirdPartyJobsInput')
206
232
  PollForThirdPartyJobsOutput = Shapes::StructureShape.new(name: 'PollForThirdPartyJobsOutput')
233
+ PollingAccountList = Shapes::ListShape.new(name: 'PollingAccountList')
234
+ PollingServicePrincipalList = Shapes::ListShape.new(name: 'PollingServicePrincipalList')
235
+ PropertyDescription = Shapes::StringShape.new(name: 'PropertyDescription')
207
236
  PutActionRevisionInput = Shapes::StructureShape.new(name: 'PutActionRevisionInput')
208
237
  PutActionRevisionOutput = Shapes::StructureShape.new(name: 'PutActionRevisionOutput')
209
238
  PutApprovalResultInput = Shapes::StructureShape.new(name: 'PutApprovalResultInput')
@@ -217,6 +246,7 @@ module Aws::CodePipeline
217
246
  QueryParamMap = Shapes::MapShape.new(name: 'QueryParamMap')
218
247
  RegisterWebhookWithThirdPartyInput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyInput')
219
248
  RegisterWebhookWithThirdPartyOutput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyOutput')
249
+ RequestFailedException = Shapes::StructureShape.new(name: 'RequestFailedException')
220
250
  ResolvedActionConfigurationMap = Shapes::MapShape.new(name: 'ResolvedActionConfigurationMap')
221
251
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
222
252
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
@@ -233,6 +263,7 @@ module Aws::CodePipeline
233
263
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
234
264
  S3ObjectKey = Shapes::StringShape.new(name: 'S3ObjectKey')
235
265
  SecretAccessKey = Shapes::StringShape.new(name: 'SecretAccessKey')
266
+ ServicePrincipal = Shapes::StringShape.new(name: 'ServicePrincipal')
236
267
  SessionToken = Shapes::StringShape.new(name: 'SessionToken')
237
268
  SourceRevision = Shapes::StructureShape.new(name: 'SourceRevision')
238
269
  SourceRevisionList = Shapes::ListShape.new(name: 'SourceRevisionList')
@@ -276,6 +307,7 @@ module Aws::CodePipeline
276
307
  TriggerType = Shapes::StringShape.new(name: 'TriggerType')
277
308
  UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
278
309
  UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
310
+ UpdateActionTypeInput = Shapes::StructureShape.new(name: 'UpdateActionTypeInput')
279
311
  UpdatePipelineInput = Shapes::StructureShape.new(name: 'UpdatePipelineInput')
280
312
  UpdatePipelineOutput = Shapes::StructureShape.new(name: 'UpdatePipelineOutput')
281
313
  Url = Shapes::StringShape.new(name: 'Url')
@@ -350,6 +382,7 @@ module Aws::CodePipeline
350
382
  ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
351
383
  ActionDeclaration.struct_class = Types::ActionDeclaration
352
384
 
385
+ ActionExecution.add_member(:action_execution_id, Shapes::ShapeRef.new(shape: ActionExecutionId, location_name: "actionExecutionId"))
353
386
  ActionExecution.add_member(:status, Shapes::ShapeRef.new(shape: ActionExecutionStatus, location_name: "status"))
354
387
  ActionExecution.add_member(:summary, Shapes::ShapeRef.new(shape: ExecutionSummary, location_name: "summary"))
355
388
  ActionExecution.add_member(:last_status_change, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastStatusChange"))
@@ -420,22 +453,71 @@ module Aws::CodePipeline
420
453
  ActionType.add_member(:output_artifact_details, Shapes::ShapeRef.new(shape: ArtifactDetails, required: true, location_name: "outputArtifactDetails"))
421
454
  ActionType.struct_class = Types::ActionType
422
455
 
456
+ ActionTypeAlreadyExistsException.struct_class = Types::ActionTypeAlreadyExistsException
457
+
458
+ ActionTypeArtifactDetails.add_member(:minimum_count, Shapes::ShapeRef.new(shape: MinimumActionTypeArtifactCount, required: true, location_name: "minimumCount"))
459
+ ActionTypeArtifactDetails.add_member(:maximum_count, Shapes::ShapeRef.new(shape: MaximumActionTypeArtifactCount, required: true, location_name: "maximumCount"))
460
+ ActionTypeArtifactDetails.struct_class = Types::ActionTypeArtifactDetails
461
+
462
+ ActionTypeDeclaration.add_member(:description, Shapes::ShapeRef.new(shape: ActionTypeDescription, location_name: "description"))
463
+ ActionTypeDeclaration.add_member(:executor, Shapes::ShapeRef.new(shape: ActionTypeExecutor, required: true, location_name: "executor"))
464
+ ActionTypeDeclaration.add_member(:id, Shapes::ShapeRef.new(shape: ActionTypeIdentifier, required: true, location_name: "id"))
465
+ ActionTypeDeclaration.add_member(:input_artifact_details, Shapes::ShapeRef.new(shape: ActionTypeArtifactDetails, required: true, location_name: "inputArtifactDetails"))
466
+ ActionTypeDeclaration.add_member(:output_artifact_details, Shapes::ShapeRef.new(shape: ActionTypeArtifactDetails, required: true, location_name: "outputArtifactDetails"))
467
+ ActionTypeDeclaration.add_member(:permissions, Shapes::ShapeRef.new(shape: ActionTypePermissions, location_name: "permissions"))
468
+ ActionTypeDeclaration.add_member(:properties, Shapes::ShapeRef.new(shape: ActionTypeProperties, location_name: "properties"))
469
+ ActionTypeDeclaration.add_member(:urls, Shapes::ShapeRef.new(shape: ActionTypeUrls, location_name: "urls"))
470
+ ActionTypeDeclaration.struct_class = Types::ActionTypeDeclaration
471
+
472
+ ActionTypeExecutor.add_member(:configuration, Shapes::ShapeRef.new(shape: ExecutorConfiguration, required: true, location_name: "configuration"))
473
+ ActionTypeExecutor.add_member(:type, Shapes::ShapeRef.new(shape: ExecutorType, required: true, location_name: "type"))
474
+ ActionTypeExecutor.add_member(:policy_statements_template, Shapes::ShapeRef.new(shape: PolicyStatementsTemplate, location_name: "policyStatementsTemplate"))
475
+ ActionTypeExecutor.add_member(:job_timeout, Shapes::ShapeRef.new(shape: JobTimeout, location_name: "jobTimeout"))
476
+ ActionTypeExecutor.struct_class = Types::ActionTypeExecutor
477
+
423
478
  ActionTypeId.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
424
479
  ActionTypeId.add_member(:owner, Shapes::ShapeRef.new(shape: ActionOwner, required: true, location_name: "owner"))
425
480
  ActionTypeId.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
426
481
  ActionTypeId.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
427
482
  ActionTypeId.struct_class = Types::ActionTypeId
428
483
 
484
+ ActionTypeIdentifier.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
485
+ ActionTypeIdentifier.add_member(:owner, Shapes::ShapeRef.new(shape: ActionTypeOwner, required: true, location_name: "owner"))
486
+ ActionTypeIdentifier.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
487
+ ActionTypeIdentifier.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
488
+ ActionTypeIdentifier.struct_class = Types::ActionTypeIdentifier
489
+
429
490
  ActionTypeList.member = Shapes::ShapeRef.new(shape: ActionType)
430
491
 
431
492
  ActionTypeNotFoundException.struct_class = Types::ActionTypeNotFoundException
432
493
 
494
+ ActionTypePermissions.add_member(:allowed_accounts, Shapes::ShapeRef.new(shape: AllowedAccounts, required: true, location_name: "allowedAccounts"))
495
+ ActionTypePermissions.struct_class = Types::ActionTypePermissions
496
+
497
+ ActionTypeProperties.member = Shapes::ShapeRef.new(shape: ActionTypeProperty)
498
+
499
+ ActionTypeProperty.add_member(:name, Shapes::ShapeRef.new(shape: ActionConfigurationKey, required: true, location_name: "name"))
500
+ ActionTypeProperty.add_member(:optional, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "optional"))
501
+ ActionTypeProperty.add_member(:key, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "key"))
502
+ ActionTypeProperty.add_member(:no_echo, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "noEcho"))
503
+ ActionTypeProperty.add_member(:queryable, Shapes::ShapeRef.new(shape: Boolean, location_name: "queryable"))
504
+ ActionTypeProperty.add_member(:description, Shapes::ShapeRef.new(shape: PropertyDescription, location_name: "description"))
505
+ ActionTypeProperty.struct_class = Types::ActionTypeProperty
506
+
433
507
  ActionTypeSettings.add_member(:third_party_configuration_url, Shapes::ShapeRef.new(shape: Url, location_name: "thirdPartyConfigurationUrl"))
434
508
  ActionTypeSettings.add_member(:entity_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "entityUrlTemplate"))
435
509
  ActionTypeSettings.add_member(:execution_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "executionUrlTemplate"))
436
510
  ActionTypeSettings.add_member(:revision_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "revisionUrlTemplate"))
437
511
  ActionTypeSettings.struct_class = Types::ActionTypeSettings
438
512
 
513
+ ActionTypeUrls.add_member(:configuration_url, Shapes::ShapeRef.new(shape: Url, location_name: "configurationUrl"))
514
+ ActionTypeUrls.add_member(:entity_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "entityUrlTemplate"))
515
+ ActionTypeUrls.add_member(:execution_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "executionUrlTemplate"))
516
+ ActionTypeUrls.add_member(:revision_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "revisionUrlTemplate"))
517
+ ActionTypeUrls.struct_class = Types::ActionTypeUrls
518
+
519
+ AllowedAccounts.member = Shapes::ShapeRef.new(shape: AllowedAccount)
520
+
439
521
  ApprovalAlreadyCompletedException.struct_class = Types::ApprovalAlreadyCompletedException
440
522
 
441
523
  ApprovalResult.add_member(:summary, Shapes::ShapeRef.new(shape: ApprovalSummary, required: true, location_name: "summary"))
@@ -488,6 +570,9 @@ module Aws::CodePipeline
488
570
  ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
489
571
  ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
490
572
 
573
+ ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
574
+ ConflictException.struct_class = Types::ConflictException
575
+
491
576
  CreateCustomActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
492
577
  CreateCustomActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
493
578
  CreateCustomActionTypeInput.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
@@ -565,11 +650,24 @@ module Aws::CodePipeline
565
650
  ExecutionTrigger.add_member(:trigger_detail, Shapes::ShapeRef.new(shape: TriggerDetail, location_name: "triggerDetail"))
566
651
  ExecutionTrigger.struct_class = Types::ExecutionTrigger
567
652
 
653
+ ExecutorConfiguration.add_member(:lambda_executor_configuration, Shapes::ShapeRef.new(shape: LambdaExecutorConfiguration, location_name: "lambdaExecutorConfiguration"))
654
+ ExecutorConfiguration.add_member(:job_worker_executor_configuration, Shapes::ShapeRef.new(shape: JobWorkerExecutorConfiguration, location_name: "jobWorkerExecutorConfiguration"))
655
+ ExecutorConfiguration.struct_class = Types::ExecutorConfiguration
656
+
568
657
  FailureDetails.add_member(:type, Shapes::ShapeRef.new(shape: FailureType, required: true, location_name: "type"))
569
658
  FailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
570
659
  FailureDetails.add_member(:external_execution_id, Shapes::ShapeRef.new(shape: ExecutionId, location_name: "externalExecutionId"))
571
660
  FailureDetails.struct_class = Types::FailureDetails
572
661
 
662
+ GetActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
663
+ GetActionTypeInput.add_member(:owner, Shapes::ShapeRef.new(shape: ActionTypeOwner, required: true, location_name: "owner"))
664
+ GetActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
665
+ GetActionTypeInput.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
666
+ GetActionTypeInput.struct_class = Types::GetActionTypeInput
667
+
668
+ GetActionTypeOutput.add_member(:action_type, Shapes::ShapeRef.new(shape: ActionTypeDeclaration, location_name: "actionType"))
669
+ GetActionTypeOutput.struct_class = Types::GetActionTypeOutput
670
+
573
671
  GetJobDetailsInput.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "jobId"))
574
672
  GetJobDetailsInput.struct_class = Types::GetJobDetailsInput
575
673
 
@@ -668,6 +766,13 @@ module Aws::CodePipeline
668
766
 
669
767
  JobNotFoundException.struct_class = Types::JobNotFoundException
670
768
 
769
+ JobWorkerExecutorConfiguration.add_member(:polling_accounts, Shapes::ShapeRef.new(shape: PollingAccountList, location_name: "pollingAccounts"))
770
+ JobWorkerExecutorConfiguration.add_member(:polling_service_principals, Shapes::ShapeRef.new(shape: PollingServicePrincipalList, location_name: "pollingServicePrincipals"))
771
+ JobWorkerExecutorConfiguration.struct_class = Types::JobWorkerExecutorConfiguration
772
+
773
+ LambdaExecutorConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "lambdaFunctionArn"))
774
+ LambdaExecutorConfiguration.struct_class = Types::LambdaExecutorConfiguration
775
+
671
776
  LimitExceededException.struct_class = Types::LimitExceededException
672
777
 
673
778
  ListActionExecutionsInput.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "pipelineName"))
@@ -682,6 +787,7 @@ module Aws::CodePipeline
682
787
 
683
788
  ListActionTypesInput.add_member(:action_owner_filter, Shapes::ShapeRef.new(shape: ActionOwner, location_name: "actionOwnerFilter"))
684
789
  ListActionTypesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
790
+ ListActionTypesInput.add_member(:region_filter, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "regionFilter"))
685
791
  ListActionTypesInput.struct_class = Types::ListActionTypesInput
686
792
 
687
793
  ListActionTypesOutput.add_member(:action_types, Shapes::ShapeRef.new(shape: ActionTypeList, required: true, location_name: "actionTypes"))
@@ -762,6 +868,7 @@ module Aws::CodePipeline
762
868
  PipelineExecution.add_member(:pipeline_version, Shapes::ShapeRef.new(shape: PipelineVersion, location_name: "pipelineVersion"))
763
869
  PipelineExecution.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, location_name: "pipelineExecutionId"))
764
870
  PipelineExecution.add_member(:status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "status"))
871
+ PipelineExecution.add_member(:status_summary, Shapes::ShapeRef.new(shape: PipelineExecutionStatusSummary, location_name: "statusSummary"))
765
872
  PipelineExecution.add_member(:artifact_revisions, Shapes::ShapeRef.new(shape: ArtifactRevisionList, location_name: "artifactRevisions"))
766
873
  PipelineExecution.struct_class = Types::PipelineExecution
767
874
 
@@ -817,6 +924,10 @@ module Aws::CodePipeline
817
924
  PollForThirdPartyJobsOutput.add_member(:jobs, Shapes::ShapeRef.new(shape: ThirdPartyJobList, location_name: "jobs"))
818
925
  PollForThirdPartyJobsOutput.struct_class = Types::PollForThirdPartyJobsOutput
819
926
 
927
+ PollingAccountList.member = Shapes::ShapeRef.new(shape: AccountId)
928
+
929
+ PollingServicePrincipalList.member = Shapes::ShapeRef.new(shape: ServicePrincipal)
930
+
820
931
  PutActionRevisionInput.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "pipelineName"))
821
932
  PutActionRevisionInput.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, required: true, location_name: "stageName"))
822
933
  PutActionRevisionInput.add_member(:action_name, Shapes::ShapeRef.new(shape: ActionName, required: true, location_name: "actionName"))
@@ -875,6 +986,9 @@ module Aws::CodePipeline
875
986
 
876
987
  RegisterWebhookWithThirdPartyOutput.struct_class = Types::RegisterWebhookWithThirdPartyOutput
877
988
 
989
+ RequestFailedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
990
+ RequestFailedException.struct_class = Types::RequestFailedException
991
+
878
992
  ResolvedActionConfigurationMap.key = Shapes::ShapeRef.new(shape: String)
879
993
  ResolvedActionConfigurationMap.value = Shapes::ShapeRef.new(shape: String)
880
994
 
@@ -926,6 +1040,7 @@ module Aws::CodePipeline
926
1040
  StageNotRetryableException.struct_class = Types::StageNotRetryableException
927
1041
 
928
1042
  StageState.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, location_name: "stageName"))
1043
+ StageState.add_member(:inbound_execution, Shapes::ShapeRef.new(shape: StageExecution, location_name: "inboundExecution"))
929
1044
  StageState.add_member(:inbound_transition_state, Shapes::ShapeRef.new(shape: TransitionState, location_name: "inboundTransitionState"))
930
1045
  StageState.add_member(:action_states, Shapes::ShapeRef.new(shape: ActionStateList, location_name: "actionStates"))
931
1046
  StageState.add_member(:latest_execution, Shapes::ShapeRef.new(shape: StageExecution, location_name: "latestExecution"))
@@ -1002,6 +1117,9 @@ module Aws::CodePipeline
1002
1117
 
1003
1118
  UntagResourceOutput.struct_class = Types::UntagResourceOutput
1004
1119
 
1120
+ UpdateActionTypeInput.add_member(:action_type, Shapes::ShapeRef.new(shape: ActionTypeDeclaration, location_name: "actionType"))
1121
+ UpdateActionTypeInput.struct_class = Types::UpdateActionTypeInput
1122
+
1005
1123
  UpdatePipelineInput.add_member(:pipeline, Shapes::ShapeRef.new(shape: PipelineDeclaration, required: true, location_name: "pipeline"))
1006
1124
  UpdatePipelineInput.struct_class = Types::UpdatePipelineInput
1007
1125
 
@@ -1167,6 +1285,16 @@ module Aws::CodePipeline
1167
1285
  o.errors << Shapes::ShapeRef.new(shape: StageNotFoundException)
1168
1286
  end)
1169
1287
 
1288
+ api.add_operation(:get_action_type, Seahorse::Model::Operation.new.tap do |o|
1289
+ o.name = "GetActionType"
1290
+ o.http_method = "POST"
1291
+ o.http_request_uri = "/"
1292
+ o.input = Shapes::ShapeRef.new(shape: GetActionTypeInput)
1293
+ o.output = Shapes::ShapeRef.new(shape: GetActionTypeOutput)
1294
+ o.errors << Shapes::ShapeRef.new(shape: ActionTypeNotFoundException)
1295
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1296
+ end)
1297
+
1170
1298
  api.add_operation(:get_job_details, Seahorse::Model::Operation.new.tap do |o|
1171
1299
  o.name = "GetJobDetails"
1172
1300
  o.http_method = "POST"
@@ -1446,6 +1574,7 @@ module Aws::CodePipeline
1446
1574
  o.input = Shapes::ShapeRef.new(shape: RetryStageExecutionInput)
1447
1575
  o.output = Shapes::ShapeRef.new(shape: RetryStageExecutionOutput)
1448
1576
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1577
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1449
1578
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1450
1579
  o.errors << Shapes::ShapeRef.new(shape: StageNotFoundException)
1451
1580
  o.errors << Shapes::ShapeRef.new(shape: StageNotRetryableException)
@@ -1459,6 +1588,7 @@ module Aws::CodePipeline
1459
1588
  o.input = Shapes::ShapeRef.new(shape: StartPipelineExecutionInput)
1460
1589
  o.output = Shapes::ShapeRef.new(shape: StartPipelineExecutionOutput)
1461
1590
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1591
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1462
1592
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1463
1593
  end)
1464
1594
 
@@ -1469,6 +1599,7 @@ module Aws::CodePipeline
1469
1599
  o.input = Shapes::ShapeRef.new(shape: StopPipelineExecutionInput)
1470
1600
  o.output = Shapes::ShapeRef.new(shape: StopPipelineExecutionOutput)
1471
1601
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1602
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1472
1603
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1473
1604
  o.errors << Shapes::ShapeRef.new(shape: PipelineExecutionNotStoppableException)
1474
1605
  o.errors << Shapes::ShapeRef.new(shape: DuplicatedStopRequestException)
@@ -1501,6 +1632,17 @@ module Aws::CodePipeline
1501
1632
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1502
1633
  end)
1503
1634
 
1635
+ api.add_operation(:update_action_type, Seahorse::Model::Operation.new.tap do |o|
1636
+ o.name = "UpdateActionType"
1637
+ o.http_method = "POST"
1638
+ o.http_request_uri = "/"
1639
+ o.input = Shapes::ShapeRef.new(shape: UpdateActionTypeInput)
1640
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1641
+ o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
1642
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1643
+ o.errors << Shapes::ShapeRef.new(shape: ActionTypeNotFoundException)
1644
+ end)
1645
+
1504
1646
  api.add_operation(:update_pipeline, Seahorse::Model::Operation.new.tap do |o|
1505
1647
  o.name = "UpdatePipeline"
1506
1648
  o.http_method = "POST"