Skip to content

Commit 3e0c140

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent 8836d54 commit 3e0c140

File tree

7 files changed

+257
-16
lines changed

7 files changed

+257
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::ApiGatewayManagementApi - Updated the API, and documentation for AmazonApiGatewayManagementApi.
5+
6+
* Feature - Aws::ECS - Updated the API, and documentation for Amazon EC2 Container Service.
7+
8+
* Feature - Aws::MQ - Updated the API, and documentation for AmazonMQ.
9+
410
2.11.344 (2019-08-29)
511
------------------
612

aws-sdk-core/apis/apigatewaymanagementapi/2018-11-29/api-2.json

Lines changed: 103 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,45 @@
1111
"signatureVersion" : "v4"
1212
},
1313
"operations" : {
14+
"DeleteConnection" : {
15+
"name" : "DeleteConnection",
16+
"http" : {
17+
"method" : "DELETE",
18+
"requestUri" : "/@connections/{connectionId}",
19+
"responseCode" : 204
20+
},
21+
"input" : {
22+
"shape" : "DeleteConnectionRequest"
23+
},
24+
"errors" : [ {
25+
"shape" : "GoneException"
26+
}, {
27+
"shape" : "LimitExceededException"
28+
}, {
29+
"shape" : "ForbiddenException"
30+
} ]
31+
},
32+
"GetConnection" : {
33+
"name" : "GetConnection",
34+
"http" : {
35+
"method" : "GET",
36+
"requestUri" : "/@connections/{connectionId}",
37+
"responseCode" : 200
38+
},
39+
"input" : {
40+
"shape" : "GetConnectionRequest"
41+
},
42+
"output" : {
43+
"shape" : "GetConnectionResponse"
44+
},
45+
"errors" : [ {
46+
"shape" : "GoneException"
47+
}, {
48+
"shape" : "LimitExceededException"
49+
}, {
50+
"shape" : "ForbiddenException"
51+
} ]
52+
},
1453
"PostToConnection" : {
1554
"name" : "PostToConnection",
1655
"http" : {
@@ -37,6 +76,17 @@
3776
"type" : "blob",
3877
"max" : 131072
3978
},
79+
"DeleteConnectionRequest" : {
80+
"type" : "structure",
81+
"members" : {
82+
"ConnectionId" : {
83+
"shape" : "__string",
84+
"location" : "uri",
85+
"locationName" : "connectionId"
86+
}
87+
},
88+
"required" : [ "ConnectionId" ]
89+
},
4090
"ForbiddenException" : {
4191
"type" : "structure",
4292
"members" : { },
@@ -45,6 +95,34 @@
4595
"httpStatusCode" : 403
4696
}
4797
},
98+
"GetConnectionRequest" : {
99+
"type" : "structure",
100+
"members" : {
101+
"ConnectionId" : {
102+
"shape" : "__string",
103+
"location" : "uri",
104+
"locationName" : "connectionId"
105+
}
106+
},
107+
"required" : [ "ConnectionId" ]
108+
},
109+
"GetConnectionResponse" : {
110+
"type" : "structure",
111+
"members" : {
112+
"ConnectedAt" : {
113+
"shape" : "__timestampIso8601",
114+
"locationName" : "connectedAt"
115+
},
116+
"Identity" : {
117+
"shape" : "Identity",
118+
"locationName" : "identity"
119+
},
120+
"LastActiveAt" : {
121+
"shape" : "__timestampIso8601",
122+
"locationName" : "lastActiveAt"
123+
}
124+
}
125+
},
48126
"GoneException" : {
49127
"type" : "structure",
50128
"members" : { },
@@ -53,13 +131,19 @@
53131
"httpStatusCode" : 410
54132
}
55133
},
56-
"LimitExceededException" : {
134+
"Identity" : {
57135
"type" : "structure",
58-
"members" : { },
59-
"exception" : true,
60-
"error" : {
61-
"httpStatusCode" : 429
62-
}
136+
"members" : {
137+
"SourceIp" : {
138+
"shape" : "__string",
139+
"locationName" : "sourceIp"
140+
},
141+
"UserAgent" : {
142+
"shape" : "__string",
143+
"locationName" : "userAgent"
144+
}
145+
},
146+
"required" : [ "SourceIp", "UserAgent" ]
63147
},
64148
"PayloadTooLargeException" : {
65149
"type" : "structure",
@@ -89,8 +173,20 @@
89173
"required" : [ "ConnectionId", "Data" ],
90174
"payload" : "Data"
91175
},
176+
"LimitExceededException" : {
177+
"type" : "structure",
178+
"members" : { },
179+
"exception" : true,
180+
"error" : {
181+
"httpStatusCode" : 429
182+
}
183+
},
92184
"__string" : {
93185
"type" : "string"
186+
},
187+
"__timestampIso8601" : {
188+
"type" : "timestamp",
189+
"timestampFormat" : "iso8601"
94190
}
95191
}
96-
}
192+
}

