File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,16 @@ import (
1010
1111// LinodeKernel represents a Linode Instance kernel object
1212type LinodeKernel struct {
13- ID string `json:"id"`
14- Label string `json:"label"`
15- Version string `json:"version"`
16- Architecture string `json:"architecture"`
17- Deprecated bool `json:"deprecated"`
18- KVM bool `json:"kvm"`
19- XEN bool `json:"xen"`
20- PVOPS bool `json:"pvops"`
21- Built * time.Time `json:"-"`
13+ ID string `json:"id"`
14+ Label string `json:"label"`
15+ Version string `json:"version"`
16+ Architecture string `json:"architecture"`
17+ Deprecated bool `json:"deprecated"`
18+ KVM bool `json:"kvm"`
19+ // Deprecated: this field is no longer populated by the API, but it is included here for backward compatibility with existing implementations.
20+ XEN bool `json:"xen"`
21+ PVOPS bool `json:"pvops"`
22+ Built * time.Time `json:"-"`
2223}
2324
2425// UnmarshalJSON implements the json.Unmarshaler interface
You can’t perform that action at this time.
0 commit comments