Skip to content

Commit

Permalink
Release v1.28.13 (2020-02-07)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/imagebuilder`: Updates service API and documentation
* `service/rds`: Updates service documentation
  * Documentation updates for RDS: when restoring a DB cluster from a snapshot, must create DB instances
* `service/robomaker`: Updates service API, documentation, and paginators
  • Loading branch information
awssdkgo committed Feb 7, 2020
1 parent f4f950a commit 6ddc79e
Show file tree
Hide file tree
Showing 16 changed files with 2,675 additions and 649 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.28.13 (2020-02-07)
===

### Service Client Updates
* `service/imagebuilder`: Updates service API and documentation
* `service/rds`: Updates service documentation
* Documentation updates for RDS: when restoring a DB cluster from a snapshot, must create DB instances
* `service/robomaker`: Updates service API, documentation, and paginators

Release v1.28.12 (2020-02-06)
===

Expand Down
18 changes: 12 additions & 6 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.28.12"
const SDKVersion = "1.28.13"
39 changes: 33 additions & 6 deletions models/apis/imagebuilder/2019-12-02/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@
"AmiDistributionConfiguration":{
"type":"structure",
"members":{
"name":{"shape":"NonEmptyString"},
"name":{"shape":"AmiNameString"},
"description":{"shape":"NonEmptyString"},
"amiTags":{"shape":"TagMap"},
"launchPermission":{"shape":"LaunchPermissionConfiguration"}
Expand All @@ -805,6 +805,12 @@
"type":"list",
"member":{"shape":"Ami"}
},
"AmiNameString":{
"type":"string",
"max":127,
"min":1,
"pattern":"^[-_A-Za-z0-9{][-_A-Za-z0-9\\s:{}]+[-_A-Za-z0-9}]$"
},
"Arn":{"type":"string"},
"ArnList":{
"type":"list",
Expand All @@ -826,7 +832,10 @@
],
"members":{
"imageBuildVersionArn":{"shape":"ImageBuildVersionArn"},
"clientToken":{"shape":"ClientToken"}
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"CancelImageCreationResponse":{
Expand Down Expand Up @@ -876,7 +885,7 @@
"type":"structure",
"required":["componentArn"],
"members":{
"componentArn":{"shape":"ComponentBuildVersionArn"}
"componentArn":{"shape":"ComponentVersionArnOrBuildVersionArn"}
}
},
"ComponentConfigurationList":{
Expand Down Expand Up @@ -932,6 +941,10 @@
"type":"string",
"pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):component/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+$"
},
"ComponentVersionArnOrBuildVersionArn":{
"type":"string",
"pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):component/[a-z0-9-_]+/(?:(?:(\\d+|x)\\.(\\d+|x)\\.(\\d+|x))|(?:\\d+\\.\\d+\\.\\d+/\\d+))$"
},
"ComponentVersionList":{
"type":"list",
"member":{"shape":"ComponentVersion"}
Expand Down Expand Up @@ -1101,7 +1114,7 @@
"logging":{"shape":"Logging"},
"keyPair":{"shape":"NonEmptyString"},
"terminateInstanceOnFailure":{"shape":"NullableBoolean"},
"snsTopicArn":{"shape":"NonEmptyString"},
"snsTopicArn":{"shape":"SnsTopicArn"},
"tags":{"shape":"TagMap"},
"clientToken":{
"shape":"ClientToken",
Expand Down Expand Up @@ -1309,6 +1322,11 @@
"st1"
]
},
"EmptyString":{
"type":"string",
"max":0,
"min":0
},
"ErrorMessage":{"type":"string"},
"Filter":{
"type":"structure",
Expand Down Expand Up @@ -1763,7 +1781,7 @@
"deviceName":{"shape":"NonEmptyString"},
"ebs":{"shape":"EbsInstanceBlockDeviceSpecification"},
"virtualName":{"shape":"NonEmptyString"},
"noDevice":{"shape":"NonEmptyString"}
"noDevice":{"shape":"EmptyString"}
}
},
"InstanceBlockDeviceMappings":{
Expand Down Expand Up @@ -1912,6 +1930,7 @@
},
"ListImagePipelineImagesRequest":{
"type":"structure",
"required":["imagePipelineArn"],
"members":{
"imagePipelineArn":{"shape":"ImagePipelineArn"},
"filters":{"shape":"FilterList"},
Expand Down Expand Up @@ -2201,6 +2220,10 @@
"error":{"httpStatusCode":503},
"exception":true
},
"SnsTopicArn":{
"type":"string",
"pattern":"^arn:aws[^:]*:sns:[^:]+:\\d{12}:[a-zA-Z0-9-_]{1,256}$"
},
"StartImagePipelineExecutionRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2298,6 +2321,7 @@
"type":"structure",
"required":[
"distributionConfigurationArn",
"distributions",
"clientToken"
],
"members":{
Expand All @@ -2322,6 +2346,8 @@
"type":"structure",
"required":[
"imagePipelineArn",
"imageRecipeArn",
"infrastructureConfigurationArn",
"clientToken"
],
"members":{
Expand Down Expand Up @@ -2351,6 +2377,7 @@
"type":"structure",
"required":[
"infrastructureConfigurationArn",
"instanceProfileName",
"clientToken"
],
"members":{
Expand All @@ -2363,7 +2390,7 @@
"logging":{"shape":"Logging"},
"keyPair":{"shape":"NonEmptyString"},
"terminateInstanceOnFailure":{"shape":"NullableBoolean"},
"snsTopicArn":{"shape":"NonEmptyString"},
"snsTopicArn":{"shape":"SnsTopicArn"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
Expand Down
Loading

0 comments on commit 6ddc79e

Please sign in to comment.