File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Snippets: ` devproxy-plugin-api-center-minimal-permissions ` - ApiCenterMinimalPermissionsPlugin instance
13
13
- Snippets: ` devproxy-plugin-api-center-minimal-permissions-config ` - ApiCenterMinimalPermissionsPlugin config section
14
+ - Snippets: ` devproxy-plugin-http-file-generator ` - HttpFileGeneratorPlugin instance
15
+ - Snippets: ` devproxy-plugin-http-file-generator-config ` - HttpFileGeneratorPlugin config section
14
16
15
17
### Changed:
16
18
Original file line number Diff line number Diff line change @@ -87,6 +87,8 @@ The following sections describe the features that the extension contributes to V
87
87
| ` devproxy-plugin-graph-random-error-config ` | GraphRandomErrorPlugin config section |
88
88
| ` devproxy-plugin-graph-sdk-guidance ` | GraphSdkGuidancePlugin instance |
89
89
| ` devproxy-plugin-graph-select-guidance ` | GraphSdkGuidancePlugin instance |
90
+ | ` devproxy-plugin-http-file-generator ` | HttpFileGeneratorPlugin instance |
91
+ | ` devproxy-plugin-http-file-generator-config ` | HttpFileGeneratorPlugin config section |
90
92
| ` devproxy-plugin-latency ` | LatencyPlugin instance |
91
93
| ` devproxy-plugin-latency-config ` | LatencyPlugin config section |
92
94
| ` devproxy-plugin-graph-minimal-permissions-guidance ` | MinimalPermissionsGuidancePlugin instance |
Original file line number Diff line number Diff line change @@ -86,6 +86,13 @@ export const pluginSnippets: PluginSnippets = {
86
86
GraphSelectGuidancePlugin : {
87
87
instance : 'devproxy-plugin-graph-select-guidance' ,
88
88
} ,
89
+ HttpFileGeneratorPlugin : {
90
+ instance : 'devproxy-plugin-http-file-generator' ,
91
+ config : {
92
+ name : 'devproxy-plugin-http-file-generator-config' ,
93
+ required : false ,
94
+ } ,
95
+ } ,
89
96
LatencyPlugin : {
90
97
instance : 'devproxy-plugin-latency' ,
91
98
config : {
@@ -211,6 +218,10 @@ export const pluginDocs: PluginDocs = {
211
218
name : 'Graph Select Guidance Plugin' ,
212
219
url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/graphselectguidanceplugin' ,
213
220
} ,
221
+ HttpFileGeneratorPlugin : {
222
+ name : 'HTTP File Generator Plugin' ,
223
+ url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/httpfilegeneratorplugin' ,
224
+ } ,
214
225
LatencyPlugin : {
215
226
name : 'Latency Plugin' ,
216
227
url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/latencyplugin' ,
Original file line number Diff line number Diff line change 477
477
],
478
478
"description" : " GraphSdkGuidancePlugin instance"
479
479
},
480
+ "HttpFileGeneratorPlugin" : {
481
+ "prefix" : " devproxy-plugin-http-file-generator" ,
482
+ "body" : [
483
+ " {" ,
484
+ " \t\" name\" : \" HttpFileGeneratorPlugin\" ," ,
485
+ " \t\" enabled\" : true," ,
486
+ " \t\" pluginPath\" : \" ~appFolder/plugins/dev-proxy-plugins.dll\" ," ,
487
+ " \t\" configSection\" : \" latencyPlugin\" " ,
488
+ " }"
489
+ ],
490
+ "description" : " HttpFileGeneratorPlugin instance"
491
+ },
492
+ "HttpFileGeneratorPluginConfig" : {
493
+ "prefix" : " devproxy-plugin-http-file-generator-config" ,
494
+ "body" : [
495
+ " \" httpFileGeneratorPlugin\" : {" ,
496
+ " \t\" includeOptionsRequests\" : false" ,
497
+ " }"
498
+ ],
499
+ "description" : " HttpFileGeneratorPlugin config section"
500
+ },
480
501
"LatencyPlugin" : {
481
502
"prefix" : " devproxy-plugin-latency" ,
482
503
"body" : [
You can’t perform that action at this time.
0 commit comments