plan9_share.go 872 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * HCS API
  3. *
  4. * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
  5. *
  6. * API version: 2.1
  7. * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
  8. */
  9. package hcsschema
  10. type Plan9Share struct {
  11. Name string `json:"Name,omitempty"`
  12. // The name by which the guest operation system can access this share, via the aname parameter in the Plan9 protocol.
  13. AccessName string `json:"AccessName,omitempty"`
  14. Path string `json:"Path,omitempty"`
  15. Port int32 `json:"Port,omitempty"`
  16. // Flags are marked private. Until they are exported correctly
  17. //
  18. // ReadOnly 0x00000001
  19. // LinuxMetadata 0x00000004
  20. // CaseSensitive 0x00000008
  21. Flags int32 `json:"Flags,omitempty"`
  22. ReadOnly bool `json:"ReadOnly,omitempty"`
  23. UseShareRootIdentity bool `json:"UseShareRootIdentity,omitempty"`
  24. }