Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.23.13 #2805

Merged
merged 1 commit into from
Aug 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.23.13 (2019-08-30)
===

### Service Client Updates
* `service/apigatewaymanagementapi`: Updates service API and documentation
* `service/ecs`: Updates service API and documentation
* This release of Amazon Elastic Container Service (Amazon ECS) introduces support for modifying the cluster settings for existing clusters, which enables you to toggle whether Container Insights is enabled or not. Support is also introduced for custom log routing using the ECS FireLens integration.
* `service/mq`: Updates service API and documentation
* Adds support for updating security groups selection of an Amazon MQ broker.

### SDK Bugs
* `aws/csm`: Fix metricChan's unsafe atomic operations ([#2785](https://github.com/aws/aws-sdk-go/pull/2785))
* Fixes [#2784](https://github.com/aws/aws-sdk-go/issues/2784) test failure caused by the metricChan.paused member being a value instead of a pointer. If the metricChan value was ever copied the atomic operations performed on paused would be invalid.
* `aws/client`: Updates logic for request retry delay calculation ([#2796](https://github.com/aws/aws-sdk-go/pull/2796))
* Updates logic for calculating the delay after which a request can be retried. Retry delay now includes the Retry-After duration specified in a request. Fixes broken test for retry delays for throttled exceptions.
* Fixes [#2795](https://github.com/aws/aws-sdk-go/issues/2795)
Release v1.23.12 (2019-08-29)
===

Expand Down
5 changes: 0 additions & 5 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,3 @@
### SDK Enhancements

### SDK Bugs
* `aws/csm`: Fix metricChan's unsafe atomic operations ([#2785](https://github.com/aws/aws-sdk-go/pull/2785))
* Fixes [#2784](https://github.com/aws/aws-sdk-go/issues/2784) test failure caused by the metricChan.paused member being a value instead of a pointer. If the metricChan value was ever copied the atomic operations performed on paused would be invalid.
* `aws/client`: Updates logic for request retry delay calculation ([#2796](https://github.com/aws/aws-sdk-go/pull/2796))
* Updates logic for calculating the delay after which a request can be retried. Retry delay now includes the Retry-After duration specified in a request. Fixes broken test for retry delays for throttled exceptions.
* Fixes [#2795](https://github.com/aws/aws-sdk-go/issues/2795)
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.23.12"
const SDKVersion = "1.23.13"
110 changes: 103 additions & 7 deletions models/apis/apigatewaymanagementapi/2018-11-29/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,45 @@
"signatureVersion" : "v4"
},
"operations" : {
"DeleteConnection" : {
"name" : "DeleteConnection",
"http" : {
"method" : "DELETE",
"requestUri" : "/@connections/{connectionId}",
"responseCode" : 204
},
"input" : {
"shape" : "DeleteConnectionRequest"
},
"errors" : [ {
"shape" : "GoneException"
}, {
"shape" : "LimitExceededException"
}, {
"shape" : "ForbiddenException"
} ]
},
"GetConnection" : {
"name" : "GetConnection",
"http" : {
"method" : "GET",
"requestUri" : "/@connections/{connectionId}",
"responseCode" : 200
},
"input" : {
"shape" : "GetConnectionRequest"
},
"output" : {
"shape" : "GetConnectionResponse"
},
"errors" : [ {
"shape" : "GoneException"
}, {
"shape" : "LimitExceededException"
}, {
"shape" : "ForbiddenException"
} ]
},
"PostToConnection" : {
"name" : "PostToConnection",
"http" : {
Expand All @@ -37,6 +76,17 @@
"type" : "blob",
"max" : 131072
},
"DeleteConnectionRequest" : {
"type" : "structure",
"members" : {
"ConnectionId" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "connectionId"
}
},
"required" : [ "ConnectionId" ]
},
"ForbiddenException" : {
"type" : "structure",
"members" : { },
Expand All @@ -45,6 +95,34 @@
"httpStatusCode" : 403
}
},
"GetConnectionRequest" : {
"type" : "structure",
"members" : {
"ConnectionId" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "connectionId"
}
},
"required" : [ "ConnectionId" ]
},
"GetConnectionResponse" : {
"type" : "structure",
"members" : {
"ConnectedAt" : {
"shape" : "__timestampIso8601",
"locationName" : "connectedAt"
},
"Identity" : {
"shape" : "Identity",
"locationName" : "identity"
},
"LastActiveAt" : {
"shape" : "__timestampIso8601",
"locationName" : "lastActiveAt"
}
}
},
"GoneException" : {
"type" : "structure",
"members" : { },
Expand All @@ -53,13 +131,19 @@
"httpStatusCode" : 410
}
},
"LimitExceededException" : {
"Identity" : {
"type" : "structure",
"members" : { },
"exception" : true,
"error" : {
"httpStatusCode" : 429
}
"members" : {
"SourceIp" : {
"shape" : "__string",
"locationName" : "sourceIp"
},
"UserAgent" : {
"shape" : "__string",
"locationName" : "userAgent"
}
},
"required" : [ "SourceIp", "UserAgent" ]
},
"PayloadTooLargeException" : {
"type" : "structure",
Expand Down Expand Up @@ -89,8 +173,20 @@
"required" : [ "ConnectionId", "Data" ],
"payload" : "Data"
},
"LimitExceededException" : {
"type" : "structure",
"members" : { },
"exception" : true,
"error" : {
"httpStatusCode" : 429
}
},
"__string" : {
"type" : "string"
},
"__timestampIso8601" : {
"type" : "timestamp",
"timestampFormat" : "iso8601"
}
}
}
}
24 changes: 23 additions & 1 deletion models/apis/apigatewaymanagementapi/2018-11-29/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"version" : "2.0",
"service" : "<p>The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.</p>",
"operations" : {
"DeleteConnection" : "<p>Delete the connection with the provided id.</p>",
"GetConnection" : "<p>Get information about the connection with the provided id.</p>",
"PostToConnection" : "<p>Sends the provided data to the specified connection.</p>"
},
"shapes" : {
"Connection" : {
"base" : "<p>The information about the connection</p>",
"refs" : { }
},
"Data" : {
"base" : "<p>The data to be sent to the client specified by its connection id.</p>",
"refs" : { }
Expand All @@ -17,8 +23,14 @@
"base" : "<p>The connection with the provided id no longer exists.</p>",
"refs" : { }
},
"Identity" : {
"base" : null,
"refs" : {
"Connection$Identity" : null
}
},
"LimitExceededException" : {
"base" : "<p>The client is sending more than the allowed number of requests per unit of time.</p>",
"base" : "<p>The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.</p>",
"refs" : { }
},
"PayloadTooLargeException" : {
Expand All @@ -28,8 +40,18 @@
"__string" : {
"base" : null,
"refs" : {
"Data$Message" : null,
"Identity$SourceIp" : "<p>The source IP address of the TCP connection making the request to API Gateway.</p>",
"Identity$UserAgent" : "<p>The User Agent of the API caller.</p>",
"PayloadTooLargeException$Message" : null
}
},
"__timestampIso8601" : {
"base" : null,
"refs" : {
"Connection$ConnectedAt" : "<p>The time in ISO 8601 format for when the connection was established.</p>",
"Connection$LastActiveAt" : "<p>The time in ISO 8601 format for when the connection was last active.</p>"
}
}
}
}
61 changes: 58 additions & 3 deletions models/apis/ecs/2014-11-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,21 @@
{"shape":"InvalidParameterException"}
]
},
"UpdateClusterSettings":{
"name":"UpdateClusterSettings",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateClusterSettingsRequest"},
"output":{"shape":"UpdateClusterSettingsResponse"},
"errors":[
{"shape":"ServerException"},
{"shape":"ClientException"},
{"shape":"ClusterNotFoundException"},
{"shape":"InvalidParameterException"}
]
},
"UpdateContainerAgent":{
"name":"UpdateContainerAgent",
"http":{
Expand Down Expand Up @@ -915,7 +930,8 @@
"cpu":{"shape":"String"},
"memory":{"shape":"String"},
"memoryReservation":{"shape":"String"},
"gpuIds":{"shape":"GpuIds"}
"gpuIds":{"shape":"GpuIds"},
"firelensConfiguration":{"shape":"FirelensConfiguration"}
}
},
"ContainerCondition":{
Expand Down Expand Up @@ -966,7 +982,8 @@
"logConfiguration":{"shape":"LogConfiguration"},
"healthCheck":{"shape":"HealthCheck"},
"systemControls":{"shape":"SystemControls"},
"resourceRequirements":{"shape":"ResourceRequirements"}
"resourceRequirements":{"shape":"ResourceRequirements"},
"firelensConfiguration":{"shape":"FirelensConfiguration"}
}
},
"ContainerDefinitions":{
Expand Down Expand Up @@ -1459,6 +1476,26 @@
"type":"list",
"member":{"shape":"Failure"}
},
"FirelensConfiguration":{
"type":"structure",
"required":["type"],
"members":{
"type":{"shape":"FirelensConfigurationType"},
"options":{"shape":"FirelensConfigurationOptionsMap"}
}
},
"FirelensConfigurationOptionsMap":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"FirelensConfigurationType":{
"type":"string",
"enum":[
"fluentd",
"fluentbit"
]
},
"GpuIds":{
"type":"list",
"member":{"shape":"String"}
Expand Down Expand Up @@ -1739,7 +1776,8 @@
"gelf",
"fluentd",
"awslogs",
"splunk"
"splunk",
"awsfirelens"
]
},
"Long":{"type":"long"},
Expand Down Expand Up @@ -2677,6 +2715,23 @@
"members":{
}
},
"UpdateClusterSettingsRequest":{
"type":"structure",
"required":[
"cluster",
"settings"
],
"members":{
"cluster":{"shape":"String"},
"settings":{"shape":"ClusterSettings"}
}
},
"UpdateClusterSettingsResponse":{
"type":"structure",
"members":{
"cluster":{"shape":"Cluster"}
}
},
"UpdateContainerAgentRequest":{
"type":"structure",
"required":["containerInstance"],
Expand Down
Loading