Skip to content

Commit c985d55

Browse files
author
awssdkgo
committed
Release v1.34.19 (2020-09-08)
=== ### Service Client Updates * `service/apigatewayv2`: Updates service API and documentation * You can now secure HTTP APIs using Lambda authorizers and IAM authorizers. These options enable you to make flexible auth decisions using a Lambda function, or using IAM policies, respectively. * `service/codebuild`: Updates service API and documentation * AWS CodeBuild - Support keyword search for test cases in DecribeTestCases API . Allow deletion of reports in the report group, before deletion of report group using the deleteReports flag. * `service/elasticloadbalancingv2`: Updates service API and documentation * `service/lex-models`: Updates service API and documentation * `service/quicksight`: Updates service API and documentation * Adds tagging support for QuickSight customization resources. A user can now specify a list of tags when creating a customization resource and use a customization ARN in QuickSight's tagging APIs.
1 parent 4ca4815 commit c985d55

File tree

18 files changed

+707
-135
lines changed

18 files changed

+707
-135
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Release v1.34.19 (2020-09-08)
2+
===
3+
4+
### Service Client Updates
5+
* `service/apigatewayv2`: Updates service API and documentation
6+
* You can now secure HTTP APIs using Lambda authorizers and IAM authorizers. These options enable you to make flexible auth decisions using a Lambda function, or using IAM policies, respectively.
7+
* `service/codebuild`: Updates service API and documentation
8+
* AWS CodeBuild - Support keyword search for test cases in DecribeTestCases API . Allow deletion of reports in the report group, before deletion of report group using the deleteReports flag.
9+
* `service/elasticloadbalancingv2`: Updates service API and documentation
10+
* `service/lex-models`: Updates service API and documentation
11+
* `service/quicksight`: Updates service API and documentation
12+
* Adds tagging support for QuickSight customization resources. A user can now specify a list of tags when creating a customization resource and use a customization ARN in QuickSight's tagging APIs.
13+
114
Release v1.34.18 (2020-09-04)
215
===
316

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.34.18"
8+
const SDKVersion = "1.34.19"

models/apis/apigatewayv2/2018-11-29/api-2.json

