1
0
mirror of https://github.com/rancher/types.git synced 2025-09-18 07:52:41 +00:00

Update generate code

This commit is contained in:
Darren Shepherd
2018-03-31 03:33:56 -07:00
parent c97b6d39bc
commit da232d3e4f
12 changed files with 106 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ const (
ObjectMetaFieldNamespace = "namespace"
ObjectMetaFieldOwnerReferences = "ownerReferences"
ObjectMetaFieldRemoved = "removed"
ObjectMetaFieldSelfLink = "selfLink"
ObjectMetaFieldUuid = "uuid"
)
@@ -22,5 +23,6 @@ type ObjectMeta struct {
Namespace string `json:"namespace,omitempty" yaml:"namespace,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
SelfLink string `json:"selfLink,omitempty" yaml:"selfLink,omitempty"`
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
}