tasks

package
v0.57.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2024 License: MPL-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	api.Client
}

Client is an interface for performing requests against the Proxmox 'tasks' API.

func (*Client) BuildPath added in v0.30.3

func (c *Client) BuildPath(taskID string, path string) (string, error)

BuildPath builds a path using information from Task ID.

func (*Client) DeleteTask added in v0.43.0

func (c *Client) DeleteTask(ctx context.Context, upid string) error

DeleteTask deletes specific task.

func (*Client) ExpandPath

func (c *Client) ExpandPath(_ string) string

ExpandPath expands a path relative to the client's base path.

func (*Client) GetTaskLog added in v0.33.0

func (c *Client) GetTaskLog(ctx context.Context, upid string) ([]string, error)

GetTaskLog retrieves the log of a task. The log is returned as an array of lines. Each line is an object with a line number and the text of the line. Reads first 50 lines by default.

func (*Client) GetTaskStatus

func (c *Client) GetTaskStatus(ctx context.Context, upid string) (*GetTaskStatusResponseData, error)

GetTaskStatus retrieves the status of a task.

func (*Client) WaitForTask

func (c *Client) WaitForTask(ctx context.Context, upid string) error

WaitForTask waits for a specific task to complete.

type GetTaskLogResponseBody added in v0.33.0

type GetTaskLogResponseBody struct {
	Data []*GetTaskLogResponseData `json:"data,omitempty"`
}

GetTaskLogResponseBody contains the body from a node get task log response.

type GetTaskLogResponseData added in v0.33.0

type GetTaskLogResponseData struct {
	LineNumber int    `json:"n,omitempty"`
	LineText   string `json:"t,omitempty"`
}

GetTaskLogResponseData contains the data from a node get task log response.

type GetTaskStatusResponseBody

type GetTaskStatusResponseBody struct {
	Data *GetTaskStatusResponseData `json:"data,omitempty"`
}

GetTaskStatusResponseBody contains the body from a node get task status response.

type GetTaskStatusResponseData

type GetTaskStatusResponseData struct {
	PID      int    `json:"pid,omitempty"`
	Status   string `json:"status,omitempty"`
	ExitCode string `json:"exitstatus,omitempty"`
}

GetTaskStatusResponseData contains the data from a node get task status response.

type TaskID added in v0.30.3

type TaskID struct {
	NodeName  string
	PID       int64
	PStart    int64
	StartTime time.Time
	Type      string
	ID        string
	User      string
}

TaskID contains the components of a PVE task ID.

func ParseTaskID added in v0.30.3

func ParseTaskID(taskID string) (TaskID, error)

ParseTaskID parses a task ID into its component parts. The task ID is expected to be in the format of:

UPID:<node_name>:<pid_in_hex>:<pstart_in_hex>:<starttime_in_hex>:<type>:<id (optional)>:<user>@<realm>:

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL