-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_chart_version.go
46 lines (44 loc) · 1.45 KB
/
model_chart_version.go
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
/*
* Harbor API
*
* These APIs provide services for manipulating Harbor project.
*
* API version: 2.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
// A specified chart entry
type ChartVersion struct {
// The name of the chart
Name string `json:"name"`
// The URL to the relevant project page
Home string `json:"home,omitempty"`
// The URL to the source code of chart
Sources []string `json:"sources,omitempty"`
// A SemVer 2 version of chart
Version string `json:"version"`
// A one-sentence description of chart
Description string `json:"description,omitempty"`
// A list of string keywords
Keywords []string `json:"keywords,omitempty"`
// The name of template engine
Engine string `json:"engine"`
// The URL to an icon file
Icon string `json:"icon"`
// The API version of this chart
ApiVersion string `json:"apiVersion"`
// The version of the application enclosed in the chart
AppVersion string `json:"appVersion"`
// Whether or not this chart is deprecated
Deprecated bool `json:"deprecated,omitempty"`
// A list of label
Labels []Label `json:"labels,omitempty"`
// The created time of the chart entry
Created string `json:"created,omitempty"`
// A flag to indicate if the chart entry is removed
Removed bool `json:"removed,omitempty"`
// The digest value of the chart entry
Digest string `json:"digest,omitempty"`
// The urls of the chart entry
Urls []string `json:"urls,omitempty"`
}