Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = localSchemeBuilder.AddToScheme )
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: core.GroupName, Version: "v1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct { v1meta.TypeMeta `json:",inline"` v1meta.ObjectMeta `json:"metadata,omitempty"` Spec AccountSpec `json:"spec,omitempty"` Status AccountStatus `json:"status,omitempty"` }
type AccountList ¶
type AccountPhase ¶
type AccountPhase string
const ( AccountActive AccountPhase = "Active" AccountTerminating AccountPhase = "Terminating" AccountInactive AccountPhase = "Inactive" )
type AccountSpec ¶
type AccountSpec struct { }
type AccountStatus ¶
type AccountStatus struct {
Phase AccountPhase
}
type User ¶
type User struct { v1meta.TypeMeta `json:",inline"` v1meta.ObjectMeta `json:"metadata,omitempty"` Spec UserSpec `json:"spec,omitempty"` }
TODO (rantuttl): Add other "core" group types below
Click to show internal directories.
Click to hide internal directories.