Skip to content

Commit

Permalink
Release v1.12.50
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Dec 19, 2017
1 parent 637cf76 commit 03f37be
Show file tree
Hide file tree
Showing 15 changed files with 907 additions and 55 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.12.50 (2017-12-19)
===

### Service Client Updates
* `service/apigateway`: Updates service API and documentation
* API Gateway now adds support for calling API with compressed payloads using one of the supported content codings, tagging an API stage for cost allocation, and returning API keys from a custom authorizer for use with a usage plan.
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/mediastore-data`: Updates service documentation
* `service/route53`: Updates service API and documentation
* Route 53 added support for a new China (Ningxia) region, cn-northwest-1. You can now specify cn-northwest-1 as the region for latency-based or geoproximity routing. Route 53 also added support for a new EU (Paris) region, eu-west-3. You can now associate VPCs in eu-west-3 with private hosted zones and create alias records that route traffic to resources in eu-west-3.

Release v1.12.49 (2017-12-19)
===

Expand Down
13 changes: 12 additions & 1 deletion 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.12.49"
const SDKVersion = "1.12.50"
125 changes: 124 additions & 1 deletion models/apis/apigateway/2015-07-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1187,6 +1187,22 @@
{"shape":"TooManyRequestsException"}
]
},
"GetTags":{
"name":"GetTags",
"http":{
"method":"GET",
"requestUri":"/tags/{resource_arn}"
},
"input":{"shape":"GetTagsRequest"},
"output":{"shape":"Tags"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"TooManyRequestsException"},
{"shape":"NotFoundException"},
{"shape":"LimitExceededException"}
]
},
"GetUsage":{
"name":"GetUsage",
"http":{
Expand Down Expand Up @@ -1448,6 +1464,23 @@
{"shape":"ConflictException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"PUT",
"requestUri":"/tags/{resource_arn}",
"responseCode":204
},
"input":{"shape":"TagResourceRequest"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"TooManyRequestsException"},
{"shape":"NotFoundException"},
{"shape":"LimitExceededException"},
{"shape":"ConflictException"}
]
},
"TestInvokeAuthorizer":{
"name":"TestInvokeAuthorizer",
"http":{
Expand Down Expand Up @@ -1478,6 +1511,22 @@
{"shape":"TooManyRequestsException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"DELETE",
"requestUri":"/tags/{resource_arn}",
"responseCode":204
},
"input":{"shape":"UntagResourceRequest"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"TooManyRequestsException"},
{"shape":"NotFoundException"},
{"shape":"ConflictException"}
]
},
"UpdateAccount":{
"name":"UpdateAccount",
"http":{
Expand Down Expand Up @@ -1866,6 +1915,13 @@
"warnings":{"shape":"ListOfString"}
}
},
"ApiKeySourceType":{
"type":"string",
"enum":[
"HEADER",
"AUTHORIZER"
]
},
"ApiKeys":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2206,6 +2262,8 @@
"version":{"shape":"String"},
"cloneFrom":{"shape":"String"},
"binaryMediaTypes":{"shape":"ListOfString"},
"minimumCompressionSize":{"shape":"NullableInteger"},
"apiKeySource":{"shape":"ApiKeySourceType"},
"endpointConfiguration":{"shape":"EndpointConfiguration"}
}
},
Expand All @@ -2229,7 +2287,8 @@
"cacheClusterSize":{"shape":"CacheClusterSize"},
"variables":{"shape":"MapOfStringToString"},
"documentationVersion":{"shape":"String"},
"canarySettings":{"shape":"CanarySettings"}
"canarySettings":{"shape":"CanarySettings"},
"tags":{"shape":"MapOfStringToString"}
}
},
"CreateUsagePlanKeyRequest":{
Expand Down Expand Up @@ -3691,6 +3750,27 @@
}
}
},
"GetTagsRequest":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resource_arn"
},
"position":{
"shape":"String",
"location":"querystring",
"locationName":"position"
},
"limit":{
"shape":"NullableInteger",
"location":"querystring",
"locationName":"limit"
}
}
},
"GetUsagePlanKeyRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4486,6 +4566,8 @@
"version":{"shape":"String"},
"warnings":{"shape":"ListOfString"},
"binaryMediaTypes":{"shape":"ListOfString"},
"minimumCompressionSize":{"shape":"NullableInteger"},
"apiKeySource":{"shape":"ApiKeySourceType"},
"endpointConfiguration":{"shape":"EndpointConfiguration"}
}
},
Expand Down Expand Up @@ -4574,6 +4656,7 @@
"documentationVersion":{"shape":"String"},
"accessLogSettings":{"shape":"AccessLogSettings"},
"canarySettings":{"shape":"CanarySettings"},
"tags":{"shape":"MapOfStringToString"},
"createdDate":{"shape":"Timestamp"},
"lastUpdatedDate":{"shape":"Timestamp"}
}
Expand All @@ -4596,6 +4679,27 @@
"pattern":"[1-5]\\d\\d"
},
"String":{"type":"string"},
"TagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tags"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resource_arn"
},
"tags":{"shape":"MapOfStringToString"}
}
},
"Tags":{
"type":"structure",
"members":{
"tags":{"shape":"MapOfStringToString"}
}
},
"Template":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -4715,6 +4819,25 @@
"error":{"httpStatusCode":401},
"exception":true
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resource_arn"
},
"tagKeys":{
"shape":"ListOfString",
"location":"querystring",
"locationName":"tagKeys"
}
}
},
"UpdateAccountRequest":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit 03f37be

Please sign in to comment.