Skip to content

Commit 7090d10

Browse files
Updated API models and rebuilt service gems.
1 parent 7af05d3 commit 7090d10

File tree

1,560 files changed

+5401
-2288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,560 files changed

+5401
-2288
lines changed

apis/eventbridge/2015-10-07/api-2.json

Lines changed: 60 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"endpointPrefix":"events",
66
"jsonVersion":"1.1",
77
"protocol":"json",
8+
"protocols":["json"],
89
"serviceFullName":"Amazon EventBridge",
910
"serviceId":"EventBridge",
1011
"signatureVersion":"v4",
@@ -793,6 +794,21 @@
793794
{"shape":"ConcurrentModificationException"},
794795
{"shape":"InternalException"}
795796
]
797+
},
798+
"UpdateEventBus":{
799+
"name":"UpdateEventBus",
800+
"http":{
801+
"method":"POST",
802+
"requestUri":"/"
803+
},
804+
"input":{"shape":"UpdateEventBusRequest"},
805+
"output":{"shape":"UpdateEventBusResponse"},
806+
"errors":[
807+
{"shape":"ResourceNotFoundException"},
808+
{"shape":"InternalException"},
809+
{"shape":"ConcurrentModificationException"},
810+
{"shape":"OperationDisabledException"}
811+
]
796812
}
797813
},
798814
"shapes":{
@@ -1367,13 +1383,19 @@
13671383
"members":{
13681384
"Name":{"shape":"EventBusName"},
13691385
"EventSourceName":{"shape":"EventSourceName"},
1386+
"Description":{"shape":"EventBusDescription"},
1387+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
1388+
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
13701389
"Tags":{"shape":"TagList"}
13711390
}
13721391
},
13731392
"CreateEventBusResponse":{
13741393
"type":"structure",
13751394
"members":{
1376-
"EventBusArn":{"shape":"String"}
1395+
"EventBusArn":{"shape":"String"},
1396+
"Description":{"shape":"EventBusDescription"},
1397+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
1398+
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
13771399
}
13781400
},
13791401
"CreatePartnerEventSourceRequest":{
@@ -1623,7 +1645,12 @@
16231645
"members":{
16241646
"Name":{"shape":"String"},
16251647
"Arn":{"shape":"String"},
1626-
"Policy":{"shape":"String"}
1648+
"Description":{"shape":"EventBusDescription"},
1649+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
1650+
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
1651+
"Policy":{"shape":"String"},
1652+
"CreationTime":{"shape":"Timestamp"},
1653+
"LastModifiedTime":{"shape":"Timestamp"}
16271654
}
16281655
},
16291656
"DescribeEventSourceRequest":{
@@ -1830,9 +1857,16 @@
18301857
"members":{
18311858
"Name":{"shape":"String"},
18321859
"Arn":{"shape":"String"},
1833-
"Policy":{"shape":"String"}
1860+
"Description":{"shape":"EventBusDescription"},
1861+
"Policy":{"shape":"String"},
1862+
"CreationTime":{"shape":"Timestamp"},
1863+
"LastModifiedTime":{"shape":"Timestamp"}
18341864
}
18351865
},
1866+
"EventBusDescription":{
1867+
"type":"string",
1868+
"max":512
1869+
},
18361870
"EventBusList":{
18371871
"type":"list",
18381872
"member":{"shape":"EventBus"}
@@ -2018,6 +2052,10 @@
20182052
"PartitionKeyPath":{"shape":"TargetPartitionKeyPath"}
20192053
}
20202054
},
2055+
"KmsKeyIdentifier":{
2056+
"type":"string",
2057+
"max":2048
2058+
},
20212059
"LaunchType":{
20222060
"type":"string",
20232061
"enum":[
@@ -3257,6 +3295,25 @@
32573295
"EndpointUrl":{"shape":"EndpointUrl"},
32583296
"State":{"shape":"EndpointState"}
32593297
}
3298+
},
3299+
"UpdateEventBusRequest":{
3300+
"type":"structure",
3301+
"members":{
3302+
"Name":{"shape":"EventBusName"},
3303+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
3304+
"Description":{"shape":"EventBusDescription"},
3305+
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
3306+
}
3307+
},
3308+
"UpdateEventBusResponse":{
3309+
"type":"structure",
3310+
"members":{
3311+
"Arn":{"shape":"String"},
3312+
"Name":{"shape":"EventBusName"},
3313+
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
3314+
"Description":{"shape":"EventBusDescription"},
3315+
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
3316+
}
32603317
}
32613318
}
32623319
}

apis/eventbridge/2015-10-07/docs-2.json

Lines changed: 62 additions & 18 deletions
Large diffs are not rendered by default.

apis/vpc-lattice/2022-11-30/api-2.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2360,7 +2360,8 @@
23602360
"type":"string",
23612361
"enum":[
23622362
"HTTP",
2363-
"HTTPS"
2363+
"HTTPS",
2364+
"TLS_PASSTHROUGH"
23642365
]
23652366
},
23662367
"ListenerSummary":{
@@ -2985,7 +2986,8 @@
29852986
"type":"string",
29862987
"enum":[
29872988
"HTTP",
2988-
"HTTPS"
2989+
"HTTPS",
2990+
"TCP"
29892991
]
29902992
},
29912993
"TargetGroupProtocolVersion":{
@@ -3395,7 +3397,7 @@
33953397
"WeightedTargetGroupList":{
33963398
"type":"list",
33973399
"member":{"shape":"WeightedTargetGroup"},
3398-
"max":2,
3400+
"max":10,
33993401
"min":1
34003402
}
34013403
}

apis/vpc-lattice/2022-11-30/docs-2.json

