...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/schema2/plan9_share.go

Documentation: github.com/Microsoft/hcsshim/internal/hcs/schema2

     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  
    10  package hcsschema
    11  
    12  type Plan9Share struct {
    13  	Name string `json:"Name,omitempty"`
    14  
    15  	//  The name by which the guest operation system can access this share, via  the aname parameter in the Plan9 protocol.
    16  	AccessName string `json:"AccessName,omitempty"`
    17  
    18  	Path string `json:"Path,omitempty"`
    19  
    20  	Port int32 `json:"Port,omitempty"`
    21  
    22  	// Flags are marked private. Until they are exported correctly
    23  	//
    24  	// ReadOnly      0x00000001
    25  	// LinuxMetadata 0x00000004
    26  	// CaseSensitive 0x00000008
    27  	Flags int32 `json:"Flags,omitempty"`
    28  
    29  	ReadOnly bool `json:"ReadOnly,omitempty"`
    30  
    31  	UseShareRootIdentity bool `json:"UseShareRootIdentity,omitempty"`
    32  
    33  	AllowedFiles []string `json:"AllowedFiles,omitempty"`
    34  }
    35  

View as plain text