aws-sdk-codepipeline 1.37.0 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codepipeline.rb +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +180 -9
- data/lib/aws-sdk-codepipeline/client_api.rb +145 -0
- data/lib/aws-sdk-codepipeline/errors.rb +43 -0
- data/lib/aws-sdk-codepipeline/types.rb +715 -11
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7714560010d850a30c6e85019b5e1a32ec8eff1d3d006c0805e0bca1fd3a1aeb
|
4
|
+
data.tar.gz: 8b39432151c15d179c697cfce5e4377e9154ed087f63add89d8c43c9e4a7dd40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68723fbe652f5bc2ce27f771927d5053f2b78a68d00dc733281d9703012693a55571b2745c962dc312df04bf66567af6472a2838460b9dd889a7c2b77967f03d
|
7
|
+
data.tar.gz: ed25869300e67136a01c8adc004f6904740ffc24b4a3771f4337ddded06ec3c6dba931cf0cf5b7845589c26a013ccc8780e913132e1e891221c6b2bae7fcdd7e
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
@@ -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,93 @@ 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 be created with any supported integration
|
877
|
+
# model.
|
878
|
+
#
|
879
|
+
# @option params [required, String] :category
|
880
|
+
# Defines what kind of action can be taken in the stage. The following
|
881
|
+
# are the valid 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 was created with any supported
|
897
|
+
# integration model. There are two valid values: `AWS` and `ThirdParty`.
|
898
|
+
#
|
899
|
+
# @option params [required, String] :provider
|
900
|
+
# The provider of the action type being called. The provider name is
|
901
|
+
# specified when the action type is created.
|
902
|
+
#
|
903
|
+
# @option params [required, String] :version
|
904
|
+
# A string that describes the action type version.
|
905
|
+
#
|
906
|
+
# @return [Types::GetActionTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
907
|
+
#
|
908
|
+
# * {Types::GetActionTypeOutput#action_type #action_type} => Types::ActionTypeDeclaration
|
909
|
+
#
|
910
|
+
# @example Request syntax with placeholder values
|
911
|
+
#
|
912
|
+
# resp = client.get_action_type({
|
913
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
914
|
+
# owner: "ActionTypeOwner", # required
|
915
|
+
# provider: "ActionProvider", # required
|
916
|
+
# version: "Version", # required
|
917
|
+
# })
|
918
|
+
#
|
919
|
+
# @example Response structure
|
920
|
+
#
|
921
|
+
# resp.action_type.description #=> String
|
922
|
+
# resp.action_type.executor.configuration.lambda_executor_configuration.lambda_function_arn #=> String
|
923
|
+
# resp.action_type.executor.configuration.job_worker_executor_configuration.polling_accounts #=> Array
|
924
|
+
# resp.action_type.executor.configuration.job_worker_executor_configuration.polling_accounts[0] #=> String
|
925
|
+
# resp.action_type.executor.configuration.job_worker_executor_configuration.polling_service_principals #=> Array
|
926
|
+
# resp.action_type.executor.configuration.job_worker_executor_configuration.polling_service_principals[0] #=> String
|
927
|
+
# resp.action_type.executor.type #=> String, one of "JobWorker", "Lambda"
|
928
|
+
# resp.action_type.executor.policy_statements_template #=> String
|
929
|
+
# resp.action_type.executor.job_timeout #=> Integer
|
930
|
+
# resp.action_type.id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
931
|
+
# resp.action_type.id.owner #=> String
|
932
|
+
# resp.action_type.id.provider #=> String
|
933
|
+
# resp.action_type.id.version #=> String
|
934
|
+
# resp.action_type.input_artifact_details.minimum_count #=> Integer
|
935
|
+
# resp.action_type.input_artifact_details.maximum_count #=> Integer
|
936
|
+
# resp.action_type.output_artifact_details.minimum_count #=> Integer
|
937
|
+
# resp.action_type.output_artifact_details.maximum_count #=> Integer
|
938
|
+
# resp.action_type.permissions.allowed_accounts #=> Array
|
939
|
+
# resp.action_type.permissions.allowed_accounts[0] #=> String
|
940
|
+
# resp.action_type.properties #=> Array
|
941
|
+
# resp.action_type.properties[0].name #=> String
|
942
|
+
# resp.action_type.properties[0].optional #=> Boolean
|
943
|
+
# resp.action_type.properties[0].key #=> Boolean
|
944
|
+
# resp.action_type.properties[0].no_echo #=> Boolean
|
945
|
+
# resp.action_type.properties[0].queryable #=> Boolean
|
946
|
+
# resp.action_type.properties[0].description #=> String
|
947
|
+
# resp.action_type.urls.configuration_url #=> String
|
948
|
+
# resp.action_type.urls.entity_url_template #=> String
|
949
|
+
# resp.action_type.urls.execution_url_template #=> String
|
950
|
+
# resp.action_type.urls.revision_url_template #=> String
|
951
|
+
#
|
952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetActionType AWS API Documentation
|
953
|
+
#
|
954
|
+
# @overload get_action_type(params = {})
|
955
|
+
# @param [Hash] params ({})
|
956
|
+
def get_action_type(params = {}, options = {})
|
957
|
+
req = build_request(:get_action_type, params)
|
958
|
+
req.send_request(options)
|
959
|
+
end
|
960
|
+
|
879
961
|
# Returns information about a job. Used for custom actions only.
|
880
962
|
#
|
881
963
|
# When this API is called, AWS CodePipeline returns temporary
|
@@ -1042,7 +1124,8 @@ module Aws::CodePipeline
|
|
1042
1124
|
# resp.pipeline_execution.pipeline_name #=> String
|
1043
1125
|
# resp.pipeline_execution.pipeline_version #=> Integer
|
1044
1126
|
# resp.pipeline_execution.pipeline_execution_id #=> String
|
1045
|
-
# resp.pipeline_execution.status #=> String, one of "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
|
1127
|
+
# resp.pipeline_execution.status #=> String, one of "Cancelled", "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
|
1128
|
+
# resp.pipeline_execution.status_summary #=> String
|
1046
1129
|
# resp.pipeline_execution.artifact_revisions #=> Array
|
1047
1130
|
# resp.pipeline_execution.artifact_revisions[0].name #=> String
|
1048
1131
|
# resp.pipeline_execution.artifact_revisions[0].revision_id #=> String
|
@@ -1092,6 +1175,8 @@ module Aws::CodePipeline
|
|
1092
1175
|
# resp.pipeline_version #=> Integer
|
1093
1176
|
# resp.stage_states #=> Array
|
1094
1177
|
# resp.stage_states[0].stage_name #=> String
|
1178
|
+
# resp.stage_states[0].inbound_execution.pipeline_execution_id #=> String
|
1179
|
+
# resp.stage_states[0].inbound_execution.status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
|
1095
1180
|
# resp.stage_states[0].inbound_transition_state.enabled #=> Boolean
|
1096
1181
|
# resp.stage_states[0].inbound_transition_state.last_changed_by #=> String
|
1097
1182
|
# resp.stage_states[0].inbound_transition_state.last_changed_at #=> Time
|
@@ -1101,6 +1186,7 @@ module Aws::CodePipeline
|
|
1101
1186
|
# resp.stage_states[0].action_states[0].current_revision.revision_id #=> String
|
1102
1187
|
# resp.stage_states[0].action_states[0].current_revision.revision_change_id #=> String
|
1103
1188
|
# resp.stage_states[0].action_states[0].current_revision.created #=> Time
|
1189
|
+
# resp.stage_states[0].action_states[0].latest_execution.action_execution_id #=> String
|
1104
1190
|
# resp.stage_states[0].action_states[0].latest_execution.status #=> String, one of "InProgress", "Abandoned", "Succeeded", "Failed"
|
1105
1191
|
# resp.stage_states[0].action_states[0].latest_execution.summary #=> String
|
1106
1192
|
# resp.stage_states[0].action_states[0].latest_execution.last_status_change #=> Time
|
@@ -1114,7 +1200,7 @@ module Aws::CodePipeline
|
|
1114
1200
|
# resp.stage_states[0].action_states[0].entity_url #=> String
|
1115
1201
|
# resp.stage_states[0].action_states[0].revision_url #=> String
|
1116
1202
|
# 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"
|
1203
|
+
# resp.stage_states[0].latest_execution.status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
|
1118
1204
|
# resp.created #=> Time
|
1119
1205
|
# resp.updated #=> Time
|
1120
1206
|
#
|
@@ -1300,6 +1386,9 @@ module Aws::CodePipeline
|
|
1300
1386
|
# call, which can be used to return the next set of action types in the
|
1301
1387
|
# list.
|
1302
1388
|
#
|
1389
|
+
# @option params [String] :region_filter
|
1390
|
+
# The Region to filter on for the list of action types.
|
1391
|
+
#
|
1303
1392
|
# @return [Types::ListActionTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1304
1393
|
#
|
1305
1394
|
# * {Types::ListActionTypesOutput#action_types #action_types} => Array<Types::ActionType>
|
@@ -1312,6 +1401,7 @@ module Aws::CodePipeline
|
|
1312
1401
|
# resp = client.list_action_types({
|
1313
1402
|
# action_owner_filter: "AWS", # accepts AWS, ThirdParty, Custom
|
1314
1403
|
# next_token: "NextToken",
|
1404
|
+
# region_filter: "AWSRegionName",
|
1315
1405
|
# })
|
1316
1406
|
#
|
1317
1407
|
# @example Response structure
|
@@ -1384,7 +1474,7 @@ module Aws::CodePipeline
|
|
1384
1474
|
#
|
1385
1475
|
# resp.pipeline_execution_summaries #=> Array
|
1386
1476
|
# 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"
|
1477
|
+
# resp.pipeline_execution_summaries[0].status #=> String, one of "Cancelled", "InProgress", "Stopped", "Stopping", "Succeeded", "Superseded", "Failed"
|
1388
1478
|
# resp.pipeline_execution_summaries[0].start_time #=> Time
|
1389
1479
|
# resp.pipeline_execution_summaries[0].last_update_time #=> Time
|
1390
1480
|
# resp.pipeline_execution_summaries[0].source_revisions #=> Array
|
@@ -1412,6 +1502,12 @@ module Aws::CodePipeline
|
|
1412
1502
|
# An identifier that was returned from the previous list pipelines call.
|
1413
1503
|
# It can be used to return the next set of pipelines in the list.
|
1414
1504
|
#
|
1505
|
+
# @option params [Integer] :max_results
|
1506
|
+
# The maximum number of pipelines to return in a single call. To
|
1507
|
+
# retrieve the remaining pipelines, make another call with the returned
|
1508
|
+
# nextToken value. The minimum value you can specify is 1. The maximum
|
1509
|
+
# accepted value is 1000.
|
1510
|
+
#
|
1415
1511
|
# @return [Types::ListPipelinesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1416
1512
|
#
|
1417
1513
|
# * {Types::ListPipelinesOutput#pipelines #pipelines} => Array<Types::PipelineSummary>
|
@@ -1423,6 +1519,7 @@ module Aws::CodePipeline
|
|
1423
1519
|
#
|
1424
1520
|
# resp = client.list_pipelines({
|
1425
1521
|
# next_token: "NextToken",
|
1522
|
+
# max_results: 1,
|
1426
1523
|
# })
|
1427
1524
|
#
|
1428
1525
|
# @example Response structure
|
@@ -2267,6 +2364,80 @@ module Aws::CodePipeline
|
|
2267
2364
|
req.send_request(options)
|
2268
2365
|
end
|
2269
2366
|
|
2367
|
+
# Updates an action type that was created with any supported integration
|
2368
|
+
# model, where the action type is to be used by customers of the action
|
2369
|
+
# type provider. Use a JSON file with the action definition and
|
2370
|
+
# `UpdateActionType` to provide the full structure.
|
2371
|
+
#
|
2372
|
+
# @option params [Types::ActionTypeDeclaration] :action_type
|
2373
|
+
# The action type definition for the action type to be updated.
|
2374
|
+
#
|
2375
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2376
|
+
#
|
2377
|
+
# @example Request syntax with placeholder values
|
2378
|
+
#
|
2379
|
+
# resp = client.update_action_type({
|
2380
|
+
# action_type: {
|
2381
|
+
# description: "ActionTypeDescription",
|
2382
|
+
# executor: { # required
|
2383
|
+
# configuration: { # required
|
2384
|
+
# lambda_executor_configuration: {
|
2385
|
+
# lambda_function_arn: "LambdaFunctionArn", # required
|
2386
|
+
# },
|
2387
|
+
# job_worker_executor_configuration: {
|
2388
|
+
# polling_accounts: ["AccountId"],
|
2389
|
+
# polling_service_principals: ["ServicePrincipal"],
|
2390
|
+
# },
|
2391
|
+
# },
|
2392
|
+
# type: "JobWorker", # required, accepts JobWorker, Lambda
|
2393
|
+
# policy_statements_template: "PolicyStatementsTemplate",
|
2394
|
+
# job_timeout: 1,
|
2395
|
+
# },
|
2396
|
+
# id: { # required
|
2397
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
2398
|
+
# owner: "ActionTypeOwner", # required
|
2399
|
+
# provider: "ActionProvider", # required
|
2400
|
+
# version: "Version", # required
|
2401
|
+
# },
|
2402
|
+
# input_artifact_details: { # required
|
2403
|
+
# minimum_count: 1, # required
|
2404
|
+
# maximum_count: 1, # required
|
2405
|
+
# },
|
2406
|
+
# output_artifact_details: { # required
|
2407
|
+
# minimum_count: 1, # required
|
2408
|
+
# maximum_count: 1, # required
|
2409
|
+
# },
|
2410
|
+
# permissions: {
|
2411
|
+
# allowed_accounts: ["AllowedAccount"], # required
|
2412
|
+
# },
|
2413
|
+
# properties: [
|
2414
|
+
# {
|
2415
|
+
# name: "ActionConfigurationKey", # required
|
2416
|
+
# optional: false, # required
|
2417
|
+
# key: false, # required
|
2418
|
+
# no_echo: false, # required
|
2419
|
+
# queryable: false,
|
2420
|
+
# description: "PropertyDescription",
|
2421
|
+
# },
|
2422
|
+
# ],
|
2423
|
+
# urls: {
|
2424
|
+
# configuration_url: "Url",
|
2425
|
+
# entity_url_template: "UrlTemplate",
|
2426
|
+
# execution_url_template: "UrlTemplate",
|
2427
|
+
# revision_url_template: "UrlTemplate",
|
2428
|
+
# },
|
2429
|
+
# },
|
2430
|
+
# })
|
2431
|
+
#
|
2432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdateActionType AWS API Documentation
|
2433
|
+
#
|
2434
|
+
# @overload update_action_type(params = {})
|
2435
|
+
# @param [Hash] params ({})
|
2436
|
+
def update_action_type(params = {}, options = {})
|
2437
|
+
req = build_request(:update_action_type, params)
|
2438
|
+
req.send_request(options)
|
2439
|
+
end
|
2440
|
+
|
2270
2441
|
# Updates a specified pipeline with edits or changes to its structure.
|
2271
2442
|
# Use a JSON file with the pipeline structure and `UpdatePipeline` to
|
2272
2443
|
# provide the full structure of the pipeline. Updating the pipeline
|
@@ -2404,7 +2575,7 @@ module Aws::CodePipeline
|
|
2404
2575
|
params: params,
|
2405
2576
|
config: config)
|
2406
2577
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
2407
|
-
context[:gem_version] = '1.
|
2578
|
+
context[:gem_version] = '1.42.0'
|
2408
2579
|
Seahorse::Client::Request.new(handlers, context)
|
2409
2580
|
end
|
2410
2581
|
|
@@ -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')
|
@@ -167,9 +189,12 @@ module Aws::CodePipeline
|
|
167
189
|
ListWebhooksOutput = Shapes::StructureShape.new(name: 'ListWebhooksOutput')
|
168
190
|
MatchEquals = Shapes::StringShape.new(name: 'MatchEquals')
|
169
191
|
MaxBatchSize = Shapes::IntegerShape.new(name: 'MaxBatchSize')
|
192
|
+
MaxPipelines = Shapes::IntegerShape.new(name: 'MaxPipelines')
|
170
193
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
194
|
+
MaximumActionTypeArtifactCount = Shapes::IntegerShape.new(name: 'MaximumActionTypeArtifactCount')
|
171
195
|
MaximumArtifactCount = Shapes::IntegerShape.new(name: 'MaximumArtifactCount')
|
172
196
|
Message = Shapes::StringShape.new(name: 'Message')
|
197
|
+
MinimumActionTypeArtifactCount = Shapes::IntegerShape.new(name: 'MinimumActionTypeArtifactCount')
|
173
198
|
MinimumArtifactCount = Shapes::IntegerShape.new(name: 'MinimumArtifactCount')
|
174
199
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
175
200
|
Nonce = Shapes::StringShape.new(name: 'Nonce')
|
@@ -189,6 +214,7 @@ module Aws::CodePipeline
|
|
189
214
|
PipelineExecutionNotFoundException = Shapes::StructureShape.new(name: 'PipelineExecutionNotFoundException')
|
190
215
|
PipelineExecutionNotStoppableException = Shapes::StructureShape.new(name: 'PipelineExecutionNotStoppableException')
|
191
216
|
PipelineExecutionStatus = Shapes::StringShape.new(name: 'PipelineExecutionStatus')
|
217
|
+
PipelineExecutionStatusSummary = Shapes::StringShape.new(name: 'PipelineExecutionStatusSummary')
|
192
218
|
PipelineExecutionSummary = Shapes::StructureShape.new(name: 'PipelineExecutionSummary')
|
193
219
|
PipelineExecutionSummaryList = Shapes::ListShape.new(name: 'PipelineExecutionSummaryList')
|
194
220
|
PipelineList = Shapes::ListShape.new(name: 'PipelineList')
|
@@ -200,10 +226,14 @@ module Aws::CodePipeline
|
|
200
226
|
PipelineSummary = Shapes::StructureShape.new(name: 'PipelineSummary')
|
201
227
|
PipelineVersion = Shapes::IntegerShape.new(name: 'PipelineVersion')
|
202
228
|
PipelineVersionNotFoundException = Shapes::StructureShape.new(name: 'PipelineVersionNotFoundException')
|
229
|
+
PolicyStatementsTemplate = Shapes::StringShape.new(name: 'PolicyStatementsTemplate')
|
203
230
|
PollForJobsInput = Shapes::StructureShape.new(name: 'PollForJobsInput')
|
204
231
|
PollForJobsOutput = Shapes::StructureShape.new(name: 'PollForJobsOutput')
|
205
232
|
PollForThirdPartyJobsInput = Shapes::StructureShape.new(name: 'PollForThirdPartyJobsInput')
|
206
233
|
PollForThirdPartyJobsOutput = Shapes::StructureShape.new(name: 'PollForThirdPartyJobsOutput')
|
234
|
+
PollingAccountList = Shapes::ListShape.new(name: 'PollingAccountList')
|
235
|
+
PollingServicePrincipalList = Shapes::ListShape.new(name: 'PollingServicePrincipalList')
|
236
|
+
PropertyDescription = Shapes::StringShape.new(name: 'PropertyDescription')
|
207
237
|
PutActionRevisionInput = Shapes::StructureShape.new(name: 'PutActionRevisionInput')
|
208
238
|
PutActionRevisionOutput = Shapes::StructureShape.new(name: 'PutActionRevisionOutput')
|
209
239
|
PutApprovalResultInput = Shapes::StructureShape.new(name: 'PutApprovalResultInput')
|
@@ -217,6 +247,7 @@ module Aws::CodePipeline
|
|
217
247
|
QueryParamMap = Shapes::MapShape.new(name: 'QueryParamMap')
|
218
248
|
RegisterWebhookWithThirdPartyInput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyInput')
|
219
249
|
RegisterWebhookWithThirdPartyOutput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyOutput')
|
250
|
+
RequestFailedException = Shapes::StructureShape.new(name: 'RequestFailedException')
|
220
251
|
ResolvedActionConfigurationMap = Shapes::MapShape.new(name: 'ResolvedActionConfigurationMap')
|
221
252
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
222
253
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
@@ -233,6 +264,7 @@ module Aws::CodePipeline
|
|
233
264
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
234
265
|
S3ObjectKey = Shapes::StringShape.new(name: 'S3ObjectKey')
|
235
266
|
SecretAccessKey = Shapes::StringShape.new(name: 'SecretAccessKey')
|
267
|
+
ServicePrincipal = Shapes::StringShape.new(name: 'ServicePrincipal')
|
236
268
|
SessionToken = Shapes::StringShape.new(name: 'SessionToken')
|
237
269
|
SourceRevision = Shapes::StructureShape.new(name: 'SourceRevision')
|
238
270
|
SourceRevisionList = Shapes::ListShape.new(name: 'SourceRevisionList')
|
@@ -276,6 +308,7 @@ module Aws::CodePipeline
|
|
276
308
|
TriggerType = Shapes::StringShape.new(name: 'TriggerType')
|
277
309
|
UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
|
278
310
|
UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
|
311
|
+
UpdateActionTypeInput = Shapes::StructureShape.new(name: 'UpdateActionTypeInput')
|
279
312
|
UpdatePipelineInput = Shapes::StructureShape.new(name: 'UpdatePipelineInput')
|
280
313
|
UpdatePipelineOutput = Shapes::StructureShape.new(name: 'UpdatePipelineOutput')
|
281
314
|
Url = Shapes::StringShape.new(name: 'Url')
|
@@ -350,6 +383,7 @@ module Aws::CodePipeline
|
|
350
383
|
ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
|
351
384
|
ActionDeclaration.struct_class = Types::ActionDeclaration
|
352
385
|
|
386
|
+
ActionExecution.add_member(:action_execution_id, Shapes::ShapeRef.new(shape: ActionExecutionId, location_name: "actionExecutionId"))
|
353
387
|
ActionExecution.add_member(:status, Shapes::ShapeRef.new(shape: ActionExecutionStatus, location_name: "status"))
|
354
388
|
ActionExecution.add_member(:summary, Shapes::ShapeRef.new(shape: ExecutionSummary, location_name: "summary"))
|
355
389
|
ActionExecution.add_member(:last_status_change, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastStatusChange"))
|
@@ -420,22 +454,71 @@ module Aws::CodePipeline
|
|
420
454
|
ActionType.add_member(:output_artifact_details, Shapes::ShapeRef.new(shape: ArtifactDetails, required: true, location_name: "outputArtifactDetails"))
|
421
455
|
ActionType.struct_class = Types::ActionType
|
422
456
|
|
457
|
+
ActionTypeAlreadyExistsException.struct_class = Types::ActionTypeAlreadyExistsException
|
458
|
+
|
459
|
+
ActionTypeArtifactDetails.add_member(:minimum_count, Shapes::ShapeRef.new(shape: MinimumActionTypeArtifactCount, required: true, location_name: "minimumCount"))
|
460
|
+
ActionTypeArtifactDetails.add_member(:maximum_count, Shapes::ShapeRef.new(shape: MaximumActionTypeArtifactCount, required: true, location_name: "maximumCount"))
|
461
|
+
ActionTypeArtifactDetails.struct_class = Types::ActionTypeArtifactDetails
|
462
|
+
|
463
|
+
ActionTypeDeclaration.add_member(:description, Shapes::ShapeRef.new(shape: ActionTypeDescription, location_name: "description"))
|
464
|
+
ActionTypeDeclaration.add_member(:executor, Shapes::ShapeRef.new(shape: ActionTypeExecutor, required: true, location_name: "executor"))
|
465
|
+
ActionTypeDeclaration.add_member(:id, Shapes::ShapeRef.new(shape: ActionTypeIdentifier, required: true, location_name: "id"))
|
466
|
+
ActionTypeDeclaration.add_member(:input_artifact_details, Shapes::ShapeRef.new(shape: ActionTypeArtifactDetails, required: true, location_name: "inputArtifactDetails"))
|
467
|
+
ActionTypeDeclaration.add_member(:output_artifact_details, Shapes::ShapeRef.new(shape: ActionTypeArtifactDetails, required: true, location_name: "outputArtifactDetails"))
|
468
|
+
ActionTypeDeclaration.add_member(:permissions, Shapes::ShapeRef.new(shape: ActionTypePermissions, location_name: "permissions"))
|
469
|
+
ActionTypeDeclaration.add_member(:properties, Shapes::ShapeRef.new(shape: ActionTypeProperties, location_name: "properties"))
|
470
|
+
ActionTypeDeclaration.add_member(:urls, Shapes::ShapeRef.new(shape: ActionTypeUrls, location_name: "urls"))
|
471
|
+
ActionTypeDeclaration.struct_class = Types::ActionTypeDeclaration
|
472
|
+
|
473
|
+
ActionTypeExecutor.add_member(:configuration, Shapes::ShapeRef.new(shape: ExecutorConfiguration, required: true, location_name: "configuration"))
|
474
|
+
ActionTypeExecutor.add_member(:type, Shapes::ShapeRef.new(shape: ExecutorType, required: true, location_name: "type"))
|
475
|
+
ActionTypeExecutor.add_member(:policy_statements_template, Shapes::ShapeRef.new(shape: PolicyStatementsTemplate, location_name: "policyStatementsTemplate"))
|
476
|
+
ActionTypeExecutor.add_member(:job_timeout, Shapes::ShapeRef.new(shape: JobTimeout, location_name: "jobTimeout"))
|
477
|
+
ActionTypeExecutor.struct_class = Types::ActionTypeExecutor
|
478
|
+
|
423
479
|
ActionTypeId.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
|
424
480
|
ActionTypeId.add_member(:owner, Shapes::ShapeRef.new(shape: ActionOwner, required: true, location_name: "owner"))
|
425
481
|
ActionTypeId.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
|
426
482
|
ActionTypeId.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
|
427
483
|
ActionTypeId.struct_class = Types::ActionTypeId
|
428
484
|
|
485
|
+
ActionTypeIdentifier.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
|
486
|
+
ActionTypeIdentifier.add_member(:owner, Shapes::ShapeRef.new(shape: ActionTypeOwner, required: true, location_name: "owner"))
|
487
|
+
ActionTypeIdentifier.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
|
488
|
+
ActionTypeIdentifier.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
|
489
|
+
ActionTypeIdentifier.struct_class = Types::ActionTypeIdentifier
|
490
|
+
|
429
491
|
ActionTypeList.member = Shapes::ShapeRef.new(shape: ActionType)
|
430
492
|
|
431
493
|
ActionTypeNotFoundException.struct_class = Types::ActionTypeNotFoundException
|
432
494
|
|
495
|
+
ActionTypePermissions.add_member(:allowed_accounts, Shapes::ShapeRef.new(shape: AllowedAccounts, required: true, location_name: "allowedAccounts"))
|
496
|
+
ActionTypePermissions.struct_class = Types::ActionTypePermissions
|
497
|
+
|
498
|
+
ActionTypeProperties.member = Shapes::ShapeRef.new(shape: ActionTypeProperty)
|
499
|
+
|
500
|
+
ActionTypeProperty.add_member(:name, Shapes::ShapeRef.new(shape: ActionConfigurationKey, required: true, location_name: "name"))
|
501
|
+
ActionTypeProperty.add_member(:optional, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "optional"))
|
502
|
+
ActionTypeProperty.add_member(:key, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "key"))
|
503
|
+
ActionTypeProperty.add_member(:no_echo, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "noEcho"))
|
504
|
+
ActionTypeProperty.add_member(:queryable, Shapes::ShapeRef.new(shape: Boolean, location_name: "queryable"))
|
505
|
+
ActionTypeProperty.add_member(:description, Shapes::ShapeRef.new(shape: PropertyDescription, location_name: "description"))
|
506
|
+
ActionTypeProperty.struct_class = Types::ActionTypeProperty
|
507
|
+
|
433
508
|
ActionTypeSettings.add_member(:third_party_configuration_url, Shapes::ShapeRef.new(shape: Url, location_name: "thirdPartyConfigurationUrl"))
|
434
509
|
ActionTypeSettings.add_member(:entity_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "entityUrlTemplate"))
|
435
510
|
ActionTypeSettings.add_member(:execution_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "executionUrlTemplate"))
|
436
511
|
ActionTypeSettings.add_member(:revision_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "revisionUrlTemplate"))
|
437
512
|
ActionTypeSettings.struct_class = Types::ActionTypeSettings
|
438
513
|
|
514
|
+
ActionTypeUrls.add_member(:configuration_url, Shapes::ShapeRef.new(shape: Url, location_name: "configurationUrl"))
|
515
|
+
ActionTypeUrls.add_member(:entity_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "entityUrlTemplate"))
|
516
|
+
ActionTypeUrls.add_member(:execution_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "executionUrlTemplate"))
|
517
|
+
ActionTypeUrls.add_member(:revision_url_template, Shapes::ShapeRef.new(shape: UrlTemplate, location_name: "revisionUrlTemplate"))
|
518
|
+
ActionTypeUrls.struct_class = Types::ActionTypeUrls
|
519
|
+
|
520
|
+
AllowedAccounts.member = Shapes::ShapeRef.new(shape: AllowedAccount)
|
521
|
+
|
439
522
|
ApprovalAlreadyCompletedException.struct_class = Types::ApprovalAlreadyCompletedException
|
440
523
|
|
441
524
|
ApprovalResult.add_member(:summary, Shapes::ShapeRef.new(shape: ApprovalSummary, required: true, location_name: "summary"))
|
@@ -488,6 +571,9 @@ module Aws::CodePipeline
|
|
488
571
|
ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
489
572
|
ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
|
490
573
|
|
574
|
+
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
575
|
+
ConflictException.struct_class = Types::ConflictException
|
576
|
+
|
491
577
|
CreateCustomActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
|
492
578
|
CreateCustomActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
|
493
579
|
CreateCustomActionTypeInput.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
|
@@ -565,11 +651,24 @@ module Aws::CodePipeline
|
|
565
651
|
ExecutionTrigger.add_member(:trigger_detail, Shapes::ShapeRef.new(shape: TriggerDetail, location_name: "triggerDetail"))
|
566
652
|
ExecutionTrigger.struct_class = Types::ExecutionTrigger
|
567
653
|
|
654
|
+
ExecutorConfiguration.add_member(:lambda_executor_configuration, Shapes::ShapeRef.new(shape: LambdaExecutorConfiguration, location_name: "lambdaExecutorConfiguration"))
|
655
|
+
ExecutorConfiguration.add_member(:job_worker_executor_configuration, Shapes::ShapeRef.new(shape: JobWorkerExecutorConfiguration, location_name: "jobWorkerExecutorConfiguration"))
|
656
|
+
ExecutorConfiguration.struct_class = Types::ExecutorConfiguration
|
657
|
+
|
568
658
|
FailureDetails.add_member(:type, Shapes::ShapeRef.new(shape: FailureType, required: true, location_name: "type"))
|
569
659
|
FailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
570
660
|
FailureDetails.add_member(:external_execution_id, Shapes::ShapeRef.new(shape: ExecutionId, location_name: "externalExecutionId"))
|
571
661
|
FailureDetails.struct_class = Types::FailureDetails
|
572
662
|
|
663
|
+
GetActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
|
664
|
+
GetActionTypeInput.add_member(:owner, Shapes::ShapeRef.new(shape: ActionTypeOwner, required: true, location_name: "owner"))
|
665
|
+
GetActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
|
666
|
+
GetActionTypeInput.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
|
667
|
+
GetActionTypeInput.struct_class = Types::GetActionTypeInput
|
668
|
+
|
669
|
+
GetActionTypeOutput.add_member(:action_type, Shapes::ShapeRef.new(shape: ActionTypeDeclaration, location_name: "actionType"))
|
670
|
+
GetActionTypeOutput.struct_class = Types::GetActionTypeOutput
|
671
|
+
|
573
672
|
GetJobDetailsInput.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "jobId"))
|
574
673
|
GetJobDetailsInput.struct_class = Types::GetJobDetailsInput
|
575
674
|
|
@@ -668,6 +767,13 @@ module Aws::CodePipeline
|
|
668
767
|
|
669
768
|
JobNotFoundException.struct_class = Types::JobNotFoundException
|
670
769
|
|
770
|
+
JobWorkerExecutorConfiguration.add_member(:polling_accounts, Shapes::ShapeRef.new(shape: PollingAccountList, location_name: "pollingAccounts"))
|
771
|
+
JobWorkerExecutorConfiguration.add_member(:polling_service_principals, Shapes::ShapeRef.new(shape: PollingServicePrincipalList, location_name: "pollingServicePrincipals"))
|
772
|
+
JobWorkerExecutorConfiguration.struct_class = Types::JobWorkerExecutorConfiguration
|
773
|
+
|
774
|
+
LambdaExecutorConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "lambdaFunctionArn"))
|
775
|
+
LambdaExecutorConfiguration.struct_class = Types::LambdaExecutorConfiguration
|
776
|
+
|
671
777
|
LimitExceededException.struct_class = Types::LimitExceededException
|
672
778
|
|
673
779
|
ListActionExecutionsInput.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "pipelineName"))
|
@@ -682,6 +788,7 @@ module Aws::CodePipeline
|
|
682
788
|
|
683
789
|
ListActionTypesInput.add_member(:action_owner_filter, Shapes::ShapeRef.new(shape: ActionOwner, location_name: "actionOwnerFilter"))
|
684
790
|
ListActionTypesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
791
|
+
ListActionTypesInput.add_member(:region_filter, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "regionFilter"))
|
685
792
|
ListActionTypesInput.struct_class = Types::ListActionTypesInput
|
686
793
|
|
687
794
|
ListActionTypesOutput.add_member(:action_types, Shapes::ShapeRef.new(shape: ActionTypeList, required: true, location_name: "actionTypes"))
|
@@ -698,6 +805,7 @@ module Aws::CodePipeline
|
|
698
805
|
ListPipelineExecutionsOutput.struct_class = Types::ListPipelineExecutionsOutput
|
699
806
|
|
700
807
|
ListPipelinesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
808
|
+
ListPipelinesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxPipelines, location_name: "maxResults"))
|
701
809
|
ListPipelinesInput.struct_class = Types::ListPipelinesInput
|
702
810
|
|
703
811
|
ListPipelinesOutput.add_member(:pipelines, Shapes::ShapeRef.new(shape: PipelineList, location_name: "pipelines"))
|
@@ -762,6 +870,7 @@ module Aws::CodePipeline
|
|
762
870
|
PipelineExecution.add_member(:pipeline_version, Shapes::ShapeRef.new(shape: PipelineVersion, location_name: "pipelineVersion"))
|
763
871
|
PipelineExecution.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, location_name: "pipelineExecutionId"))
|
764
872
|
PipelineExecution.add_member(:status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "status"))
|
873
|
+
PipelineExecution.add_member(:status_summary, Shapes::ShapeRef.new(shape: PipelineExecutionStatusSummary, location_name: "statusSummary"))
|
765
874
|
PipelineExecution.add_member(:artifact_revisions, Shapes::ShapeRef.new(shape: ArtifactRevisionList, location_name: "artifactRevisions"))
|
766
875
|
PipelineExecution.struct_class = Types::PipelineExecution
|
767
876
|
|
@@ -817,6 +926,10 @@ module Aws::CodePipeline
|
|
817
926
|
PollForThirdPartyJobsOutput.add_member(:jobs, Shapes::ShapeRef.new(shape: ThirdPartyJobList, location_name: "jobs"))
|
818
927
|
PollForThirdPartyJobsOutput.struct_class = Types::PollForThirdPartyJobsOutput
|
819
928
|
|
929
|
+
PollingAccountList.member = Shapes::ShapeRef.new(shape: AccountId)
|
930
|
+
|
931
|
+
PollingServicePrincipalList.member = Shapes::ShapeRef.new(shape: ServicePrincipal)
|
932
|
+
|
820
933
|
PutActionRevisionInput.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "pipelineName"))
|
821
934
|
PutActionRevisionInput.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, required: true, location_name: "stageName"))
|
822
935
|
PutActionRevisionInput.add_member(:action_name, Shapes::ShapeRef.new(shape: ActionName, required: true, location_name: "actionName"))
|
@@ -875,6 +988,9 @@ module Aws::CodePipeline
|
|
875
988
|
|
876
989
|
RegisterWebhookWithThirdPartyOutput.struct_class = Types::RegisterWebhookWithThirdPartyOutput
|
877
990
|
|
991
|
+
RequestFailedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
992
|
+
RequestFailedException.struct_class = Types::RequestFailedException
|
993
|
+
|
878
994
|
ResolvedActionConfigurationMap.key = Shapes::ShapeRef.new(shape: String)
|
879
995
|
ResolvedActionConfigurationMap.value = Shapes::ShapeRef.new(shape: String)
|
880
996
|
|
@@ -926,6 +1042,7 @@ module Aws::CodePipeline
|
|
926
1042
|
StageNotRetryableException.struct_class = Types::StageNotRetryableException
|
927
1043
|
|
928
1044
|
StageState.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, location_name: "stageName"))
|
1045
|
+
StageState.add_member(:inbound_execution, Shapes::ShapeRef.new(shape: StageExecution, location_name: "inboundExecution"))
|
929
1046
|
StageState.add_member(:inbound_transition_state, Shapes::ShapeRef.new(shape: TransitionState, location_name: "inboundTransitionState"))
|
930
1047
|
StageState.add_member(:action_states, Shapes::ShapeRef.new(shape: ActionStateList, location_name: "actionStates"))
|
931
1048
|
StageState.add_member(:latest_execution, Shapes::ShapeRef.new(shape: StageExecution, location_name: "latestExecution"))
|
@@ -1002,6 +1119,9 @@ module Aws::CodePipeline
|
|
1002
1119
|
|
1003
1120
|
UntagResourceOutput.struct_class = Types::UntagResourceOutput
|
1004
1121
|
|
1122
|
+
UpdateActionTypeInput.add_member(:action_type, Shapes::ShapeRef.new(shape: ActionTypeDeclaration, location_name: "actionType"))
|
1123
|
+
UpdateActionTypeInput.struct_class = Types::UpdateActionTypeInput
|
1124
|
+
|
1005
1125
|
UpdatePipelineInput.add_member(:pipeline, Shapes::ShapeRef.new(shape: PipelineDeclaration, required: true, location_name: "pipeline"))
|
1006
1126
|
UpdatePipelineInput.struct_class = Types::UpdatePipelineInput
|
1007
1127
|
|
@@ -1167,6 +1287,16 @@ module Aws::CodePipeline
|
|
1167
1287
|
o.errors << Shapes::ShapeRef.new(shape: StageNotFoundException)
|
1168
1288
|
end)
|
1169
1289
|
|
1290
|
+
api.add_operation(:get_action_type, Seahorse::Model::Operation.new.tap do |o|
|
1291
|
+
o.name = "GetActionType"
|
1292
|
+
o.http_method = "POST"
|
1293
|
+
o.http_request_uri = "/"
|
1294
|
+
o.input = Shapes::ShapeRef.new(shape: GetActionTypeInput)
|
1295
|
+
o.output = Shapes::ShapeRef.new(shape: GetActionTypeOutput)
|
1296
|
+
o.errors << Shapes::ShapeRef.new(shape: ActionTypeNotFoundException)
|
1297
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1298
|
+
end)
|
1299
|
+
|
1170
1300
|
api.add_operation(:get_job_details, Seahorse::Model::Operation.new.tap do |o|
|
1171
1301
|
o.name = "GetJobDetails"
|
1172
1302
|
o.http_method = "POST"
|
@@ -1280,6 +1410,7 @@ module Aws::CodePipeline
|
|
1280
1410
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1281
1411
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
1282
1412
|
o[:pager] = Aws::Pager.new(
|
1413
|
+
limit_key: "max_results",
|
1283
1414
|
tokens: {
|
1284
1415
|
"next_token" => "next_token"
|
1285
1416
|
}
|
@@ -1446,6 +1577,7 @@ module Aws::CodePipeline
|
|
1446
1577
|
o.input = Shapes::ShapeRef.new(shape: RetryStageExecutionInput)
|
1447
1578
|
o.output = Shapes::ShapeRef.new(shape: RetryStageExecutionOutput)
|
1448
1579
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1580
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1449
1581
|
o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
|
1450
1582
|
o.errors << Shapes::ShapeRef.new(shape: StageNotFoundException)
|
1451
1583
|
o.errors << Shapes::ShapeRef.new(shape: StageNotRetryableException)
|
@@ -1459,6 +1591,7 @@ module Aws::CodePipeline
|
|
1459
1591
|
o.input = Shapes::ShapeRef.new(shape: StartPipelineExecutionInput)
|
1460
1592
|
o.output = Shapes::ShapeRef.new(shape: StartPipelineExecutionOutput)
|
1461
1593
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1594
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1462
1595
|
o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
|
1463
1596
|
end)
|
1464
1597
|
|
@@ -1469,6 +1602,7 @@ module Aws::CodePipeline
|
|
1469
1602
|
o.input = Shapes::ShapeRef.new(shape: StopPipelineExecutionInput)
|
1470
1603
|
o.output = Shapes::ShapeRef.new(shape: StopPipelineExecutionOutput)
|
1471
1604
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1605
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1472
1606
|
o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
|
1473
1607
|
o.errors << Shapes::ShapeRef.new(shape: PipelineExecutionNotStoppableException)
|
1474
1608
|
o.errors << Shapes::ShapeRef.new(shape: DuplicatedStopRequestException)
|
@@ -1501,6 +1635,17 @@ module Aws::CodePipeline
|
|
1501
1635
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1502
1636
|
end)
|
1503
1637
|
|
1638
|
+
api.add_operation(:update_action_type, Seahorse::Model::Operation.new.tap do |o|
|
1639
|
+
o.name = "UpdateActionType"
|
1640
|
+
o.http_method = "POST"
|
1641
|
+
o.http_request_uri = "/"
|
1642
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateActionTypeInput)
|
1643
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1644
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestFailedException)
|
1645
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1646
|
+
o.errors << Shapes::ShapeRef.new(shape: ActionTypeNotFoundException)
|
1647
|
+
end)
|
1648
|
+
|
1504
1649
|
api.add_operation(:update_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
1505
1650
|
o.name = "UpdatePipeline"
|
1506
1651
|
o.http_method = "POST"
|