-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponses.go
46 lines (42 loc) · 1.11 KB
/
responses.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
package helm
import "time"
type AutoGenerated struct {
Release Release `json:"release,omitempty"`
Code int `json:"code,omitempty"`
Message string `json:"message,omitempty"`
}
type Release struct {
Name string `json:"name"`
Info struct {
Status struct {
Code string `json:"code"`
} `json:"status"`
FirstDeployed time.Time `json:"first_deployed"`
LastDeployed time.Time `json:"last_deployed"`
Description string `json:"Description"`
} `json:"info"`
Chart struct {
Metadata struct {
Name string `json:"name"`
Version string `json:"version"`
Description string `json:"description"`
APIVersion string `json:"apiVersion"`
} `json:"metadata"`
Templates []struct {
Name string `json:"name"`
Data string `json:"data"`
} `json:"templates"`
Values struct {
Raw string `json:"raw"`
} `json:"values"`
Files []struct {
TypeURL string `json:"type_url"`
Value string `json:"value"`
} `json:"files"`
} `json:"chart"`
Config struct {
} `json:"config"`
Manifest string `json:"manifest"`
Version int `json:"version"`
Namespace string `json:"namespace"`
}