...
1
9
10 package hcsschema
11
12 type Attachment struct {
13 Type_ string `json:"Type,omitempty"`
14
15 Path string `json:"Path,omitempty"`
16
17 IgnoreFlushes bool `json:"IgnoreFlushes,omitempty"`
18
19 CachingMode string `json:"CachingMode,omitempty"`
20
21 NoWriteHardening bool `json:"NoWriteHardening,omitempty"`
22
23 DisableExpansionOptimization bool `json:"DisableExpansionOptimization,omitempty"`
24
25 IgnoreRelativeLocator bool `json:"IgnoreRelativeLocator,omitempty"`
26
27 CaptureIoAttributionContext bool `json:"CaptureIoAttributionContext,omitempty"`
28
29 ReadOnly bool `json:"ReadOnly,omitempty"`
30
31 SupportCompressedVolumes bool `json:"SupportCompressedVolumes,omitempty"`
32
33 AlwaysAllowSparseFiles bool `json:"AlwaysAllowSparseFiles,omitempty"`
34
35 ExtensibleVirtualDiskType string `json:"ExtensibleVirtualDiskType,omitempty"`
36 }
37
View as plain text