File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 3
3
"$schema" : " http://json-schema.org/draft-04/schema#" ,
4
4
"type" : " object" ,
5
5
"properties" : {
6
+ "disabled" : {
7
+ "type" : " boolean" ,
8
+ "description" : " If set to true, marks the function as disabled (it cannot be triggered)."
9
+ },
10
+ "excluded" : {
11
+ "type" : " boolean" ,
12
+ "description" : " If set to true, the function will not be loaded, compiled, or triggered."
13
+ },
14
+ "scriptFile" : {
15
+ "type" : " string" ,
16
+ "description" : " Optional path to function script file."
17
+ },
18
+ "entryPoint" : {
19
+ "type" : " string" ,
20
+ "description" : " Optional named entry point."
21
+ },
6
22
"bindings" : {
7
23
"type" : " array" ,
8
24
"description" : " A list of function bindings." ,
9
25
"items" : {
10
26
"oneOf" : [
11
27
{ "$ref" : " #/definitions/dynamicBinding" },
12
- {
28
+ {
13
29
"oneOf" : [
14
30
{ "$ref" : " #/definitions/serviceBusBinding" },
15
31
{ "$ref" : " #/definitions/blobBinding" },
30
46
"allOf" : [
31
47
{ "$ref" : " #/definitions/bindingBase" }
32
48
]
33
- },
34
- "disabled" : {
35
- "type" : " boolean" ,
36
- "description" : " If set to true, marks the function as disabled (it cannot be triggered)."
37
- },
38
- "excluded" : {
39
- "type" : " boolean" ,
40
- "description" : " If set to true, the function will not be loaded, compiled, or triggered."
41
- },
42
- "scriptFile" : {
43
- "type" : " string" ,
44
- "description" : " Optional path to function script file."
45
- },
46
- "entryPoint" : {
47
- "type" : " string" ,
48
- "description" : " Optional named entry point."
49
49
}
50
50
}
51
51
},
You can’t perform that action at this time.
0 commit comments