# Packages
Package etcd provides conversion of etcd errors to API errors.
# Functions
FromObject generates an StatusError from an api.Status, if that is the type of obj; otherwise, returns an UnexpecteObjectError.
IsAlreadyExists determines if the err is an error which indicates that a specified resource already exists.
IsBadRequest determines if err is an error which indicates that the request is invalid.
IsConflict determines if the err is an error which indicates the provided update conflicts.
IsInvalid determines if the err is an error which indicates the provided resource is not valid.
IsNotFound returns true if the specified error was created by NewNotFoundErr.
NewAlreadyExists returns an error indicating the item requested exists by that identifier.
NewBadRequest creates an error that indicates that the request is invalid and can not be processed.
NewConflict returns an error indicating the item can't be updated as provided.
NewFieldDuplicate returns a *ValidationError indicating "duplicate value".
NewFieldForbidden returns a *ValidationError indicating "forbidden".
NewFieldInvalid returns a *ValidationError indicating "invalid value".
NewFieldNotFound returns a *ValidationError indicating "value not found".
NewFieldNotSupported returns a *ValidationError indicating "unsupported value".
NewFieldRequired returns a *ValidationError indicating "value required".
NewInternalError returns an error indicating the item is invalid and cannot be processed.
NewInvalid returns an error indicating the item is invalid and cannot be processed.
NewNotFound returns a new error which indicates that the resource of the kind and the name was not found.
ValueOf converts a ValidationErrorType into its corresponding error message.
# Constants
ValidationErrorTypeDuplicate is used to report collisions of values that must be unique (e.g.
ValidationErrorTypeForbidden is used to report valid (as per formatting rules) values which would be accepted by some api instances, but which would invoke behavior not permitted by this api instance (such as due to stricter security policy).
ValidationErrorTypeInvalid is used to report malformed values (e.g.
ValidationErrorTypeNotFound is used to report failure to find a requested value (e.g.
ValidationErrorTypeNotSupported is used to report valid (as per formatting rules) values that can not be handled (e.g.
ValidationErrorTypeRequired is used to report required values that are not provided (e.g.
# Structs
StatusError is an error intended for consumption by a REST API server; it can also be reconstructed by clients from a REST response.
UnexpectedObjectError can be returned by FromObject if it's passed a non-status object.
ValidationError is an implementation of the 'error' interface, which represents an error of validation.
# Type aliases
ValidationErrorList is a collection of ValidationErrors.
ValidationErrorType is a machine readable value providing more detail about why a field is invalid.