Skip to content

Commit

Permalink
Release v1.46.3 (2023-10-24) (#5036)
Browse files Browse the repository at this point in the history
Release v1.46.3 (2023-10-24)
===

### Service Client Updates
* `service/codepipeline`: Updates service API and documentation
  * Add ability to trigger pipelines from git tags, define variables at pipeline level and new pipeline type V2.
* `service/ec2`: Updates service documentation
  * This release updates the documentation for InstanceInterruptionBehavior and HibernationOptionsRequest to more accurately describe the behavior of these two parameters when using Spot hibernation.
* `service/eks`: Updates service API
* `service/iam`: Adds new service
  * Add the partitional endpoint for IAM in iso-f.
* `service/migrationhub-config`: Updates service API and documentation
* `service/migrationhubstrategy`: Updates service API, documentation, and paginators
* `service/opensearchserverless`: Updates service API, documentation, and paginators
  • Loading branch information
aws-sdk-go-automation committed Oct 24, 2023
1 parent ec96333 commit 9fd7b64
Show file tree
Hide file tree
Showing 33 changed files with 6,199 additions and 1,193 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.46.3 (2023-10-24)
===

### Service Client Updates
* `service/codepipeline`: Updates service API and documentation
* Add ability to trigger pipelines from git tags, define variables at pipeline level and new pipeline type V2.
* `service/ec2`: Updates service documentation
* This release updates the documentation for InstanceInterruptionBehavior and HibernationOptionsRequest to more accurately describe the behavior of these two parameters when using Spot hibernation.
* `service/eks`: Updates service API
* `service/iam`: Adds new service
* Add the partitional endpoint for IAM in iso-f.
* `service/migrationhub-config`: Updates service API and documentation
* `service/migrationhubstrategy`: Updates service API, documentation, and paginators
* `service/opensearchserverless`: Updates service API, documentation, and paginators

Release v1.46.2 (2023-10-23)
===

Expand Down
39 changes: 39 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.46.2"
const SDKVersion = "1.46.3"
139 changes: 136 additions & 3 deletions models/apis/codepipeline/2015-07-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1566,6 +1566,44 @@
"jobDetails":{"shape":"ThirdPartyJobDetails"}
}
},
"GitConfiguration":{
"type":"structure",
"required":["sourceActionName"],
"members":{
"sourceActionName":{"shape":"ActionName"},
"push":{"shape":"GitPushFilterList"}
}
},
"GitPushFilter":{
"type":"structure",
"members":{
"tags":{"shape":"GitTagFilterCriteria"}
}
},
"GitPushFilterList":{
"type":"list",
"member":{"shape":"GitPushFilter"},
"max":1,
"min":1
},
"GitTagFilterCriteria":{
"type":"structure",
"members":{
"includes":{"shape":"GitTagPatternList"},
"excludes":{"shape":"GitTagPatternList"}
}
},
"GitTagNamePattern":{
"type":"string",
"max":255,
"min":1
},
"GitTagPatternList":{
"type":"list",
"member":{"shape":"GitTagNamePattern"},
"max":8,
"min":1
},
"InputArtifact":{
"type":"structure",
"required":["name"],
Expand Down Expand Up @@ -1987,7 +2025,10 @@
"artifactStore":{"shape":"ArtifactStore"},
"artifactStores":{"shape":"ArtifactStoreMap"},
"stages":{"shape":"PipelineStageDeclarationList"},
"version":{"shape":"PipelineVersion"}
"version":{"shape":"PipelineVersion"},
"pipelineType":{"shape":"PipelineType"},
"triggers":{"shape":"PipelineTriggerDeclarationList"},
"variables":{"shape":"PipelineVariableDeclarationList"}
}
},
"PipelineExecution":{
Expand All @@ -1998,7 +2039,9 @@
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
"status":{"shape":"PipelineExecutionStatus"},
"statusSummary":{"shape":"PipelineExecutionStatusSummary"},
"artifactRevisions":{"shape":"ArtifactRevisionList"}
"artifactRevisions":{"shape":"ArtifactRevisionList"},
"trigger":{"shape":"ExecutionTrigger"},
"variables":{"shape":"ResolvedPipelineVariableList"}
}
},
"PipelineExecutionId":{
Expand Down Expand Up @@ -2087,10 +2130,87 @@
"members":{
"name":{"shape":"PipelineName"},
"version":{"shape":"PipelineVersion"},
"pipelineType":{"shape":"PipelineType"},
"created":{"shape":"Timestamp"},
"updated":{"shape":"Timestamp"}
}
},
"PipelineTriggerDeclaration":{
"type":"structure",
"required":[
"providerType",
"gitConfiguration"
],
"members":{
"providerType":{"shape":"PipelineTriggerProviderType"},
"gitConfiguration":{"shape":"GitConfiguration"}
}
},
"PipelineTriggerDeclarationList":{
"type":"list",
"member":{"shape":"PipelineTriggerDeclaration"},
"max":20
},
"PipelineTriggerProviderType":{
"type":"string",
"enum":["CodeStarSourceConnection"]
},
"PipelineType":{
"type":"string",
"enum":[
"V1",
"V2"
]
},
"PipelineVariable":{
"type":"structure",
"required":[
"name",
"value"
],
"members":{
"name":{"shape":"PipelineVariableName"},
"value":{"shape":"PipelineVariableValue"}
}
},
"PipelineVariableDeclaration":{
"type":"structure",
"required":["name"],
"members":{
"name":{"shape":"PipelineVariableName"},
"defaultValue":{"shape":"PipelineVariableValue"},
"description":{"shape":"PipelineVariableDescription"}
}
},
"PipelineVariableDeclarationList":{
"type":"list",
"member":{"shape":"PipelineVariableDeclaration"},
"max":50
},
"PipelineVariableDescription":{
"type":"string",
"max":200,
"min":0,
"pattern":".*"
},
"PipelineVariableList":{
"type":"list",
"member":{"shape":"PipelineVariable"},
"max":50,
"min":1
},
"PipelineVariableName":{
"type":"string",
"max":128,
"min":1,
"pattern":"[A-Za-z0-9@\\-_]+"
},
"PipelineVariableValue":{
"type":"string",
"max":1000,
"min":1,
"pattern":".*"
},
"PipelineVersion":{
"type":"integer",
"min":1
Expand Down Expand Up @@ -2290,6 +2410,17 @@
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"ResolvedPipelineVariable":{
"type":"structure",
"members":{
"name":{"shape":"String"},
"resolvedValue":{"shape":"String"}
}
},
"ResolvedPipelineVariableList":{
"type":"list",
"member":{"shape":"ResolvedPipelineVariable"}
},
"ResourceArn":{
"type":"string",
"pattern":"arn:aws(-[\\w]+)*:codepipeline:.+:[0-9]{12}:.+"
Expand Down Expand Up @@ -2497,6 +2628,7 @@
"required":["name"],
"members":{
"name":{"shape":"PipelineName"},
"variables":{"shape":"PipelineVariableList"},
"clientRequestToken":{
"shape":"ClientRequestToken",
"idempotencyToken":true
Expand Down Expand Up @@ -2652,7 +2784,8 @@
"PollForSourceChanges",
"Webhook",
"CloudWatchEvent",
"PutActionRevision"
"PutActionRevision",
"WebhookV2"
]
},
"UntagResourceInput":{
Expand Down
Loading

0 comments on commit 9fd7b64

Please sign in to comment.