1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
package api
// ProjectDefaultName is the name of the default project that can never be deleted.
const ProjectDefaultName = "default"
// ProjectsPost represents the fields of a new project
//
// swagger:model
//
// API extension: projects.
type ProjectsPost struct {
ProjectPut `yaml:",inline"`
// The name of the new project
// Example: foo
Name string `json:"name" yaml:"name"`
}
// ProjectPost represents the fields required to rename a project
//
// swagger:model
//
// API extension: projects.
type ProjectPost struct {
// The new name for the project
// Example: bar
Name string `json:"name" yaml:"name"`
}
// ProjectPut represents the modifiable fields of a project
//
// swagger:model
//
// API extension: projects.
type ProjectPut struct {
// Project configuration map (refer to doc/projects.md)
// Example: {"features.profiles": "true", "features.networks": "false"}
Config map[string]string `json:"config" yaml:"config"`
// Description of the project
// Example: My new project
Description string `json:"description" yaml:"description"`
}
// Project represents a project
//
// swagger:model
//
// API extension: projects.
type Project struct {
ProjectPut `yaml:",inline"`
// The project name
// Read only: true
// Example: foo
Name string `json:"name" yaml:"name"`
// List of URLs of objects using this project
// Read only: true
// Example: ["/1.0/images/0e60015346f06627f10580d56ac7fffd9ea775f6d4f25987217d5eed94910a20", "/1.0/instances/c1", "/1.0/networks/mybr0", "/1.0/profiles/default", "/1.0/storage-pools/default/volumes/custom/blah"]
UsedBy []string `json:"used_by" yaml:"used_by"`
}
// Writable converts a full Project struct into a ProjectPut struct (filters read-only fields)
//
// API extension: projects.
func (project *Project) Writable() ProjectPut {
return project.ProjectPut
}
// URL returns the URL for the project.
func (project *Project) URL(apiVersion string) *URL {
return NewURL().Path(apiVersion, "projects", project.Name)
}
// ProjectState represents the current running state of a project
//
// swagger:model
//
// API extension: project_usage.
type ProjectState struct {
// Allocated and used resources
// Read only: true
// Example: {"containers": {"limit": 10, "usage": 4}, "cpu": {"limit": 20, "usage": 16}}
Resources map[string]ProjectStateResource `json:"resources" yaml:"resources"`
}
// ProjectStateResource represents the state of a particular resource in a project
//
// swagger:model
//
// API extension: project_usage.
type ProjectStateResource struct {
// Limit for the resource (-1 if none)
// Example: 10
Limit int64
// Current usage for the resource
// Example: 4
Usage int64
}
|