Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.10.50 #1542

Merged
merged 1 commit into from
Sep 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.10.50 (2017-09-21)
===

### Service Client Updates
* `service/budgets`: Updates service API
* Including "DuplicateRecordException" in UpdateNotification and UpdateSubscriber.
* `service/ec2`: Updates service API and documentation
* Add EC2 APIs to copy Amazon FPGA Images (AFIs) within the same region and across multiple regions, delete AFIs, and modify AFI attributes. AFI attributes include name, description and granting/denying other AWS accounts to load the AFI.
* `service/logs`: Updates service API and documentation
* Adds support for associating LogGroups with KMS Keys.

### SDK Bugs
* Fix greengrass service model being duplicated with different casing. ([#1541](https://github.com/aws/aws-sdk-go/pull/1541))
* Fixes [#1540](https://github.com/aws/aws-sdk-go/issues/1540)
* Fixes [#1539](https://github.com/aws/aws-sdk-go/issues/1539)
Release v1.10.49 (2017-09-20)
===

Expand Down
3 changes: 0 additions & 3 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@
### SDK Enhancements

### SDK Bugs
* Fix greengrass service model being duplicated with different casing. ([#1541](https://github.com/aws/aws-sdk-go/pull/1541))
* Fixes [#1540](https://github.com/aws/aws-sdk-go/issues/1540)
* Fixes [#1539](https://github.com/aws/aws-sdk-go/issues/1539)
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.10.49"
const SDKVersion = "1.10.50"
6 changes: 4 additions & 2 deletions models/apis/budgets/2016-10-20/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@
"errors":[
{"shape":"InternalErrorException"},
{"shape":"InvalidParameterException"},
{"shape":"NotFoundException"}
{"shape":"NotFoundException"},
{"shape":"DuplicateRecordException"}
]
},
"UpdateSubscriber":{
Expand All @@ -202,7 +203,8 @@
"errors":[
{"shape":"InternalErrorException"},
{"shape":"InvalidParameterException"},
{"shape":"NotFoundException"}
{"shape":"NotFoundException"},
{"shape":"DuplicateRecordException"}
]
}
},
Expand Down
242 changes: 242 additions & 0 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,15 @@
"input":{"shape":"ConfirmProductInstanceRequest"},
"output":{"shape":"ConfirmProductInstanceResult"}
},
"CopyFpgaImage":{
"name":"CopyFpgaImage",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CopyFpgaImageRequest"},
"output":{"shape":"CopyFpgaImageResult"}
},
"CopyImage":{
"name":"CopyImage",
"http":{
Expand Down Expand Up @@ -583,6 +592,15 @@
"input":{"shape":"DeleteFlowLogsRequest"},
"output":{"shape":"DeleteFlowLogsResult"}
},
"DeleteFpgaImage":{
"name":"DeleteFpgaImage",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteFpgaImageRequest"},
"output":{"shape":"DeleteFpgaImageResult"}
},
"DeleteInternetGateway":{
"name":"DeleteInternetGateway",
"http":{
Expand Down Expand Up @@ -879,6 +897,15 @@
"input":{"shape":"DescribeFlowLogsRequest"},
"output":{"shape":"DescribeFlowLogsResult"}
},
"DescribeFpgaImageAttribute":{
"name":"DescribeFpgaImageAttribute",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFpgaImageAttributeRequest"},
"output":{"shape":"DescribeFpgaImageAttributeResult"}
},
"DescribeFpgaImages":{
"name":"DescribeFpgaImages",
"http":{
Expand Down Expand Up @@ -1636,6 +1663,15 @@
"input":{"shape":"ImportVolumeRequest"},
"output":{"shape":"ImportVolumeResult"}
},
"ModifyFpgaImageAttribute":{
"name":"ModifyFpgaImageAttribute",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ModifyFpgaImageAttributeRequest"},
"output":{"shape":"ModifyFpgaImageAttributeResult"}
},
"ModifyHosts":{
"name":"ModifyHosts",
"http":{
Expand Down Expand Up @@ -1928,6 +1964,15 @@
"input":{"shape":"RequestSpotInstancesRequest"},
"output":{"shape":"RequestSpotInstancesResult"}
},
"ResetFpgaImageAttribute":{
"name":"ResetFpgaImageAttribute",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ResetFpgaImageAttributeRequest"},
"output":{"shape":"ResetFpgaImageAttributeResult"}
},
"ResetImageAttribute":{
"name":"ResetImageAttribute",
"http":{
Expand Down Expand Up @@ -3458,6 +3503,30 @@
"completed"
]
},
"CopyFpgaImageRequest":{
"type":"structure",
"required":[
"SourceFpgaImageId",
"SourceRegion"
],
"members":{
"DryRun":{"shape":"Boolean"},
"SourceFpgaImageId":{"shape":"String"},
"Description":{"shape":"String"},
"Name":{"shape":"String"},
"SourceRegion":{"shape":"String"},
"ClientToken":{"shape":"String"}
}
},
"CopyFpgaImageResult":{
"type":"structure",
"members":{
"FpgaImageId":{
"shape":"String",
"locationName":"fpgaImageId"
}
}
},
"CopyImageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4527,6 +4596,23 @@
}
}
},
"DeleteFpgaImageRequest":{
"type":"structure",
"required":["FpgaImageId"],
"members":{
"DryRun":{"shape":"Boolean"},
"FpgaImageId":{"shape":"String"}
}
},
"DeleteFpgaImageResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"DeleteInternetGatewayRequest":{
"type":"structure",
"required":["InternetGatewayId"],
Expand Down Expand Up @@ -5183,6 +5269,27 @@
}
}
},
"DescribeFpgaImageAttributeRequest":{
"type":"structure",
"required":[
"FpgaImageId",
"Attribute"
],
"members":{
"DryRun":{"shape":"Boolean"},
"FpgaImageId":{"shape":"String"},
"Attribute":{"shape":"FpgaImageAttributeName"}
}
},
"DescribeFpgaImageAttributeResult":{
"type":"structure",
"members":{
"FpgaImageAttribute":{
"shape":"FpgaImageAttribute",
"locationName":"fpgaImageAttribute"
}
}
},
"DescribeFpgaImagesRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7854,9 +7961,47 @@
"Tags":{
"shape":"TagList",
"locationName":"tags"
},
"Public":{
"shape":"Boolean",
"locationName":"public"
}
}
},
"FpgaImageAttribute":{
"type":"structure",
"members":{
"FpgaImageId":{
"shape":"String",
"locationName":"fpgaImageId"
},
"Name":{
"shape":"String",
"locationName":"name"
},
"Description":{
"shape":"String",
"locationName":"description"
},
"LoadPermissions":{
"shape":"LoadPermissionList",
"locationName":"loadPermissions"
},
"ProductCodes":{
"shape":"ProductCodeList",
"locationName":"productCodes"
}
}
},
"FpgaImageAttributeName":{
"type":"string",
"enum":[
"description",
"name",
"loadPermission",
"productCodes"
]
},
"FpgaImageIdList":{
"type":"list",
"member":{
Expand Down Expand Up @@ -10281,12 +10426,87 @@
"closed"
]
},
"LoadPermission":{
"type":"structure",
"members":{
"UserId":{
"shape":"String",
"locationName":"userId"
},
"Group":{
"shape":"PermissionGroup",
"locationName":"group"
}
}
},
"LoadPermissionList":{
"type":"list",
"member":{
"shape":"LoadPermission",
"locationName":"item"
}
},
"LoadPermissionListRequest":{
"type":"list",
"member":{
"shape":"LoadPermissionRequest",
"locationName":"item"
}
},
"LoadPermissionModifications":{
"type":"structure",
"members":{
"Add":{"shape":"LoadPermissionListRequest"},
"Remove":{"shape":"LoadPermissionListRequest"}
}
},
"LoadPermissionRequest":{
"type":"structure",
"members":{
"Group":{"shape":"PermissionGroup"},
"UserId":{"shape":"String"}
}
},
"Long":{"type":"long"},
"MaxResults":{
"type":"integer",
"max":255,
"min":5
},
"ModifyFpgaImageAttributeRequest":{
"type":"structure",
"required":["FpgaImageId"],
"members":{
"DryRun":{"shape":"Boolean"},
"FpgaImageId":{"shape":"String"},
"Attribute":{"shape":"FpgaImageAttributeName"},
"OperationType":{"shape":"OperationType"},
"UserIds":{
"shape":"UserIdStringList",
"locationName":"UserId"
},
"UserGroups":{
"shape":"UserGroupStringList",
"locationName":"UserGroup"
},
"ProductCodes":{
"shape":"ProductCodeStringList",
"locationName":"ProductCode"
},
"LoadPermission":{"shape":"LoadPermissionModifications"},
"Description":{"shape":"String"},
"Name":{"shape":"String"}
}
},
"ModifyFpgaImageAttributeResult":{
"type":"structure",
"members":{
"FpgaImageAttribute":{
"shape":"FpgaImageAttribute",
"locationName":"fpgaImageAttribute"
}
}
},
"ModifyHostsRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -12943,6 +13163,28 @@
"locationName":"item"
}
},
"ResetFpgaImageAttributeName":{
"type":"string",
"enum":["loadPermission"]
},
"ResetFpgaImageAttributeRequest":{
"type":"structure",
"required":["FpgaImageId"],
"members":{
"DryRun":{"shape":"Boolean"},
"FpgaImageId":{"shape":"String"},
"Attribute":{"shape":"ResetFpgaImageAttributeName"}
}
},
"ResetFpgaImageAttributeResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"ResetImageAttributeName":{
"type":"string",
"enum":["launchPermission"]
Expand Down
Loading