1
0
mirror of https://github.com/rancher/types.git synced 2025-06-26 21:51:33 +00:00

go generate

This commit is contained in:
kinarashah 2019-02-15 16:02:13 -08:00 committed by Alena Prokharchyk
parent 59b8267bac
commit 73a328fa7d

View File

@ -5,10 +5,12 @@ const (
TargetFieldAppID = "appId"
TargetFieldHealthstate = "healthState"
TargetFieldProjectID = "projectId"
TargetFieldState = "state"
)
type Target struct {
AppID string `json:"appId,omitempty" yaml:"appId,omitempty"`
Healthstate string `json:"healthState,omitempty" yaml:"healthState,omitempty"`
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
State string `json:"state,omitempty" yaml:"state,omitempty"`
}