+96
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,22 @@
567567
"shape" : "BadRequestException"
568568
} ]
569569
},
570+
"ResetAuthorizersCache" : {
571+
"name" : "ResetAuthorizersCache",
572+
"http" : {
573+
"method" : "DELETE",
574+
"requestUri" : "/v2/apis/{apiId}/stages/{stageName}/cache/authorizers",
575+
"responseCode" : 204
576+
},
577+
"input" : {
578+
"shape" : "ResetAuthorizersCacheRequest"
579+
},
580+
"errors" : [ {
581+
"shape" : "NotFoundException"
582+
}, {
583+
"shape" : "TooManyRequestsException"
584+
} ]
585+
},
570586
"GetApi" : {
571587
"name" : "GetApi",
572588
"http" : {
@@ -1645,6 +1661,14 @@
16451661
"Name" : {
16461662
"shape" : "StringWithLengthBetween1And128",
16471663
"locationName" : "name"
1664+
},
1665+
"AuthorizerPayloadFormatVersion": {
1666+
"shape": "StringWithLengthBetween1And64",
1667+
"locationName": "authorizerPayloadFormatVersion"
1668+
},
1669+
"EnableSimpleResponses": {
1670+
"shape": "__boolean",
1671+
"locationName": "enableSimpleResponses"
16481672
}
16491673
},
16501674
"required" : [ "Name" ]
@@ -2016,6 +2040,14 @@
20162040
"Name" : {
20172041
"shape" : "StringWithLengthBetween1And128",
20182042
"locationName" : "name"
2043+
},
2044+
"AuthorizerPayloadFormatVersion": {
2045+
"shape": "StringWithLengthBetween1And64",
2046+
"locationName": "authorizerPayloadFormatVersion"
2047+
},
2048+
"EnableSimpleResponses": {
2049+
"shape": "__boolean",
2050+
"locationName": "enableSimpleResponses"
20192051
}
20202052
},
20212053
"required" : [ "AuthorizerType", "IdentitySource", "Name" ]
@@ -2059,6 +2091,14 @@
20592091
"Name" : {
20602092
"shape" : "StringWithLengthBetween1And128",
20612093
"locationName" : "name"
2094+
},
2095+
"AuthorizerPayloadFormatVersion": {
2096+
"shape": "StringWithLengthBetween1And64",
2097+
"locationName": "authorizerPayloadFormatVersion"
2098+
},
2099+
"EnableSimpleResponses": {
2100+
"shape": "__boolean",
2101+
"locationName": "enableSimpleResponses"
20622102
}
20632103
},
20642104
"required" : [ "ApiId", "AuthorizerType", "IdentitySource", "Name" ]
@@ -2101,6 +2141,14 @@
21012141
"Name" : {
21022142
"shape" : "StringWithLengthBetween1And128",
21032143
"locationName" : "name"
2144+
},
2145+
"AuthorizerPayloadFormatVersion": {
2146+
"shape": "StringWithLengthBetween1And64",
2147+
"locationName": "authorizerPayloadFormatVersion"
2148+
},
2149+
"EnableSimpleResponses": {
2150+
"shape": "__boolean",
2151+
"locationName": "enableSimpleResponses"
21042152
}
21052153
}
21062154
},
@@ -3543,6 +3591,22 @@
35433591
"ExportedApi" : {
35443592
"type" : "blob"
35453593
},
3594+
"ResetAuthorizersCacheRequest" : {
3595+
"type" : "structure",
3596+
"members" : {
3597+
"ApiId" : {
3598+
"shape" : "__string",
3599+
"location" : "uri",
3600+
"locationName" : "apiId"
3601+
},
3602+
"StageName" : {
3603+
"shape" : "__string",
3604+
"location" : "uri",
3605+
"locationName" : "stageName"
3606+
}
3607+
},
3608+
"required" : [ "StageName", "ApiId" ]
3609+
},
35463610
"GetApiMappingRequest" : {
35473611
"type" : "structure",
35483612
"members" : {
@@ -3772,6 +3836,14 @@
37723836
"Name" : {
37733837
"shape" : "StringWithLengthBetween1And128",
37743838
"locationName" : "name"
3839+
},
3840+
"AuthorizerPayloadFormatVersion": {
3841+
"shape": "StringWithLengthBetween1And64",
3842+
"locationName": "authorizerPayloadFormatVersion"
3843+
},
3844+
"EnableSimpleResponses": {
3845+
"shape": "__boolean",
3846+
"locationName": "enableSimpleResponses"
37753847
}
37763848
}
37773849
},
@@ -5808,6 +5880,14 @@
58085880
"Name" : {
58095881
"shape" : "StringWithLengthBetween1And128",
58105882
"locationName" : "name"
5883+
},
5884+
"AuthorizerPayloadFormatVersion": {
5885+
"shape": "StringWithLengthBetween1And64",
5886+
"locationName": "authorizerPayloadFormatVersion"
5887+
},
5888+
"EnableSimpleResponses": {
5889+
"shape": "__boolean",
5890+
"locationName": "enableSimpleResponses"
58115891
}
58125892
}
58135893
},
@@ -5855,6 +5935,14 @@
58555935
"Name" : {
58565936
"shape" : "StringWithLengthBetween1And128",
58575937
"locationName" : "name"
5938+
},
5939+
"AuthorizerPayloadFormatVersion": {
5940+
"shape": "StringWithLengthBetween1And64",
5941+
"locationName": "authorizerPayloadFormatVersion"
5942+
},
5943+
"EnableSimpleResponses": {
5944+
"shape": "__boolean",
5945+
"locationName": "enableSimpleResponses"
58585946
}
58595947
},
58605948
"required" : [ "AuthorizerId", "ApiId" ]
@@ -5897,6 +5985,14 @@
58975985
"Name" : {
58985986
"shape" : "StringWithLengthBetween1And128",
58995987
"locationName" : "name"
5988+
},
5989+
"AuthorizerPayloadFormatVersion": {
5990+
"shape": "StringWithLengthBetween1And64",
5991+
"locationName": "authorizerPayloadFormatVersion"
5992+
},
5993+
"EnableSimpleResponses": {
5994+
"shape": "__boolean",
5995+
"locationName": "enableSimpleResponses"
59005996
}
59015997
}
59025998
},

0 commit comments

Comments
 (0)