File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ const (
19
19
)
20
20
21
21
type Mount struct {
22
- Type MountType
23
- From string
24
- Source string
25
- Target string
26
- ReadOnly bool
27
- SizeLimit int64
28
- CacheID string
29
- CacheSharing ShareMode
30
- Required bool
31
- Mode * uint64
32
- UID * uint64
33
- GID * uint64
22
+ Type MountType `json:"type,omitempty"`
23
+ From string `json:"from,omitempty"`
24
+ Source string `json:"source,omitempty"`
25
+ Target string `json:"target,omitempty"`
26
+ ReadOnly bool `json:"readOnly,omitempty"`
27
+ SizeLimit int64 `json:"sizeLimit,omitempty"`
28
+ CacheID string `json:"cacheID,omitempty"`
29
+ CacheSharing ShareMode `json:"cacheSharing,omitempty"`
30
+ Required bool `json:"required,omitempty"`
31
+ Mode * uint64 `json:"mode,omitempty"`
32
+ UID * uint64 `json:"uid,omitempty"`
33
+ GID * uint64 `json:"gid,omitempty"`
34
34
}
You can’t perform that action at this time.
0 commit comments