-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aws_api_gateway_model.tf
701 lines (624 loc) · 25.3 KB
/
aws_api_gateway_model.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
resource "aws_api_gateway_model" "achievement" {
content_type = "application/json"
description = ""
name = "Achievement"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/achievement/schema.json")
}
resource "aws_api_gateway_model" "achievement_POST" {
content_type = "application/json"
description = ""
name = "AchievementPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/achievement/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "card" {
content_type = "application/json"
description = ""
name = "Card"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/card/schema.json")
}
resource "aws_api_gateway_model" "card_POST" {
content_type = "application/json"
description = ""
name = "CardPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/card/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_accessory" {
content_type = "application/json"
description = ""
name = "ClothingAccessory"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_accessory/schema.json")
}
resource "aws_api_gateway_model" "clothing_accessory_POST" {
content_type = "application/json"
description = ""
name = "ClothingAccessoryPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_accessory/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_bag" {
content_type = "application/json"
description = ""
name = "ClothingBag"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_bag/schema.json")
}
resource "aws_api_gateway_model" "clothing_bag_POST" {
content_type = "application/json"
description = ""
name = "ClothingBagPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_bag/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_bottom" {
content_type = "application/json"
description = ""
name = "ClothingBottom"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_bottom/schema.json")
}
resource "aws_api_gateway_model" "clothing_bottom_POST" {
content_type = "application/json"
description = ""
name = "ClothingBottomPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_bottom/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_dress_up" {
content_type = "application/json"
description = ""
name = "ClothingDressUp"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_dress_up/schema.json")
}
resource "aws_api_gateway_model" "clothing_dress_up_POST" {
content_type = "application/json"
description = ""
name = "ClothingDressUpPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_dress_up/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_headwear" {
content_type = "application/json"
description = ""
name = "ClothingHeadwear"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_headwear/schema.json")
}
resource "aws_api_gateway_model" "clothing_headwear_POST" {
content_type = "application/json"
description = ""
name = "ClothingHeadwearPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_headwear/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_other" {
content_type = "application/json"
description = ""
name = "ClothingOther"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_other/schema.json")
}
resource "aws_api_gateway_model" "clothing_other_POST" {
content_type = "application/json"
description = ""
name = "ClothingOtherPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_other/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_shoe" {
content_type = "application/json"
description = ""
name = "ClothingShoe"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_shoe/schema.json")
}
resource "aws_api_gateway_model" "clothing_shoe_POST" {
content_type = "application/json"
description = ""
name = "ClothingShoePOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_shoe/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_sock" {
content_type = "application/json"
description = ""
name = "ClothingSock"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_sock/schema.json")
}
resource "aws_api_gateway_model" "clothing_sock_POST" {
content_type = "application/json"
description = ""
name = "ClothingSockPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_sock/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_top" {
content_type = "application/json"
description = ""
name = "ClothingTop"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_top/schema.json")
}
resource "aws_api_gateway_model" "clothing_top_POST" {
content_type = "application/json"
description = ""
name = "ClothingTopPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_top/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "clothing_umbrella" {
content_type = "application/json"
description = ""
name = "ClothingUmbrella"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/clothing_umbrella/schema.json")
}
resource "aws_api_gateway_model" "clothing_umbrella_POST" {
content_type = "application/json"
description = ""
name = "ClothingUmbrellaPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/clothing_umbrella/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "construction" {
content_type = "application/json"
description = ""
name = "Construction"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/construction/schema.json")
}
resource "aws_api_gateway_model" "construction_POST" {
content_type = "application/json"
description = ""
name = "ConstructionPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/construction/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "creature_fish" {
content_type = "application/json"
description = ""
name = "CreatureFish"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/creature_fish/schema.json")
}
resource "aws_api_gateway_model" "creature_fish_POST" {
content_type = "application/json"
description = ""
name = "CreatureFishPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/creature_fish/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "creature_insect" {
content_type = "application/json"
description = ""
name = "CreatureInsect"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/creature_insect/schema.json")
}
resource "aws_api_gateway_model" "creature_insect_POST" {
content_type = "application/json"
description = ""
name = "CreatureInsectPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/creature_insect/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "creature_sea" {
content_type = "application/json"
description = ""
name = "CreatureSea"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/creature_sea/schema.json")
}
resource "aws_api_gateway_model" "creature_sea_POST" {
content_type = "application/json"
description = ""
name = "CreatureSeaPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/creature_sea/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_artwork" {
content_type = "application/json"
description = ""
name = "FurnitureArtwork"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_artwork/schema.json")
}
resource "aws_api_gateway_model" "furniture_artwork_POST" {
content_type = "application/json"
description = ""
name = "FurnitureArtworkPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_artwork/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_ceiling" {
content_type = "application/json"
description = ""
name = "FurnitureCeiling"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_ceiling/schema.json")
}
resource "aws_api_gateway_model" "furniture_ceiling_POST" {
content_type = "application/json"
description = ""
name = "FurnitureCeilingPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_ceiling/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_fencing" {
content_type = "application/json"
description = ""
name = "FurnitureFencing"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_fencing/schema.json")
}
resource "aws_api_gateway_model" "furniture_fencing_POST" {
content_type = "application/json"
description = ""
name = "FurnitureFencingPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_fencing/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_floor" {
content_type = "application/json"
description = ""
name = "FurnitureFloor"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_floor/schema.json")
}
resource "aws_api_gateway_model" "furniture_floor_POST" {
content_type = "application/json"
description = ""
name = "FurnitureFloorPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_floor/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_fossil" {
content_type = "application/json"
description = ""
name = "FurnitureFossil"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_fossil/schema.json")
}
resource "aws_api_gateway_model" "furniture_fossil_POST" {
content_type = "application/json"
description = ""
name = "FurnitureFossilPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_fossil/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_gyroid" {
content_type = "application/json"
description = ""
name = "FurnitureGyroid"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_gyroid/schema.json")
}
resource "aws_api_gateway_model" "furniture_gyroid_POST" {
content_type = "application/json"
description = ""
name = "FurnitureGyroidPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_gyroid/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_housewear" {
content_type = "application/json"
description = ""
name = "FurnitureHousewear"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_housewear/schema.json")
}
resource "aws_api_gateway_model" "furniture_housewear_POST" {
content_type = "application/json"
description = ""
name = "FurnitureHousewearPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_housewear/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_interior_structure" {
content_type = "application/json"
description = ""
name = "FurnitureInteriorStructure"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_interior_structure/schema.json")
}
resource "aws_api_gateway_model" "furniture_interior_structure_POST" {
content_type = "application/json"
description = ""
name = "FurnitureInteriorStructurePOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_interior_structure/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_miscellaneous" {
content_type = "application/json"
description = ""
name = "FurnitureMiscellaneous"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_miscellaneous/schema.json")
}
resource "aws_api_gateway_model" "furniture_miscellaneous_POST" {
content_type = "application/json"
description = ""
name = "FurnitureMiscellaneousPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_miscellaneous/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_music" {
content_type = "application/json"
description = ""
name = "FurnitureMusic"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_music/schema.json")
}
resource "aws_api_gateway_model" "furniture_music_POST" {
content_type = "application/json"
description = ""
name = "FurnitureMusicPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_music/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_photo" {
content_type = "application/json"
description = ""
name = "FurniturePhoto"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_photo/schema.json")
}
resource "aws_api_gateway_model" "furniture_photo_POST" {
content_type = "application/json"
description = ""
name = "FurniturePhotoPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_photo/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_poster" {
content_type = "application/json"
description = ""
name = "FurniturePoster"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_poster/schema.json")
}
resource "aws_api_gateway_model" "furniture_poster_POST" {
content_type = "application/json"
description = ""
name = "FurniturePosterPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_poster/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_rug" {
content_type = "application/json"
description = ""
name = "FurnitureRug"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_rug/schema.json")
}
resource "aws_api_gateway_model" "furniture_rug_POST" {
content_type = "application/json"
description = ""
name = "FurnitureRugPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_rug/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_wall_mounted" {
content_type = "application/json"
description = ""
name = "FurnitureWallMounted"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_wall_mounted/schema.json")
}
resource "aws_api_gateway_model" "furniture_wall_mounted_POST" {
content_type = "application/json"
description = ""
name = "FurnitureWallMountedPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_wall_mounted/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "furniture_wallpaper" {
content_type = "application/json"
description = ""
name = "FurnitureWallpaper"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/furniture_wallpaper/schema.json")
}
resource "aws_api_gateway_model" "furniture_wallpaper_POST" {
content_type = "application/json"
description = ""
name = "FurnitureWallpaperPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/furniture_wallpaper/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "item" {
content_type = "application/json"
description = ""
name = "Item"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/item/schema.json")
}
resource "aws_api_gateway_model" "item_POST" {
content_type = "application/json"
description = ""
name = "ItemPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/item/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "item_other" {
content_type = "application/json"
description = ""
name = "ItemOther"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/item_other/schema.json")
}
resource "aws_api_gateway_model" "item_other_POST" {
content_type = "application/json"
description = ""
name = "ItemOtherPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/item_other/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "occasion" {
content_type = "application/json"
description = ""
name = "Occasion"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/occasion/schema.json")
}
resource "aws_api_gateway_model" "occasion_POST" {
content_type = "application/json"
description = ""
name = "OccasionPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/occasion/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "paradise_planning" {
content_type = "application/json"
description = ""
name = "ParadisePlanning"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/paradise_planning/schema.json")
}
resource "aws_api_gateway_model" "paradise_planning_POST" {
content_type = "application/json"
description = ""
name = "ParadisePlanningPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/paradise_planning/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "reaction" {
content_type = "application/json"
description = ""
name = "Reaction"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/reaction/schema.json")
}
resource "aws_api_gateway_model" "reaction_POST" {
content_type = "application/json"
description = ""
name = "ReactionPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/reaction/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "recipe" {
content_type = "application/json"
description = ""
name = "Recipe"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/recipe/schema.json")
}
resource "aws_api_gateway_model" "recipe_POST" {
content_type = "application/json"
description = ""
name = "RecipePOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/recipe/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "villager" {
content_type = "application/json"
description = ""
name = "Villager"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/villager/schema.json")
}
resource "aws_api_gateway_model" "villager_POST" {
content_type = "application/json"
description = ""
name = "VillagerPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/villager/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}
resource "aws_api_gateway_model" "villager_special" {
content_type = "application/json"
description = ""
name = "VillagerSpecial"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = file("./src/api_gateway/model/villager_special/schema.json")
}
resource "aws_api_gateway_model" "villager_special_POST" {
content_type = "application/json"
description = ""
name = "VillagerSpecialPOST"
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
schema = templatefile("./src/api_gateway/method/request_body/POST/villager_special/schema.json", {
rest_api_id = aws_api_gateway_rest_api.animal_crossing.id
})
}