Skip to content

Commit

Permalink
Release v1.50.14 (2024-02-08) (#5165)
Browse files Browse the repository at this point in the history
Release v1.50.14 (2024-02-08)
===

### Service Client Updates
* `service/codepipeline`: Updates service API and documentation
  * Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.
* `service/quicksight`: Updates service API and documentation
  * General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update
* `service/workspaces`: Updates service API and documentation
  * This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName".
  • Loading branch information
aws-sdk-go-automation authored Feb 8, 2024
1 parent 3ededa8 commit 0118f04
Show file tree
Hide file tree
Showing 12 changed files with 1,374 additions and 166 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.50.14 (2024-02-08)
===

### Service Client Updates
* `service/codepipeline`: Updates service API and documentation
* Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.
* `service/quicksight`: Updates service API and documentation
* General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update
* `service/workspaces`: Updates service API and documentation
* This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName".

Release v1.50.13 (2024-02-07)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.50.13"
const SDKVersion = "1.50.14"
137 changes: 126 additions & 11 deletions models/apis/codepipeline/2015-07-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@
"errors":[
{"shape":"ValidationException"},
{"shape":"ConflictException"},
{"shape":"PipelineNotFoundException"}
{"shape":"PipelineNotFoundException"},
{"shape":"ConcurrentPipelineExecutionsLimitExceededException"}
]
},
"StopPipelineExecution":{
Expand Down Expand Up @@ -759,6 +760,7 @@
"actionName":{"shape":"ActionName"},
"startTime":{"shape":"Timestamp"},
"lastUpdateTime":{"shape":"Timestamp"},
"updatedBy":{"shape":"LastUpdatedBy"},
"status":{"shape":"ActionExecutionStatus"},
"input":{"shape":"ActionExecutionInput"},
"output":{"shape":"ActionExecutionOutput"}
Expand All @@ -771,7 +773,8 @@
"ActionExecutionFilter":{
"type":"structure",
"members":{
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
"latestInPipelineExecution":{"shape":"LatestInPipelineExecutionFilter"}
}
},
"ActionExecutionId":{"type":"string"},
Expand Down Expand Up @@ -800,7 +803,8 @@
"members":{
"externalExecutionId":{"shape":"ExternalExecutionId"},
"externalExecutionSummary":{"shape":"ExternalExecutionSummary"},
"externalExecutionUrl":{"shape":"Url"}
"externalExecutionUrl":{"shape":"Url"},
"errorDetails":{"shape":"ErrorDetails"}
}
},
"ActionExecutionStatus":{
Expand Down Expand Up @@ -1217,6 +1221,13 @@
},
"exception":true
},
"ConcurrentPipelineExecutionsLimitExceededException":{
"type":"structure",
"members":{
"message":{"shape":"Message"}
},
"exception":true
},
"ConflictException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1415,6 +1426,14 @@
"max":1500,
"min":1
},
"ExecutionMode":{
"type":"string",
"enum":[
"QUEUED",
"SUPERSEDED",
"PARALLEL"
]
},
"ExecutionSummary":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -1566,24 +1585,93 @@
"jobDetails":{"shape":"ThirdPartyJobDetails"}
}
},
"GitBranchFilterCriteria":{
"type":"structure",
"members":{
"includes":{"shape":"GitBranchPatternList"},
"excludes":{"shape":"GitBranchPatternList"}
}
},
"GitBranchNamePattern":{
"type":"string",
"max":255,
"min":1,
"pattern":".*"
},
"GitBranchPatternList":{
"type":"list",
"member":{"shape":"GitBranchNamePattern"},
"max":8,
"min":1
},
"GitConfiguration":{
"type":"structure",
"required":["sourceActionName"],
"members":{
"sourceActionName":{"shape":"ActionName"},
"push":{"shape":"GitPushFilterList"}
"push":{"shape":"GitPushFilterList"},
"pullRequest":{"shape":"GitPullRequestFilterList"}
}
},
"GitFilePathFilterCriteria":{
"type":"structure",
"members":{
"includes":{"shape":"GitFilePathPatternList"},
"excludes":{"shape":"GitFilePathPatternList"}
}
},
"GitFilePathPattern":{
"type":"string",
"max":255,
"min":1,
"pattern":".*"
},
"GitFilePathPatternList":{
"type":"list",
"member":{"shape":"GitFilePathPattern"},
"max":8,
"min":1
},
"GitPullRequestEventType":{
"type":"string",
"enum":[
"OPEN",
"UPDATED",
"CLOSED"
]
},
"GitPullRequestEventTypeList":{
"type":"list",
"member":{"shape":"GitPullRequestEventType"},
"max":3,
"min":1
},
"GitPullRequestFilter":{
"type":"structure",
"members":{
"events":{"shape":"GitPullRequestEventTypeList"},
"branches":{"shape":"GitBranchFilterCriteria"},
"filePaths":{"shape":"GitFilePathFilterCriteria"}
}
},
"GitPullRequestFilterList":{
"type":"list",
"member":{"shape":"GitPullRequestFilter"},
"max":3,
"min":1
},
"GitPushFilter":{
"type":"structure",
"members":{
"tags":{"shape":"GitTagFilterCriteria"}
"tags":{"shape":"GitTagFilterCriteria"},
"branches":{"shape":"GitBranchFilterCriteria"},
"filePaths":{"shape":"GitFilePathFilterCriteria"}
}
},
"GitPushFilterList":{
"type":"list",
"member":{"shape":"GitPushFilter"},
"max":1,
"max":3,
"min":1
},
"GitTagFilterCriteria":{
Expand Down Expand Up @@ -1790,6 +1878,17 @@
"LastChangedAt":{"type":"timestamp"},
"LastChangedBy":{"type":"string"},
"LastUpdatedBy":{"type":"string"},
"LatestInPipelineExecutionFilter":{
"type":"structure",
"required":[
"pipelineExecutionId",
"startTimeRange"
],
"members":{
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
"startTimeRange":{"shape":"StartTimeRange"}
}
},
"LimitExceededException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2026,9 +2125,10 @@
"artifactStores":{"shape":"ArtifactStoreMap"},
"stages":{"shape":"PipelineStageDeclarationList"},
"version":{"shape":"PipelineVersion"},
"executionMode":{"shape":"ExecutionMode"},
"pipelineType":{"shape":"PipelineType"},
"triggers":{"shape":"PipelineTriggerDeclarationList"},
"variables":{"shape":"PipelineVariableDeclarationList"}
"variables":{"shape":"PipelineVariableDeclarationList"},
"triggers":{"shape":"PipelineTriggerDeclarationList"}
}
},
"PipelineExecution":{
Expand All @@ -2040,8 +2140,9 @@
"status":{"shape":"PipelineExecutionStatus"},
"statusSummary":{"shape":"PipelineExecutionStatusSummary"},
"artifactRevisions":{"shape":"ArtifactRevisionList"},
"variables":{"shape":"ResolvedPipelineVariableList"},
"trigger":{"shape":"ExecutionTrigger"},
"variables":{"shape":"ResolvedPipelineVariableList"}
"executionMode":{"shape":"ExecutionMode"}
}
},
"PipelineExecutionId":{
Expand Down Expand Up @@ -2083,7 +2184,8 @@
"lastUpdateTime":{"shape":"Timestamp"},
"sourceRevisions":{"shape":"SourceRevisionList"},
"trigger":{"shape":"ExecutionTrigger"},
"stopTrigger":{"shape":"StopExecutionTrigger"}
"stopTrigger":{"shape":"StopExecutionTrigger"},
"executionMode":{"shape":"ExecutionMode"}
}
},
"PipelineExecutionSummaryList":{
Expand Down Expand Up @@ -2131,6 +2233,7 @@
"name":{"shape":"PipelineName"},
"version":{"shape":"PipelineVersion"},
"pipelineType":{"shape":"PipelineType"},
"executionMode":{"shape":"ExecutionMode"},
"created":{"shape":"Timestamp"},
"updated":{"shape":"Timestamp"}
}
Expand All @@ -2149,7 +2252,7 @@
"PipelineTriggerDeclarationList":{
"type":"list",
"member":{"shape":"PipelineTriggerDeclaration"},
"max":20
"max":50
},
"PipelineTriggerProviderType":{
"type":"string",
Expand Down Expand Up @@ -2593,6 +2696,10 @@
"status":{"shape":"StageExecutionStatus"}
}
},
"StageExecutionList":{
"type":"list",
"member":{"shape":"StageExecution"}
},
"StageExecutionStatus":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2634,6 +2741,7 @@
"members":{
"stageName":{"shape":"StageName"},
"inboundExecution":{"shape":"StageExecution"},
"inboundExecutions":{"shape":"StageExecutionList"},
"inboundTransitionState":{"shape":"TransitionState"},
"actionStates":{"shape":"ActionStateList"},
"latestExecution":{"shape":"StageExecution"}
Expand Down Expand Up @@ -2669,6 +2777,13 @@
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
}
},
"StartTimeRange":{
"type":"string",
"enum":[
"Latest",
"All"
]
},
"StopExecutionTrigger":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit 0118f04

Please sign in to comment.