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
}
Client provides helper methods for communicating with Kopia API serevr.
type MultipleSourceActionResponse ¶
type MultipleSourceActionResponse struct {
Sources map[string]SourceActionResponse `json:"sources"`
}
MultipleSourceActionResponse contains per-source responses for all sources targeted by API command.
type PoliciesResponse ¶
type PoliciesResponse struct {
Policies []*PolicyListEntry `json:"policies"`
}
PoliciesResponse is the response of 'policies' HTTP API command.
type PolicyListEntry ¶
type PolicyListEntry struct {
ID string `json:"id"`
Target snapshot.SourceInfo `json:"target"`
Policy *policy.Policy `json:"policy"`
}
PolicyListEntry describes single policy.
type SourceActionResponse ¶
type SourceActionResponse struct {
Success bool `json:"success"`
}
SourceActionResponse is a per-source response.
type SourceStatus ¶
type SourceStatus struct {
Source snapshot.SourceInfo `json:"source"`
Status string `json:"status"`
Policy *policy.Policy `json:"policy"`
LastSnapshotSize int64 `json:"lastSnapshotSize,omitempty"`
LastSnapshotTime time.Time `json:"lastSnapshotTime,omitempty"`
NextSnapshotTime time.Time `json:"nextSnapshotTime,omitempty"`
UploadStatus struct {
UploadingPath string `json:"path,omitempty"`
UploadingPathCompleted int64 `json:"pathCompleted,omitempty"`
UploadingPathTotal int64 `json:"pathTotal,omitempty"`
} `json:"upload"`
}
SourceStatus describes the status of a single source.
type SourcesResponse ¶
type SourcesResponse struct {
Sources []*SourceStatus `json:"sources"`
}
SourcesResponse is the response of 'sources' HTTP API command.
type StatusResponse ¶
type StatusResponse struct {
ConfigFile string `json:"configFile"`
CacheDir string `json:"cacheDir"`
BlockFormatting content.FormattingOptions `json:"blockFormatting"`
Storage string `json:"storage"`
}
StatusResponse is the response of 'status' HTTP API command.
Click to show internal directories.
Click to hide internal directories.