Skip to content

Commit d85e105

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent 312fc5b commit d85e105

File tree

7 files changed

+443
-39
lines changed

7 files changed

+443
-39
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::CodePipeline - Updated the API, and documentation for AWS CodePipeline.
5+
6+
* Feature - Aws::CognitoIdentity - Updated the API, and documentation for Amazon Cognito Identity.
7+
8+
* Feature - Aws::MarketplaceMetering - Updated the API, and documentation for AWSMarketplace Metering.
9+
410
2.11.243 (2019-03-19)
511
------------------
612

aws-sdk-core/apis/codepipeline/2015-07-09/api-2.json

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,21 @@
215215
{"shape":"InvalidJobException"}
216216
]
217217
},
218+
"ListActionExecutions":{
219+
"name":"ListActionExecutions",
220+
"http":{
221+
"method":"POST",
222+
"requestUri":"/"
223+
},
224+
"input":{"shape":"ListActionExecutionsInput"},
225+
"output":{"shape":"ListActionExecutionsOutput"},
226+
"errors":[
227+
{"shape":"ValidationException"},
228+
{"shape":"PipelineNotFoundException"},
229+
{"shape":"InvalidNextTokenException"},
230+
{"shape":"PipelineExecutionNotFoundException"}
231+
]
232+
},
218233
"ListActionTypes":{
219234
"name":"ListActionTypes",
220235
"http":{
@@ -623,6 +638,57 @@
623638
"errorDetails":{"shape":"ErrorDetails"}
624639
}
625640
},
641+
"ActionExecutionDetail":{
642+
"type":"structure",
643+
"members":{
644+
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
645+
"actionExecutionId":{"shape":"ActionExecutionId"},
646+
"pipelineVersion":{"shape":"PipelineVersion"},
647+
"stageName":{"shape":"StageName"},
648+
"actionName":{"shape":"ActionName"},
649+
"startTime":{"shape":"Timestamp"},
650+
"lastUpdateTime":{"shape":"Timestamp"},
651+
"status":{"shape":"ActionExecutionStatus"},
652+
"input":{"shape":"ActionExecutionInput"},
653+
"output":{"shape":"ActionExecutionOutput"}
654+
}
655+
},
656+
"ActionExecutionDetailList":{
657+
"type":"list",
658+
"member":{"shape":"ActionExecutionDetail"}
659+
},
660+
"ActionExecutionFilter":{
661+
"type":"structure",
662+
"members":{
663+
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
664+
}
665+
},
666+
"ActionExecutionId":{"type":"string"},
667+
"ActionExecutionInput":{
668+
"type":"structure",
669+
"members":{
670+
"actionTypeId":{"shape":"ActionTypeId"},
671+
"configuration":{"shape":"ActionConfigurationMap"},
672+
"roleArn":{"shape":"RoleArn"},
673+
"region":{"shape":"AWSRegionName"},
674+
"inputArtifacts":{"shape":"ArtifactDetailList"}
675+
}
676+
},
677+
"ActionExecutionOutput":{
678+
"type":"structure",
679+
"members":{
680+
"outputArtifacts":{"shape":"ArtifactDetailList"},
681+
"executionResult":{"shape":"ActionExecutionResult"}
682+
}
683+
},
684+
"ActionExecutionResult":{
685+
"type":"structure",
686+
"members":{
687+
"externalExecutionId":{"shape":"ExternalExecutionId"},
688+
"externalExecutionSummary":{"shape":"ExternalExecutionSummary"},
689+
"externalExecutionUrl":{"shape":"Url"}
690+
}
691+
},
626692
"ActionExecutionStatus":{
627693
"type":"string",
628694
"enum":[
@@ -780,6 +846,17 @@
780846
"location":{"shape":"ArtifactLocation"}
781847
}
782848
},
849+
"ArtifactDetail":{
850+
"type":"structure",
851+
"members":{
852+
"name":{"shape":"ArtifactName"},
853+
"s3location":{"shape":"S3Location"}
854+
}
855+
},
856+
"ArtifactDetailList":{
857+
"type":"list",
858+
"member":{"shape":"ArtifactDetail"}
859+
},
783860
"ArtifactDetails":{
784861
"type":"structure",
785862
"required":[
@@ -1076,6 +1153,8 @@
10761153
"max":2048,
10771154
"min":1
10781155
},
1156+
"ExternalExecutionId":{"type":"string"},
1157+
"ExternalExecutionSummary":{"type":"string"},
10791158
"FailureDetails":{
10801159
"type":"structure",
10811160
"required":[
@@ -1331,6 +1410,23 @@
13311410
},
13321411
"exception":true
13331412
},
1413+
"ListActionExecutionsInput":{
1414+
"type":"structure",
1415+
"required":["pipelineName"],
1416+
"members":{
1417+
"pipelineName":{"shape":"PipelineName"},
1418+
"filter":{"shape":"ActionExecutionFilter"},
1419+
"maxResults":{"shape":"MaxResults"},
1420+
"nextToken":{"shape":"NextToken"}
1421+
}
1422+
},
1423+
"ListActionExecutionsOutput":{
1424+
"type":"structure",
1425+
"members":{
1426+
"actionExecutionDetails":{"shape":"ActionExecutionDetailList"},
1427+
"nextToken":{"shape":"NextToken"}
1428+
}
1429+
},
13341430
"ListActionTypesInput":{
13351431
"type":"structure",
13361432
"members":{
@@ -1794,7 +1890,24 @@
17941890
"objectKey":{"shape":"S3ObjectKey"}
17951891
}
17961892
},
1893+
"S3Bucket":{
1894+
"type":"string",
1895+
"max":63,
1896+
"min":3
1897+
},
17971898
"S3BucketName":{"type":"string"},
1899+
"S3Key":{
1900+
"type":"string",
1901+
"max":100,
1902+
"min":1
1903+
},
1904+
"S3Location":{
1905+
"type":"structure",
1906+
"members":{
1907+
"bucket":{"shape":"S3Bucket"},
1908+
"key":{"shape":"S3Key"}
1909+
}
1910+
},
17981911
"S3ObjectKey":{"type":"string"},
17991912
"SecretAccessKey":{"type":"string"},
18001913
"SessionToken":{"type":"string"},

0 commit comments

Comments
 (0)