Skip to content

Commit

Permalink
Release v1.20.7
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jun 24, 2019
1 parent edc3c2b commit b0b59fd
Show file tree
Hide file tree
Showing 54 changed files with 14,498 additions and 4,127 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
Release v1.20.7 (2019-06-24)
===

### Service Client Updates
* `service/apigateway`: Updates service API and documentation
* Customers can pick different security policies (TLS version + cipher suite) for custom domains in API Gateway
* `service/apigatewayv2`: Updates service API and documentation
* Customers can get information about security policies set on custom domain resources in API Gateway
* `service/application-insights`: Adds new service
* `service/elasticloadbalancingv2`: Updates service API and documentation
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/fsx`: Updates service API and documentation
* `service/resourcegroupstaggingapi`: Updates service API, documentation, and paginators
* Updated service APIs and documentation.
* `service/securityhub`: Updates service API, documentation, and paginators
* `service/service-quotas`: Adds new service
* `service/ssm`: Updates service API and documentation
* AWS Systems Manager now supports deleting a specific version of a SSM Document.

Release v1.20.6 (2019-06-21)
===

Expand Down
6 changes: 6 additions & 0 deletions 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.20.6"
const SDKVersion = "1.20.7"
21 changes: 20 additions & 1 deletion models/apis/apigateway/2015-07-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2202,7 +2202,8 @@
"regionalCertificateName":{"shape":"String"},
"regionalCertificateArn":{"shape":"String"},
"endpointConfiguration":{"shape":"EndpointConfiguration"},
"tags":{"shape":"MapOfStringToString"}
"tags":{"shape":"MapOfStringToString"},
"securityPolicy":{"shape":"SecurityPolicy"}
}
},
"CreateModelRequest":{
Expand Down Expand Up @@ -2845,9 +2846,20 @@
"distributionDomainName":{"shape":"String"},
"distributionHostedZoneId":{"shape":"String"},
"endpointConfiguration":{"shape":"EndpointConfiguration"},
"domainNameStatus":{"shape":"DomainNameStatus"},
"domainNameStatusMessage":{"shape":"String"},
"securityPolicy":{"shape":"SecurityPolicy"},
"tags":{"shape":"MapOfStringToString"}
}
},
"DomainNameStatus":{
"type":"string",
"enum":[
"AVAILABLE",
"UPDATING",
"PENDING"
]
},
"DomainNames":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -4643,6 +4655,13 @@
}
}
},
"SecurityPolicy":{
"type":"string",
"enum":[
"TLS_1_0",
"TLS_1_2"
]
},
"ServiceUnavailableException":{
"type":"structure",
"members":{
Expand Down
62 changes: 38 additions & 24 deletions models/apis/apigateway/2015-07-09/docs-2.json

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions models/apis/apigatewayv2/2018-11-29/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2754,6 +2754,18 @@
"HostedZoneId" : {
"shape" : "__string",
"locationName" : "hostedZoneId"
},
"SecurityPolicy" : {
"shape" : "SecurityPolicy",
"locationName" : "securityPolicy"
},
"DomainNameStatus" : {
"shape" : "DomainNameStatus",
"locationName" : "domainNameStatus"
},
"DomainNameStatusMessage" : {
"shape" : "__string",
"locationName" : "domainNameStatusMessage"
}
}
},
Expand All @@ -2780,6 +2792,14 @@
"type" : "string",
"enum" : [ "REGIONAL", "EDGE" ]
},
"SecurityPolicy" : {
"type" : "string",
"enum" : [ "TLS_1_0", "TLS_1_2" ]
},
"DomainNameStatus" : {
"type" : "string",
"enum" : [ "AVAILABLE", "UPDATING" ]
},
"GetApiMappingRequest" : {
"type" : "structure",
"members" : {
Expand Down
3 changes: 3 additions & 0 deletions models/apis/apigatewayv2/2018-11-29/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,9 @@
"Deployment$DeploymentStatusMessage" : "<p>May contain additional feedback on the status of an API deployment.</p>",
"DomainNameConfiguration$ApiGatewayDomainName" : "<p>A domain name for the WebSocket API.</p>",
"DomainNameConfiguration$HostedZoneId" : "<p>The Amazon Route 53 Hosted Zone ID of the endpoint.</p>",
"DomainNameConfiguration$SecurityPolicy" : "<p>The Transport Layer Security (TLS) version of the security policy for this domain name. The valid values are TLS_1_0 and TLS_1_2.</p>",
"DomainNameConfiguration$DomainNameStatus" : "<p>The status of the domain name migration. The valid values are AVAILABLE and UPDATING. If the status is UPDATING, the domain cannot be modified further until the existing operation is complete. If it is AVAILABLE, the domain can be updated.</p>",
"DomainNameConfiguration$DomainNameStatusMessage" : "<p>An optional text message containing detailed information about status of the domain name migration.</p>",
"IdentitySourceList$member" : null,
"LimitExceededException$LimitType" : "<p>The limit type.</p>",
"LimitExceededException$Message" : "<p>Describes the error encountered.</p>",
Expand Down
Loading

0 comments on commit b0b59fd

Please sign in to comment.