Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func New ¶
func New(c HTTPClient) *Client
func (*Client) Create ¶
func (c *Client) Create(ctx context.Context, req *CreateRequest) (*CreateResponse, error)
Create Create a Filesystem on an unused disk. Will be mounted under '/mnt/pve/NAME'.
func (*Client) Delete ¶
func (c *Client) Delete(ctx context.Context, req *DeleteRequest) (*DeleteResponse, error)
Delete Unmounts the storage and removes the mount unit.
func (*Client) Index ¶
func (c *Client) Index(ctx context.Context, req *IndexRequest) (*IndexResponse, error)
Index PVE Managed Directory storages.
type CreateRequest ¶
type CreateRequest struct { Device string `url:"device",json:"device"` // The block device you want to create the filesystem on. Name string `url:"name",json:"name"` // The storage identifier. Node string `url:"node",json:"node"` // The cluster node name. // The following parameters are optional AddStorage *bool `url:"add_storage,omitempty",json:"add_storage,omitempty"` // Configure storage using the directory. Filesystem *string `url:"filesystem,omitempty",json:"filesystem,omitempty"` // The desired filesystem. }
type CreateResponse ¶
type CreateResponse string
type DeleteRequest ¶
type DeleteRequest struct { Name string `url:"name",json:"name"` // The storage identifier. Node string `url:"node",json:"node"` // The cluster node name. // The following parameters are optional CleanupConfig *bool `url:"cleanup-config,omitempty",json:"cleanup-config,omitempty"` // Marks associated storage(s) as not available on this node anymore or removes them from the configuration (if configured for this node only). CleanupDisks *bool `url:"cleanup-disks,omitempty",json:"cleanup-disks,omitempty"` // Also wipe disk so it can be repurposed afterwards. }
type DeleteResponse ¶
type DeleteResponse string
type HTTPClient ¶
type IndexRequest ¶
type IndexRequest struct {
Node string `url:"node",json:"node"` // The cluster node name.
}
type IndexResponse ¶
type IndexResponse []*struct { Device string `url:"device",json:"device"` // The mounted device. Options string `url:"options",json:"options"` // The mount options. Path string `url:"path",json:"path"` // The mount path. Type string `url:"type",json:"type"` // The filesystem type. Unitfile string `url:"unitfile",json:"unitfile"` // The path of the mount unit. }
Click to show internal directories.
Click to hide internal directories.