Skip to content

Commit

Permalink
Merge pull request aws#1020 from aws/release
Browse files Browse the repository at this point in the history
Release v1.6.8
  • Loading branch information
awstools authored Dec 22, 2016
2 parents 331cc75 + 1e63775 commit 26d628b
Show file tree
Hide file tree
Showing 24 changed files with 4,228 additions and 789 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.6.8 (2016-12-22)
===

Service Client Updates
---
* `service/apigateway`: Updates service API and documentation
* Amazon API Gateway is adding support for generating SDKs in more languages. This update introduces two new operations used to dynamically discover these SDK types and what configuration each type accepts.
* `service/directoryservice`: Updates service documentation
* Alias of single point of contact/owner from your service team: [email protected] or [email protected]. Added code snippets for the DS SDKs
* `service/elasticbeanstalk`: Updates service API and documentation
* `service/iam`: Updates service API and documentation
* Adds service-specific credentials to IAM service to make it easier to onboard CodeCommit customers. These are username/password credentials that work with a single service.
* `service/kms`: Updates service API, documentation, and examples
* Update docs and add SDK examples

Release v1.6.7 (2016-12-22)
===

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.6.7"
const SDKVersion = "1.6.8"
92 changes: 92 additions & 0 deletions models/apis/apigateway/2015-07-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,33 @@
{"shape":"TooManyRequestsException"}
]
},
"GetSdkType":{
"name":"GetSdkType",
"http":{
"method":"GET",
"requestUri":"/sdktypes/{sdktype_id}"
},
"input":{"shape":"GetSdkTypeRequest"},
"output":{"shape":"SdkType"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"},
{"shape":"TooManyRequestsException"}
]
},
"GetSdkTypes":{
"name":"GetSdkTypes",
"http":{
"method":"GET",
"requestUri":"/sdktypes"
},
"input":{"shape":"GetSdkTypesRequest"},
"output":{"shape":"SdkTypes"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"TooManyRequestsException"}
]
},
"GetStage":{
"name":"GetStage",
"http":{
Expand Down Expand Up @@ -3098,6 +3125,32 @@
}
}
},
"GetSdkTypeRequest":{
"type":"structure",
"required":["id"],
"members":{
"id":{
"shape":"String",
"location":"uri",
"locationName":"sdktype_id"
}
}
},
"GetSdkTypesRequest":{
"type":"structure",
"members":{
"position":{
"shape":"String",
"location":"querystring",
"locationName":"position"
},
"limit":{
"shape":"NullableInteger",
"location":"querystring",
"locationName":"limit"
}
}
},
"GetStageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -3423,6 +3476,14 @@
"type":"list",
"member":{"shape":"RestApi"}
},
"ListOfSdkConfigurationProperty":{
"type":"list",
"member":{"shape":"SdkConfigurationProperty"}
},
"ListOfSdkType":{
"type":"list",
"member":{"shape":"SdkType"}
},
"ListOfStage":{
"type":"list",
"member":{"shape":"Stage"}
Expand Down Expand Up @@ -3505,6 +3566,7 @@
"authorizationType":{"shape":"String"},
"authorizerId":{"shape":"String"},
"apiKeyRequired":{"shape":"NullableBoolean"},
"operationName":{"shape":"String"},
"requestParameters":{"shape":"MapOfStringToBoolean"},
"requestModels":{"shape":"MapOfStringToString"},
"methodResponses":{"shape":"MapOfMethodResponse"},
Expand Down Expand Up @@ -3698,6 +3760,7 @@
"authorizationType":{"shape":"String"},
"authorizerId":{"shape":"String"},
"apiKeyRequired":{"shape":"Boolean"},
"operationName":{"shape":"String"},
"requestParameters":{"shape":"MapOfStringToBoolean"},
"requestModels":{"shape":"MapOfStringToString"}
}
Expand Down Expand Up @@ -3830,6 +3893,16 @@
}
}
},
"SdkConfigurationProperty":{
"type":"structure",
"members":{
"name":{"shape":"String"},
"friendlyName":{"shape":"String"},
"description":{"shape":"String"},
"required":{"shape":"Boolean"},
"defaultValue":{"shape":"String"}
}
},
"SdkResponse":{
"type":"structure",
"members":{
Expand All @@ -3847,6 +3920,25 @@
},
"payload":"body"
},
"SdkType":{
"type":"structure",
"members":{
"id":{"shape":"String"},
"friendlyName":{"shape":"String"},
"description":{"shape":"String"},
"configurationProperties":{"shape":"ListOfSdkConfigurationProperty"}
}
},
"SdkTypes":{
"type":"structure",
"members":{
"position":{"shape":"String"},
"items":{
"shape":"ListOfSdkType",
"locationName":"item"
}
}
},
"ServiceUnavailableException":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit 26d628b

Please sign in to comment.