Documentation
¶
Index ¶
Constants ¶
View Source
const ( FileOpCreateFile = workspacetypes.FileOpCreateFile FileOpCreateFolder = workspacetypes.FileOpCreateFolder FileOpUpdateFile = workspacetypes.FileOpUpdateFile FileOpRename = workspacetypes.FileOpRename FileOpMove = workspacetypes.FileOpMove FileOpDelete = workspacetypes.FileOpDelete FileOpRestoreFile = "restore_file" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackupEntry ¶
type Create ¶
type Create struct {
// Name of the volume.
//
// Required: true
Name string `json:"name" minLength:"1" doc:"Name of the volume"`
// Driver is the volume driver to use.
//
// Required: false
Driver string `json:"driver,omitempty" doc:"Volume driver (e.g., local, nfs)"`
// DriverOpts contains driver-specific options.
//
// Required: false
DriverOpts map[string]string `json:"driverOpts,omitempty" doc:"Driver-specific options"`
// Labels contains user-defined metadata for the volume.
//
// Required: false
Labels map[string]string `json:"labels,omitempty" doc:"User-defined labels"`
}
Create is used to create a new volume.
type PruneReport ¶
type PruneReport struct {
// VolumesDeleted is a list of volume names that were deleted.
//
// Required: true
VolumesDeleted []string `json:"volumesDeleted"`
// SpaceReclaimed is the amount of space reclaimed in bytes.
//
// Required: true
SpaceReclaimed uint64 `json:"spaceReclaimed"`
// ActivityID is the activity created by the prune action.
//
// Required: false
ActivityID *string `json:"activityId,omitempty"`
}
PruneReport is the result of a volume prune operation.
type UsageCounts ¶
type UsageCounts struct {
// Inuse is the number of volumes currently in use.
//
// Required: true
Inuse int `json:"inuse"`
// Unused is the number of volumes not in use.
//
// Required: true
Unused int `json:"unused"`
// Total is the total number of volumes.
//
// Required: true
Total int `json:"total"`
}
UsageCounts contains counts of volumes by usage status.
type Volume ¶
type Volume struct {
// ID is the unique identifier of the volume.
//
// Required: true
ID string `json:"id"`
// Name of the volume.
//
// Required: true
Name string `json:"name"`
// Driver is the volume driver used.
//
// Required: true
Driver string `json:"driver"`
// Mountpoint is the path where the volume is mounted.
//
// Required: true
Mountpoint string `json:"mountpoint"`
// Scope of the volume (local, global, etc).
//
// Required: true
Scope string `json:"scope"`
// Options contains driver-specific options.
//
// Required: true
Options map[string]string `json:"options"`
// Labels contains user-defined metadata for the volume.
//
// Required: true
Labels map[string]string `json:"labels"`
// CreatedAt is the time when the volume was created.
//
// Required: true
CreatedAt string `json:"createdAt"`
// InUse indicates if the volume is currently in use by a container.
//
// Required: true
InUse bool `json:"inUse"`
// UsageData contains size and reference count information.
//
// Required: false
UsageData *volume.UsageData `json:"usageData,omitempty"`
// Size is the size of the volume in bytes.
//
// Required: false
Size int64 `json:"size"`
// Containers is a list of container IDs using this volume.
//
// Required: true
Containers []string `json:"containers"`
// ActivityID is the activity created by a mutating volume action.
//
// Required: false
ActivityID *string `json:"activityId,omitempty"`
}
Volume represents a Docker volume.
func NewSummary ¶
NewSummary creates a Volume from a docker volume.Volume, calculating InUse based on whether the volume has a reference count of 1 or more.
InUse is set to true if the volume's UsageData.RefCount is >= 1, false otherwise.
type WorkspaceFileChange ¶ added in v2.8.0
type WorkspaceFileChange struct {
Operation string `json:"operation" binding:"required" enum:"create_file,create_folder,update_file,rename,move,delete,restore_file"`
RelativePath string `json:"relativePath" binding:"required"`
NewName string `json:"newName,omitempty"`
NewParentPath string `json:"newParentPath,omitempty"`
UploadIndex *int `json:"uploadIndex,omitempty" minimum:"0"`
// BaselineIndex references an uploaded copy of the content an update_file
// change was drafted against. The volume workspace revision is already
// content-aware, so the baseline is accepted for API symmetry with
// project workspaces but not separately compared.
BaselineIndex *int `json:"baselineIndex,omitempty" minimum:"0"`
BackupID string `json:"backupId,omitempty"`
Recursive bool `json:"recursive,omitempty"`
}
type WorkspaceUpdateManifest ¶ added in v2.8.0
type WorkspaceUpdateManifest struct {
FileTreeRevision string `json:"fileTreeRevision" binding:"required"`
FileChanges []WorkspaceFileChange `json:"fileChanges" binding:"required" minItems:"1" maxItems:"500"`
}
Click to show internal directories.
Click to hide internal directories.