This change will vendor the new version of the exoscale-import post-processor component, but remove all of its code from Packer. After the v1.8.0 release this change should be removed entirely. This vendor process is being used as a workaround for decoupling the exoscale-import component without causing a breaking change in Packer. Users of Exoscale are encouraged to leverage `packer init` for installing the latest version of packer-plugin-exoscale.
16 lines
568 B
Go
16 lines
568 B
Go
package egoscale
|
|
|
|
import "errors"
|
|
|
|
// ErrNotFound represents an error indicating a non-existent resource.
|
|
var ErrNotFound = errors.New("resource not found")
|
|
|
|
// ErrTooManyFound represents an error indicating multiple results found for a single resource.
|
|
var ErrTooManyFound = errors.New("multiple resources found")
|
|
|
|
// ErrInvalidRequest represents an error indicating that the caller's request is invalid.
|
|
var ErrInvalidRequest = errors.New("invalid request")
|
|
|
|
// ErrAPIError represents an error indicating an API-side issue.
|
|
var ErrAPIError = errors.New("API error")
|