Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrResourceDeleting is raised when the resource is being deleted. ErrResourceDeleting = goerrors.New("resource is being deleted") // ErrNamespaceUnset is raised when the namespace hasn't been created // yet. ErrNamespaceUnset = goerrors.New("resource namespace is unset") )
Functions ¶
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client wraps up project related management handling.
func (*Client) GetMetadata ¶
GetMetadata retrieves the project metadata. Clients should consult at least the Active status before doing anything with the project.
type Meta ¶
type Meta struct { // Name is the project's Kubernetes name, so a higher level resource // can reference it. Name string // Namespace is the namespace that is provisioned by the project. // Should be usable set when the project is active. Namespace string // Deleting tells us if we should allow new child objects to be created // in this resource's namespace. Deleting bool }
Meta describes the project.
Click to show internal directories.
Click to hide internal directories.