Documentation
¶
Overview ¶
Package configstore provides a read-only interface to config stores. Refer to https://developer.fastly.com/reference/api/services/resources/config-store/ for more information.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrStoreNotFound indicates the named config store doesn't exist. ErrStoreNotFound = errors.New("config store not found") // ErrStoreNameEmpty indicates the given config store name // was empty. ErrStoreNameEmpty = errors.New("config store name was empty") // ErrStoreNameInvalid indicates the given config store name // was invalid. ErrStoreNameInvalid = errors.New("config store name contained invalid characters") // ErrStoreNameTooLong indicates the given config store name // was too long. ErrStoreNameTooLong = errors.New("config store name too long") // ErrKeyNotFound indicates a key isn't in a config store. ErrKeyNotFound = errors.New("key not found") // ErrUnexpected indicates an unexpected error occurred. ErrUnexpected = errors.New("unexpected error") )
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store is a read-only representation of a config store.
Click to show internal directories.
Click to hide internal directories.