-
Notifications
You must be signed in to change notification settings - Fork 40
/
aspnetcorerazor.json
520 lines (520 loc) · 23.7 KB
/
aspnetcorerazor.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
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
{
"policy-document": {
"prefix": "policy-document",
"body": [
"<policies>",
"\t<inbound>",
"\t\t<base/>",
"\t\t$0",
"\t</inbound>",
"\t<backend>",
"\t\t<base/>",
"\t</backend>",
"\t<outbound>",
"\t\t<base/>",
"\t</outbound>",
"\t<on-error>",
"\t\t<base/>",
"\t</on-error>",
"</policies>"
],
"description": "Policy document boilerplate for scopes below Global"
},
"policy-document-global": {
"prefix": "policy-document-global",
"body": [
"<policies>",
"\t<inbound>",
"\t\t$0",
"\t</inbound>",
"\t<backend>",
"\t\t<forward-request/>",
"\t</backend>",
"\t<outbound>",
"\t</outbound>",
"\t<on-error>",
"\t</on-error>",
"</policies>"
],
"description": "Policy document boilerplate for Global scope"
},
"authentication-basic": {
"prefix": "authentication-basic",
"body": [
"<authentication-basic username=\"$1\" password=\"$2\" />"
],
"description": "Authenticate with the backend service using Basic authentication. Use in the inbound section at API scope."
},
"authentication-certificate": {
"prefix": "authentication-certificate",
"description": "Authenticate with the backend service using a client certificate. Use in the inbound section at API scope.",
"body": [
"<authentication-certificate thumbprint=\"$1\" />"
]
},
"base": {
"prefix": "base",
"body": [
"<base />"
]
},
"cache-lookup": {
"prefix": "cache-lookup",
"description": "Perform cache lookup and return a valid cached response when available. Appropriately respond to cache validation requests from callers. Use anywhere in the inbound section at Product, API, or Operation scopes.",
"body": [
"<cache-lookup vary-by-developer=\"${1|true,false|}\" vary-by-developer-groups=\"${2|true,false|}\" downstream-caching-type=\"${3|none,private,public|}\" must-revalidate=\"${4|true,false|}\" allow-private-response-caching=\"${4|true,false|}\">",
"\t<vary-by-header>${5:header name}</vary-by-header>",
"\t<vary-by-query-parameter>${6:query parameter}</vary-by-query-parameter>",
"</cache-lookup>"
]
},
"cache-lookup-value": {
"prefix": "cache-lookup-value",
"description": "Perform cache lookup and returned value under the key, if available, or default. If value is not present and no default is specified, variable will not be set. Use at any scope in any section except <backend>.",
"body": [
"<cache-lookup-value key=\"$1\" default-value=\"$2\" variable-name=\"$3\" />"
]
},
"cache-remove-value": {
"prefix": "cache-remove-value",
"description": "Remove value from cache under the key. Use at any scope in any section except <backend>.",
"body": [
"<cache-remove-value key=\"$1\" />"
]
},
"cache-store": {
"prefix": "cache-store",
"description": "Cache responses according to the specified cache configuration. Use anywhere in the outbound section at Product, API, or Operation scopes.",
"body": [
"<cache-store duration=\"${1:seconds}\" />"
]
},
"cache-store-value": {
"prefix": "cache-store-value",
"description": "Store value in cache under a key for duration. Use at any scope in any section except <backend>.",
"body": [
"<cache-store-value key=\"$1\" value=\"@($2)\" duration=\"${3:seconds}\" />"
]
},
"check-header": {
"prefix": "check-header",
"description": "Check header and return specified HTTP status code if it doesn't exist or match expected value. Works for both response and request headers – policy can be applied in inbound or outbound sections at any scope.",
"body": [
"<check-header name=\"$1\" failed-check-httpcode=\"$2\" failed-check-error-message=\"$3\" ignore-case=\"${4|true,false|}\">",
"\t<value>$5</value>",
"</check-header>"
]
},
"choose": {
"prefix": "choose",
"description": "Conditionally apply policy statements based on the results of the evaluation of Boolean expressions. Use at any scope in the inbound and outbound sections.",
"body": [
"<choose>",
"\t<when condition=\"@($1)\">",
"\t\t$0",
"\t</when>",
"\t<otherwise>",
"\t</otherwise>",
"</choose>"
]
},
"cors": {
"prefix": "cors",
"description": "CORS stands for cross-origin resource sharing. Add CORS support to an operation or an API to allow cross-domain calls from browser-based clients. Use in the inbound section only.",
"body": [
"<cors allow-credentials=\"${1|true,false|}\">",
"\t<allowed-origins>",
"\t\t<origin>${2:*}</origin>",
"\t</allowed-origins>",
"\t<allowed-methods>",
"\t\t<method>${3:*}</method>",
"\t</allowed-methods>",
"\t<allowed-headers>",
"\t\t<header>${4:*}</header>",
"\t</allowed-headers>",
"\t<expose-headers>",
"\t\t<header>${5:*}</header>",
"\t</expose-headers>",
"</cors>"
]
},
"cross-domain": {
"prefix": "cross-domain",
"description": "Make the API accessible from Adobe Flash and Microsoft Silverlight browser-based clients. Use in the inbound section at Global scope.",
"body": [
"<cross-domain>",
"\t<cross-domain-policy>",
"\t\t<allow-http-request-headers-from domain=\"*\" headers=\"*\" />",
"\t</cross-domain-policy>",
"</cross-domain>"
]
},
"find-and-replace": {
"prefix": "find-and-replace",
"description": "Find a request or response substring and replace it with a different substring. Use in the inbound and outbound sections at any scope.",
"body": [
"<find-and-replace from=\"$1\" to=\"$2\" />"
]
},
"forward-request": {
"prefix": "forward-request",
"description": "Forward request to the backend service using information in the context and receive a response, waiting no longer then specified timeout value. Use at any scope in the backend section.",
"body": [
"<forward-request timeout=\"${1:seconds}\" />"
]
},
"invoke-dapr-binding": {
"prefix": "invoke-dapr-binding",
"description": "Uses Dapr runtime to invoke an external system via output binding.",
"body": [
"<invoke-dapr-binding name=\"$1\" operation=\"$2\" ignore-error=\"${3|true,false|}\" response-variable-name=\"$4\" timeout=\"${5:seconds}\" template=\"$6\" content-type=${7|always,content-type-json|}>",
"\t<metadata>",
"\t\t<item key=\"$1\"><!-- item-value --></item>",
"\t</metadata>",
"\t<data>",
"\t\t<!-- message content -->",
"\t</data>",
"</invoke-dapr-binding>"
]
},
"ip-filter": {
"prefix": "ip-filter",
"description": "Allow calls only from specific IP addresses and/or address ranges. Forbid calls from specific IP addresses and/or address ranges. Use in the inbound section at any scope.",
"body": [
"<ip-filter action=\"${1|allow,forbid|}\">",
"\t<address-range from=\"$2\" to=\"$3\" />",
"</ip-filter>"
]
},
"jsonp": {
"prefix": "jsonp",
"description": "Add support for JSONP to an operation or an API to allow cross-domain calls from JavaScript browser-based clients. Use in the outbound section only.",
"body": [
"<jsonp callback-parameter-name=\"$1\" />"
]
},
"json-to-xml": {
"prefix": "json-to-xml",
"description": "Convert request or response body from JSON to XML. Use in the inbound or outbound sections at API or Operation scopes.",
"body": [
"<json-to-xml apply=\"${1|always,content-type-json|}\" consider-accept-header=\"${2|true,false|}\" parse-date=\"${3|true,false|}\" />"
]
},
"limit-concurrency": {
"prefix": "limit-concurrency",
"description": "Limit how many calls may be processed in parallel for the duration of this policy's body.",
"body": [
"<limit-concurrency key=\"$1\" max-count=\"$2\" >",
"</limit-concurrency>"
]
},
"log-to-eventhub": {
"prefix": "log-to-eventhub",
"description": "Send custom messages to Event Hub. Use at any scope in the inbound or outbound sections.",
"body": [
"<log-to-eventhub logger-id =\"$1\">",
"\t@($2)",
"</log-to-eventhub>"
]
},
"mock-response": {
"prefix": "mock-response",
"description": "Mock response based on operation responses samples/schemas. Use at any scope in the inbound or outbound sections.",
"body": [
"<mock-response status-code=\"$1\" content-type=\"$2\" />"
]
},
"proxy": {
"prefix": "proxy",
"description": "Route requests forwarded to backends via an HTTP proxy. Use at any scope in the inbound section.",
"body": [
"<proxy url=\"$1\" username=\"$2\" password=\"$3\" />"
]
},
"publish-to-dapr":{
"prefix": "publish-to-dapr",
"description": "Uses Dapr runtime to publish a message to a Publish/Subscribe topic.",
"body": [
"<publish-to-dapr pubsub-name=\"$1\" topic=\"$2\" ignore-error=\"${3|true,false|}\" response-variable-name=\"$4\" timeout=\"${5:seconds}\" template=\"$6\" content-type=${7|always,content-type-json|}>",
"\t<!-- message content -->",
"</publish-to-dapr>"
]
},
"quota": {
"prefix": "quota",
"description": "Enforce a renewable or lifetime call volume and/or bandwidth quota per subscription. Use in the inbound section at Product scope.",
"body": [
"<quota calls=\"${1:number}\" bandwidth=\"${2:kilobytes}\" renewal-period=\"${3:seconds}\">",
"\t<api name=\"$4\" calls=\"${5:number}\" bandwidth=\"${6:kilobytes}\">",
"\t\t<operation name=\"$7\" calls=\"${8:number}\" bandwidth=\"${9:kilobytes}\" />",
"\t</api>",
"</quota>"
]
},
"quota-by-key": {
"prefix": "quota-by-key",
"description": "Enforce a renewable or lifetime call volume and/or bandwidth quota per calculated key. Use in the inbound section at any scope.",
"body": [
"<quota-by-key calls=\"${1:number}\" bandwidth=\"${2:kilobytes}\" renewal-period=\"$3\" counter-key=\"@($4)\" />"
]
},
"rate-limit": {
"prefix": "rate-limit",
"description": "Arrest usage spikes by limiting calls and/or bandwidth consumption rate per subscription. Use in the inbound section at Product scope.",
"body": [
"<rate-limit calls=\"${1:number}\" renewal-period=\"${2:seconds}\">",
"\t<api name=\"$3\" calls=\"${4:number}\">",
"\t\t<operation name=\"$5\" calls=\"${6:number}\" />",
"\t</api>",
"</rate-limit>"
]
},
"rate-limit-by-key": {
"prefix": "rate-limit-by-key",
"description": "Arrest usage spikes by limiting calls and/or bandwidth consumption rate per calculated key. Use in the inbound section at any scope.",
"body": [
"<rate-limit-by-key calls=\"${1:number}\" renewal-period=\"${2:seconds}\" counter-key=\"@($3)\" />"
]
},
"redirect-content-urls": {
"prefix": "redirect-content-urls",
"description": "Use in the outbound section to re-write response body links and Location header values making them point to the proxy. Use in the inbound section for an opposite effect. Apply at API or Operation scopes.",
"body": [
"<redirect-content-urls />"
]
},
"retry": {
"prefix": "retry",
"description": "Retry execution of the enclosed policy statements, if and until the condition is met. Execution will repeat at the specified time interval, up to the specified count.",
"body": [
"<retry condition=\"@($1)\" count=\"${2:number}\" interval=\"${3:seconds}\">",
"\t$0",
"</retry>"
]
},
"return-response": {
"prefix": "return-response",
"description": "Abort pipeline execution and return the specified response directly to the caller. Use at any scope in the inbound and outbound sections.",
"body": [
"<return-response>",
"\t<set-status code=\"$1\" reason=\"$2\" />",
"\t<set-header name=\"$3\" exists-action=\"${4|override,skip,append,delete|}\">",
"\t\t<value>$5</value>",
"\t</set-header>",
"\t<set-body>$6</set-body>",
"</return-response>"
]
},
"rewrite-uri": {
"prefix": "rewrite-uri",
"description": "Convert request URL from its public form to the form expected by the web service. Use anywhere in the inbound section at Operation scope only.",
"body": [
"<rewrite-uri template=\"$1\" copy-unmatched-params=\"${2|true,false|}\" />"
]
},
"send-one-way-request": {
"prefix": "send-one-way-request",
"description": "Send provided request to the specified URL, without waiting for response. Use at any scope in the inbound and outbound sections.",
"body": [
"<send-one-way-request mode=\"${1|new,copy|}\">",
"\t<set-url>$2</set-url>",
"\t<set-method>${3|GET,PUT,PATCH,DELETE|}</set-method>",
"\t<set-header name=\"$4\" exists-action=\"${5|override,skip,append,delete|}\">",
"\t\t<value>$6</value>",
"\t</set-header>",
"\t<set-body>$7</set-body>",
"</send-one-way-request>"
]
},
"send-request": {
"prefix": "send-request",
"description": "Send provided request to the specified URL, waiting no longer then set timeout value. Use at any scope in the inbound and outbound sections.",
"body": [
"<send-request mode=\"${1|new,copy|}\" response-variable-name=\"$2\" timeout=\"${3:seconds}\" ignore-error=\"${4|true,false|}\">",
"\t<set-url>$5</set-url>",
"\t<set-method>${6|GET,PUT,PATCH,DELETE|}</set-method>",
"\t<set-header name=\"$7\" exists-action=\"${8|override,skip,append,delete|}\">",
"\t\t<value>$9</value>",
"\t</set-header>",
"\t<set-body>$10</set-body>",
"</send-request>"
]
},
"set-backend-service-dapr": {
"prefix": "set-backend-serice",
"description": "Uses Dapr runtime to locate and reliably communicate with a Dapr microservice.",
"body": [
"<set-backend-service backend-id=\"$1\" dapr-app-id=\"$2\" dapr-method=\"$3\" dapr-namespace=\"$4\" />"
]
},
"set-backend-service": {
"prefix": "set-backend-service",
"description": "Change backend service where the incoming calls will be directed. Use in the inbound section only at any scope.",
"body": [
"<set-backend-service base-url=\"$1\" />"
]
},
"set-body": {
"prefix": "set-body",
"description": "Set message body to a specific string value. The policy has no effect on the Content-Type header value. Use at any scope in the inbound or outbound sections.",
"body": [
"<set-body template=\"${1|none,liquid|}\">$2</set-body>"
]
},
"set-header": {
"prefix": "set-header",
"description": "Add a new header, change the value of an existing header or remove a header. Works for both response and request headers – policy can be applied in inbound or outbound sections at any scope.",
"body": [
"<set-header name=\"$1\" exists-action=\"${2|override,skip,append,delete|}\">",
"\t<value>$3</value>",
"</set-header>"
]
},
"set-method": {
"prefix": "set-method",
"description": "Change HTTP method to the specified value",
"body": [
"<set-method>${1|GET,PUT,PATCH,DELETE|}</set-method>"
]
},
"set-query-parameter": {
"prefix": "set-query-parameter",
"description": "Add a new query string parameter, change the value of an existing parameter or remove a parameter. Can be applied in the inbound section at any scope.",
"body": [
"<set-query-parameter name=\"$1\" exists-action=\"${2|override,skip,append,delete|}\">",
"\t<value>$3</value>",
"</set-query-parameter>"
]
},
"set-status": {
"prefix": "set-status",
"description": "Change HTTP status code to the specified value. Use at any scope in the outbound sections.",
"body": [
"<set-status code=\"$1\" reason=\"$2\" />"
]
},
"set-variable": {
"prefix": "set-variable",
"description": "Persist a value in a named context variable for later access from expressions. Use at any scope in the inbound and outbound sections.",
"body": [
"<set-variable name=\"$1\" value=\"@($2)\" />"
]
},
"trace": {
"prefix": "trace",
"description": "Output information into trace logs, if request is executed with tracing enabled.",
"body": [
"<trace source=\"$1\">",
"\t@($2)",
"</trace>"
]
},
"validate-content": {
"prefix": "validate-content",
"description": "The validate-content policy validates the size or JSON schema of a request or response body against the API schema. Formats other than JSON aren't supported.",
"body": [
"<validate-content unspecified-content-type-action=\"${1|ignore, prevent, detect|}\" max-size=\"$2\" size-exceeded-action=\"${3|ignore, prevent, detect|}\" errors-variable-name=\"$4\">",
"\t<content type=\"$1\" validate-as=\"$2\" action=\"${3|ignore, prevent, detect|}\" />",
"</validate-content>"
]
},
"validate-parameters": {
"prefix": "validate-parameters",
"description": "The validate-parameters policy validates the header, query, or path parameters in requests against the API schema.",
"body": [
"<validate-parameters specified-parameter-action=\"${1|ignore, prevent, detect|}\" unspecified-parameter-action=\"${2|ignore, prevent, detect|}\" errors-variable-name=\"$3\">",
"\t<headers specified-parameter-action=\"${1|ignore, prevent, detect|}\" unspecified-parameter-action=\"${2|ignore, prevent, detect|}\">",
"\t\t<parameter name=\"$1\" action==\"${2|ignore, prevent, detect|}\" />",
"\t</headers>",
"\t<query specified-parameter-action=\"${1|ignore, prevent, detect|}\" unspecified-parameter-action=\"${2|ignore, prevent, detect|}\">",
"\t\t<parameter name=\"$1\" action==\"${2|ignore, prevent, detect|}\" />",
"\t</query>",
"\t<path specified-parameter-action=\"${1|ignore, prevent, detect|}\">",
"\t\t<parameter name=\"$1\" action==\"${2|ignore, prevent, detect|}\" />",
"\t</path>",
"</validate-parameters>"
]
},
"validate-headers": {
"prefix": "validate-headers",
"description": "The validate-headers policy validates the response headers against the API schema.",
"body": [
"<validate-headers specified-header-action=\"${1|ignore, prevent, detect|}\" unspecified-header-action=\"${2|ignore, prevent, detect|}\" errors-variable-name=\"$3\">",
"<\theader name=\"$1\" action=\"${2|ignore, prevent, detect|}\" />",
"</validate-headers>"
]
},
"validate-status-code": {
"prefix": "validate-status-code",
"description": "The validate-status-code policy validates the HTTP status codes in responses against the API schema. This policy may be used to prevent leakage of backend errors, which can contain stack traces.",
"body": [
"<validate-status-code unspecified-status-code-action=\"${1|ignore, prevent, detect|}\" errors-variable-name=\"$2\">",
"\t<status-code code=\"$1\" action=\"${2|ignore, prevent, detect|}\" />",
"</validate-status-code>"
]
},
"validate-jwt": {
"prefix": "validate-jwt",
"description": "Check and validate a JWT in a header or query parameter. Use in the inbound section at any scope.",
"body": [
"<validate-jwt header-name=\"$1\" failed-validation-httpcode=\"${2:401}\" failed-validation-error-message=\"${3:Unauthorized}\" require-expiration-time=\"${4|true,false|}\" require-scheme=\"${5:Bearer}\" require-signed-tokens=\"${6|true,false|}\" clock-skew=\"${7:0}\">",
"\t<openid-config url=\"$8\">",
"\t<issuer-signing-keys>",
"\t\t<key>${9:Base64 Encoded Key}</key>",
"\t</issuer-signing-keys>",
"\t<audiences>",
"\t\t<audience>$10</audience>",
"\t</audiences>",
"\t<issuers>",
"\t\t<issuer>$11</issuer>",
"\t</issuers>",
"\t<required-claims>",
"\t\t<claim name=\"$12\" match=\"${13|all,any|}\">",
"\t\t\t<value>$14</value>",
"\t\t</claim>",
"\t</required-claims>",
"</validate-jwt>"
]
},
"wait": {
"prefix": "wait",
"description": "Wait for all or any of the send request policies to complete before proceeding. Use at any scope in the inbound and outbound sections.",
"body": [
"<wait for=\"${8|all,any|}\">",
"\t$0",
"</wait>"
]
},
"xml-to-json": {
"prefix": "xml-to-json",
"description": "Convert request or response body from XML to either \"JSON friendly\" or \"XML faithful\" form of JSON. Use in the inbound or outbound sections at API or Operation scopes.",
"body": [
"<xml-to-json kind=\"${1|javascript-friendly,direct|}\" apply=\"${2|always,content-type-xml|}\" consider-accept-header=\"${3|true,false|}\" />"
]
},
"xsl-transform": {
"prefix": "xsl-transform",
"description": "Transform request or response body using XSLTransform. Use in the inbound, outbound and on-error sections at any scope.",
"body": [
"<xsl-transform>",
"\t<parameter name=\"$1\">@($2)</parameter>",
"\t<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">",
"\t\t<xsl:output method=\"xml\" indent=\"yes\" />",
"\t\t<xsl:param name=\"$3\" />",
"\t\t<xsl:template match=\"* | @* | node()\">",
"\t\t\t<xsl:copy>",
"\t\t\t\t<xsl:apply-templates select=\"@* | node()|*\" />",
"\t\t\t</xsl:copy>",
"\t\t</xsl:template>",
"\t</xsl:stylesheet>",
"</xsl-transform>"
]
},
"get-authorization-context": {
"prefix": "get-authorization-context",
"description": "Gets the authorization context of the specified authorization, including the access token",
"body": [
"<get-authorization-context provider-id=\"$1\" authorization-id=\"$2\" context-variable-name=\"$3\" identity-type =\"${4|managed,JWT|}\" identity =\"$5\" ignore-error=\"${6|true,false|}\" />"
]
}
}