aws-sdk-core/apis/apigatewaymanagementapi/2018-11-29/docs-2.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"version" : "2.0",
33
"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>",
44
"operations" : {
5+
"DeleteConnection" : "<p>Delete the connection with the provided id.</p>",
6+
"GetConnection" : "<p>Get information about the connection with the provided id.</p>",
57
"PostToConnection" : "<p>Sends the provided data to the specified connection.</p>"
68
},
79
"shapes" : {
10+
"Connection" : {
11+
"base" : "<p>The information about the connection</p>",
12+
"refs" : { }
13+
},
814
"Data" : {
915
"base" : "<p>The data to be sent to the client specified by its connection id.</p>",
1016
"refs" : { }
@@ -17,8 +23,14 @@
1723
"base" : "<p>The connection with the provided id no longer exists.</p>",
1824
"refs" : { }
1925
},
26+
"Identity" : {
27+
"base" : null,
28+
"refs" : {
29+
"Connection$Identity" : null
30+
}
31+
},
2032
"LimitExceededException" : {
21-
"base" : "<p>The client is sending more than the allowed number of requests per unit of time.</p>",
33+
"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>",
2234
"refs" : { }
2335
},
2436
"PayloadTooLargeException" : {
@@ -28,8 +40,18 @@
2840
"__string" : {
2941
"base" : null,
3042
"refs" : {
43+
"Data$Message" : null,
44+
"Identity$SourceIp" : "<p>The source IP address of the TCP connection making the request to API Gateway.</p>",
45+
"Identity$UserAgent" : "<p>The User Agent of the API caller.</p>",
3146
"PayloadTooLargeException$Message" : null
3247
}
48+
},
49+
"__timestampIso8601" : {
50+
"base" : null,
51+
"refs" : {
52+
"Connection$ConnectedAt" : "<p>The time in ISO 8601 format for when the connection was established.</p>",
53+
"Connection$LastActiveAt" : "<p>The time in ISO 8601 format for when the connection was last active.</p>"
54+
}
3355
}
3456
}
3557
}

aws-sdk-core/apis/ecs/2014-11-13/api-2.json

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,21 @@
609609
{"shape":"InvalidParameterException"}
610610
]
611611
},
612+
"UpdateClusterSettings":{
613+
"name":"UpdateClusterSettings",
614+
"http":{
615+
"method":"POST",
616+
"requestUri":"/"
617+
},
618+
"input":{"shape":"UpdateClusterSettingsRequest"},
619+
"output":{"shape":"UpdateClusterSettingsResponse"},
620+
"errors":[
621+
{"shape":"ServerException"},
622+
{"shape":"ClientException"},
623+
{"shape":"ClusterNotFoundException"},
624+
{"shape":"InvalidParameterException"}
625+
]
626+
},
612627
"UpdateContainerAgent":{
613628
"name":"UpdateContainerAgent",
614629
"http":{
@@ -915,7 +930,8 @@
915930
"cpu":{"shape":"String"},
916931
"memory":{"shape":"String"},
917932
"memoryReservation":{"shape":"String"},
918-
"gpuIds":{"shape":"GpuIds"}
933+
"gpuIds":{"shape":"GpuIds"},
934+
"firelensConfiguration":{"shape":"FirelensConfiguration"}
919935
}
920936
},
921937
"ContainerCondition":{
@@ -966,7 +982,8 @@
966982
"logConfiguration":{"shape":"LogConfiguration"},
967983
"healthCheck":{"shape":"HealthCheck"},
968984
"systemControls":{"shape":"SystemControls"},
969-
"resourceRequirements":{"shape":"ResourceRequirements"}
985+
"resourceRequirements":{"shape":"ResourceRequirements"},
986+
"firelensConfiguration":{"shape":"FirelensConfiguration"}
970987
}
971988
},
972989
"ContainerDefinitions":{
@@ -1459,6 +1476,26 @@
14591476
"type":"list",
14601477
"member":{"shape":"Failure"}
14611478
},
1479+
"FirelensConfiguration":{
1480+
"type":"structure",
1481+
"required":["type"],
1482+
"members":{
1483+
"type":{"shape":"FirelensConfigurationType"},
1484+
"options":{"shape":"FirelensConfigurationOptionsMap"}
1485+
}
1486+
},
1487+
"FirelensConfigurationOptionsMap":{
1488+
"type":"map",
1489+
"key":{"shape":"String"},
1490+
"value":{"shape":"String"}
1491+
},
1492+
"FirelensConfigurationType":{
1493+
"type":"string",
1494+
"enum":[
1495+
"fluentd",
1496+
"fluentbit"
1497+
]
1498+
},
14621499
"GpuIds":{
14631500
"type":"list",
14641501
"member":{"shape":"String"}
@@ -1739,7 +1776,8 @@
17391776
"gelf",
17401777
"fluentd",
17411778
"awslogs",
1742-
"splunk"
1779+
"splunk",
1780+
"awsfirelens"
17431781
]
17441782
},
17451783
"Long":{"type":"long"},
@@ -2677,6 +2715,23 @@
26772715
"members":{
26782716
}
26792717
},
2718+
"UpdateClusterSettingsRequest":{
2719+
"type":"structure",
2720+
"required":[
2721+
"cluster",
2722+
"settings"
2723+
],
2724+
"members":{
2725+
"cluster":{"shape":"String"},
2726+
"settings":{"shape":"ClusterSettings"}
2727+
}
2728+
},
2729+
"UpdateClusterSettingsResponse":{
2730+
"type":"structure",
2731+
"members":{
2732+
"cluster":{"shape":"Cluster"}
2733+
}
2734+
},
26802735
"UpdateContainerAgentRequest":{
26812736
"type":"structure",
26822737
"required":["containerInstance"],

0 commit comments

Comments
 (0)