Merge pull request #1623 from smarterclayton/rename_jsonbase

Rename JSONBase -> TypeMeta in preparation for v1beta3
This commit is contained in:
Daniel Smith
2014-10-07 10:50:28 -07:00
70 changed files with 466 additions and 466 deletions

View File

@@ -46,8 +46,8 @@ Introduce a new attribute *Namespace* for each resource that must be scoped in a
A *Namespace* is a DNS compatible subdomain.
```
// JSONBase is shared by all objects sent to, or returned from the client
type JSONBase struct {
// TypeMeta is shared by all objects sent to, or returned from the client
type TypeMeta struct {
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
Uid string `json:"uid,omitempty" yaml:"uid,omitempty"`
CreationTimestamp util.Time `json:"creationTimestamp,omitempty" yaml:"creationTimestamp,omitempty"`