Lines changed: 79 additions & 79 deletions
Large diffs are not rendered by default.

apis/vpc-lattice/2022-11-30/endpoint-rule-set-1.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
]
4141
}
4242
],
43-
"type": "tree",
4443
"rules": [
4544
{
4645
"conditions": [
@@ -59,7 +58,6 @@
5958
},
6059
{
6160
"conditions": [],
62-
"type": "tree",
6361
"rules": [
6462
{
6563
"conditions": [
@@ -87,13 +85,14 @@
8785
},
8886
"type": "endpoint"
8987
}
90-
]
88+
],
89+
"type": "tree"
9190
}
92-
]
91+
],
92+
"type": "tree"
9393
},
9494
{
9595
"conditions": [],
96-
"type": "tree",
9796
"rules": [
9897
{
9998
"conditions": [
@@ -106,7 +105,6 @@
106105
]
107106
}
108107
],
109-
"type": "tree",
110108
"rules": [
111109
{
112110
"conditions": [
@@ -120,7 +118,6 @@
120118
"assign": "PartitionResult"
121119
}
122120
],
123-
"type": "tree",
124121
"rules": [
125122
{
126123
"conditions": [
@@ -143,7 +140,6 @@
143140
]
144141
}
145142
],
146-
"type": "tree",
147143
"rules": [
148144
{
149145
"conditions": [
@@ -178,11 +174,9 @@
178174
]
179175
}
180176
],
181-
"type": "tree",
182177
"rules": [
183178
{
184179
"conditions": [],
185-
"type": "tree",
186180
"rules": [
187181
{
188182
"conditions": [],
@@ -193,16 +187,19 @@
193187
},
194188
"type": "endpoint"
195189
}
196-
]
190+
],
191+
"type": "tree"
197192
}
198-
]
193+
],
194+
"type": "tree"
199195
},
200196
{
201197
"conditions": [],
202198
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
203199
"type": "error"
204200
}
205-
]
201+
],
202+
"type": "tree"
206203
},
207204
{
208205
"conditions": [
@@ -216,14 +213,12 @@
216213
]
217214
}
218215
],
219-
"type": "tree",
220216
"rules": [
221217
{
222218
"conditions": [
223219
{
224220
"fn": "booleanEquals",
225221
"argv": [
226-
true,
227222
{
228223
"fn": "getAttr",
229224
"argv": [
@@ -232,15 +227,14 @@
232227
},
233228
"supportsFIPS"
234229
]
235-
}
230+
},
231+
true
236232
]
237233
}
238234
],
239-
"type": "tree",
240235
"rules": [
241236
{
242237
"conditions": [],
243-
"type": "tree",
244238
"rules": [
245239
{
246240
"conditions": [],
@@ -251,16 +245,19 @@
251245
},
252246
"type": "endpoint"
253247
}
254-
]
248+
],
249+
"type": "tree"
255250
}
256-
]
251+
],
252+
"type": "tree"
257253
},
258254
{
259255
"conditions": [],
260256
"error": "FIPS is enabled but this partition does not support FIPS",
261257
"type": "error"
262258
}
263-
]
259+
],
260+
"type": "tree"
264261
},
265262
{
266263
"conditions": [
@@ -274,7 +271,6 @@
274271
]
275272
}
276273
],
277-
"type": "tree",
278274
"rules": [
279275
{
280276
"conditions": [
@@ -294,11 +290,9 @@
294290
]
295291
}
296292
],
297-
"type": "tree",
298293
"rules": [
299294
{
300295
"conditions": [],
301-
"type": "tree",
302296
"rules": [
303297
{
304298
"conditions": [],
@@ -309,20 +303,22 @@
309303
},
310304
"type": "endpoint"
311305
}
312-
]
306+
],
307+
"type": "tree"
313308
}
314-
]
309+
],
310+
"type": "tree"
315311
},
316312
{
317313
"conditions": [],
318314
"error": "DualStack is enabled but this partition does not support DualStack",
319315
"type": "error"
320316
}
321-
]
317+
],
318+
"type": "tree"
322319
},
323320
{
324321
"conditions": [],
325-
"type": "tree",
326322
"rules": [
327323
{
328324
"conditions": [],
@@ -333,18 +329,22 @@
333329
},
334330
"type": "endpoint"
335331
}
336-
]
332+
],
333+
"type": "tree"
337334
}
338-
]
335+
],
336+
"type": "tree"
339337
}
340-
]
338+
],
339+
"type": "tree"
341340
},
342341
{
343342
"conditions": [],
344343
"error": "Invalid Configuration: Missing Region",
345344
"type": "error"
346345
}
347-
]
346+
],
347+
"type": "tree"
348348
}
349349
]
350350
}

build_tools/aws-sdk-code-generator/spec/protocol-tests/input/ec2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -537,14 +537,14 @@
537537
},
538538
"documentation": "<p>This test serializes simple and complex lists.</p>"
539539
},
540-
"description": "Serializes empty query lists",
540+
"description": "Does not serialize empty query lists.",
541541
"params": {
542542
"ListArg": []
543543
},
544544
"serialized": {
545545
"method": "POST",
546546
"uri": "/",
547-
"body": "Action=QueryLists&Version=2020-01-08&ListArg=",
547+
"body": "Action=QueryLists&Version=2020-01-08",
548548
"headers": {
549549
"Content-Type": "application/x-www-form-urlencoded"
550550
}

build_tools/aws-sdk-code-generator/spec/protocol-tests/output/rest-xml.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@
597597
}
598598
},
599599
"response": {
600-
"status_code": 400,
600+
"status_code": 403,
601601
"headers": {
602602
"Content-Type": "application/xml",
603603
"X-Header": "Header"

0 commit comments

Comments
 (0)