You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documents/ConfigurationSchema.json
+25-1Lines changed: 25 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@
136
136
},
137
137
"EnableHostDriverStore": {
138
138
"type": "boolean",
139
-
"description": "Set it true if you want to enable readonly Plan 9 shares for several GPU-PV (paravirtualization) related folders from the Host OS. You cannot suspend the virtual machine properly if this option is enabled. All these shares are transported with Hyper-V Socket. Available starting with NanaBox 1.2. Read NanaBox Configuration File Reference for more information."
139
+
"description": "Set it true if you want to enable readonly Plan 9 and Virtual SMB shares for several GPU-PV (paravirtualization) related folders from the Host OS. You cannot suspend the virtual machine properly if this option is enabled. All these shares are transported with Hyper-V Socket. Available starting with NanaBox 1.2. Read NanaBox Configuration File Reference for more information."
140
140
},
141
141
"SelectedDevices": {
142
142
"type": "array",
@@ -401,6 +401,30 @@
401
401
}
402
402
}
403
403
}
404
+
},
405
+
"VirtualSmbShares": {
406
+
"type": "array",
407
+
"description": "The Virtual SMB shares setting object array of virtual machine. You cannot suspend the virtual machine properly if this option is enabled. Available starting with NanaBox 1.6 Update 1.",
408
+
"items": {
409
+
"type": "object",
410
+
"required": [ "Path", "Name" ],
411
+
"properties": {
412
+
"ReadOnly": {
413
+
"type": "boolean",
414
+
"description": "Set it true if you want to make the current Virtual SMB share read-only. Available starting with NanaBox 1.6 Update 1."
415
+
},
416
+
"Path": {
417
+
"type": "string",
418
+
"description": "The host path of the current Virtual SMB share. The relative path is supported. Available starting with NanaBox 1.6 Update 1.",
419
+
"examples": [ "D:\\Projects" ]
420
+
},
421
+
"Name": {
422
+
"type": "string",
423
+
"description": "The guest access name of the current Virtual SMB share. If you have set the \"EnableHostDriverStore\" true, you should not use the names mentioned in \"EnableHostDriverStore\" related document for the current Virtual SMB share. Available starting with NanaBox 1.6 Update 1.",
0 commit comments