-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_chart_metadata.go
36 lines (34 loc) · 1.08 KB
/
model_chart_metadata.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
/*
* 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
// The metadata of chart version
type ChartMetadata 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"`
}