forked from smithy-lang/smithy-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smithy-templates.json
139 lines (139 loc) · 4.07 KB
/
smithy-templates.json
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
{
"name": "smithy-examples",
"templates": {
"quickstart-cli": {
"documentation": "Smithy Quick Start example weather service using the Smithy CLI.",
"path": "quickstart-examples/quickstart-cli"
},
"quickstart-gradle": {
"documentation": "Smithy Quick Start example weather service using the Smithy-Gradle-Plugin.",
"path": "quickstart-examples/quickstart-gradle",
"include": [ ".gitignore", ".gitattributes" ]
},
"custom-annotation-trait": {
"documentation": "Gradle project for creating a package for a custom annotation trait.",
"path": "custom-trait-examples/custom-annotation-trait",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"custom-string-trait": {
"documentation": "Gradle project for creating a package for a custom string trait.",
"path": "custom-trait-examples/custom-string-trait",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"custom-structure-trait": {
"documentation": "Gradle project for creating a package for a custom structure trait.",
"path": "custom-trait-examples/custom-structure-trait",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"filter-internal-projection": {
"documentation": "Projection that filters out internal shapes and traits.",
"path": "projection-examples/filter-out-internal"
},
"smithy-to-openapi": {
"documentation": "Generates an OpenAPI spec from a Smithy model",
"path": "conversion-examples/smithy-to-openapi"
},
"shared-model-package": {
"documentation": "Gradle project to create a shared package of common Smithy models.",
"path": "shared-model-examples/common-shapes",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"common-linting-configuration": {
"documentation": "Gradle project to create a package to define a common set of model validations.",
"path": "linting-and-validation-examples/common-linting-configuration",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"custom-linter": {
"documentation": "Gradle project to create a custom, configurable model linter.",
"path": "linting-and-validation-examples/custom-linter",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"custom-validator": {
"documentation": "Gradle project to create a custom model validator.",
"path": "linting-and-validation-examples/custom-validator",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"decorators": {
"documentation": "Gradle project to create a custom decorator for validation events.",
"path": "linting-and-validation-examples/decorators",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
},
"smithy-gradle-tutorial": {
"documentation": "Tutorial project that demonstrates how to use the Smithy Gradle plugins.",
"path": "gradle-plugin-examples/tutorial",
"include": [
"config/",
"gradle/",
"gradlew",
"gradlew.bat",
"gradle.properties",
".gitignore",
".gitattributes"
]
}
}
}