| 1 | # VhdOptions |
| 2 | |
| 3 | **Properties** |
| 4 | |
| 5 | - `Name()` / setter |
| 6 | - `Size()` / setter |
| 7 | - `Type()` / setter |
| 8 | - `Owner()` / setter |
| 9 | |
| 10 | ```cpp |
| 11 | VhdOptions options; |
| 12 | options.Name(L"build-cache"); |
| 13 | options.Size(10ull * 1024 * 1024 * 1024); |
| 14 | options.Type(VhdType::Dynamic); |
| 15 | options.Owner({ 1000, 1000 }); |
| 16 | ``` |