From 8b44c74850c51562a4360837e9e4d6e7c47b7d81 Mon Sep 17 00:00:00 2001 From: awssdkgo Date: Fri, 11 Oct 2019 18:26:12 +0000 Subject: [PATCH] Release v1.25.11 --- CHANGELOG.md | 8 ++++++++ aws/endpoints/defaults.go | 13 +++++++++++++ aws/version.go | 2 +- models/apis/greengrass/2017-06-07/api-2.json | 2 +- models/endpoints/endpoints.json | 12 ++++++++++++ service/greengrass/api.go | 3 +++ 6 files changed, 38 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04e22148bc1..b65ca0f6bbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +Release v1.25.11 (2019-10-11) +=== + +### Service Client Updates +* `aws/endpoints`: Updated Regions and Endpoints metadata. +* `service/greengrass`: Updates service API + * Greengrass OTA service supports Raspbian/Armv6l platforms. + Release v1.25.10 (2019-10-10) === diff --git a/aws/endpoints/defaults.go b/aws/endpoints/defaults.go index 1ceff2c13da..c8787392580 100644 --- a/aws/endpoints/defaults.go +++ b/aws/endpoints/defaults.go @@ -2269,8 +2269,11 @@ var awsPartition = partition{ "eu-central-1": endpoint{}, "eu-north-1": endpoint{}, "eu-west-1": endpoint{}, + "eu-west-2": endpoint{}, + "eu-west-3": endpoint{}, "sa-east-1": endpoint{}, "us-east-1": endpoint{}, + "us-east-2": endpoint{}, "us-west-2": endpoint{}, }, }, @@ -3163,6 +3166,9 @@ var awsPartition = partition{ Protocols: []string{"https"}, }, Endpoints: endpoints{ + "ap-east-1": endpoint{ + Protocols: []string{"https"}, + }, "ap-northeast-1": endpoint{ Protocols: []string{"https"}, }, @@ -4919,6 +4925,13 @@ var awsusgovPartition = partition{ }, }, }, + "route53resolver": service{ + + Endpoints: endpoints{ + "us-gov-east-1": endpoint{}, + "us-gov-west-1": endpoint{}, + }, + }, "runtime.sagemaker": service{ Endpoints: endpoints{ diff --git a/aws/version.go b/aws/version.go index 174bc4d013b..7dec038abc9 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.25.10" +const SDKVersion = "1.25.11" diff --git a/models/apis/greengrass/2017-06-07/api-2.json b/models/apis/greengrass/2017-06-07/api-2.json index b56d521f7d2..ed6ec9869a3 100644 --- a/models/apis/greengrass/2017-06-07/api-2.json +++ b/models/apis/greengrass/2017-06-07/api-2.json @@ -4963,7 +4963,7 @@ }, "UpdateTargetsArchitecture" : { "type" : "string", - "enum" : [ "armv7l", "x86_64", "aarch64", "openwrt" ] + "enum" : [ "armv6l", "armv7l", "x86_64", "aarch64", "openwrt" ] }, "UpdateTargetsOperatingSystem" : { "type" : "string", diff --git a/models/endpoints/endpoints.json b/models/endpoints/endpoints.json index e5a1419f2c0..07a410bec56 100644 --- a/models/endpoints/endpoints.json +++ b/models/endpoints/endpoints.json @@ -2112,8 +2112,11 @@ "eu-central-1" : { }, "eu-north-1" : { }, "eu-west-1" : { }, + "eu-west-2" : { }, + "eu-west-3" : { }, "sa-east-1" : { }, "us-east-1" : { }, + "us-east-2" : { }, "us-west-2" : { } } }, @@ -2976,6 +2979,9 @@ "protocols" : [ "https" ] }, "endpoints" : { + "ap-east-1" : { + "protocols" : [ "https" ] + }, "ap-northeast-1" : { "protocols" : [ "https" ] }, @@ -4597,6 +4603,12 @@ "isRegionalized" : false, "partitionEndpoint" : "aws-us-gov-global" }, + "route53resolver" : { + "endpoints" : { + "us-gov-east-1" : { }, + "us-gov-west-1" : { } + } + }, "runtime.sagemaker" : { "endpoints" : { "us-gov-west-1" : { } diff --git a/service/greengrass/api.go b/service/greengrass/api.go index cc540b3aa39..2ef8296ae56 100644 --- a/service/greengrass/api.go +++ b/service/greengrass/api.go @@ -17575,6 +17575,9 @@ const ( // The architecture of the cores which are the targets of an update. const ( + // UpdateTargetsArchitectureArmv6l is a UpdateTargetsArchitecture enum value + UpdateTargetsArchitectureArmv6l = "armv6l" + // UpdateTargetsArchitectureArmv7l is a UpdateTargetsArchitecture enum value UpdateTargetsArchitectureArmv7l = "armv7l"