Documentation ¶
Index ¶
- Constants
- Variables
- func DEBUG(format string, args ...interface{})
- func Exec(cmdString string, flags int) error
- func ExecWithOptions(opts ExecOptions) error
- func GenUUID() string
- func Redact(raw string) string
- func Run(p Plugin)
- type EndpointDataTypeMismatchError
- type EndpointMissingRequiredDataError
- type ExecFailure
- type ExecOptions
- type Field
- type JSONError
- type MissingRestoreKeyError
- type Opt
- type Plugin
- type PluginFeatures
- type PluginInfo
- type ShieldEndpoint
- func (endpoint ShieldEndpoint) ArrayValue(key string) ([]interface{}, error)
- func (endpoint ShieldEndpoint) BooleanValue(key string) (bool, error)
- func (endpoint ShieldEndpoint) BooleanValueDefault(key string, def bool) (bool, error)
- func (endpoint ShieldEndpoint) FloatValue(key string) (float64, error)
- func (endpoint ShieldEndpoint) FloatValueDefault(key string, def float64) (float64, error)
- func (endpoint ShieldEndpoint) MapValue(key string) (map[string]interface{}, error)
- func (endpoint ShieldEndpoint) StringValue(key string) (string, error)
- func (endpoint ShieldEndpoint) StringValueDefault(key string, def string) (string, error)
- type UnsupportedActionError
Constants ¶
View Source
const ENDPOINT_BAD_DATA = 13
View Source
const ENDPOINT_MISSING_KEY = 12
View Source
const EXEC_FAILURE = 3
View Source
const JSON_FAILURE = 10
View Source
const NOPIPE = 0
View Source
const PLUGIN_FAILURE = 4
View Source
const RESTORE_KEY_REQUIRED = 11
View Source
const STDIN = 1
View Source
const STDOUT = 2
View Source
const SUCCESS = 0
View Source
const UNSUPPORTED_ACTION = 2
View Source
const USAGE = 1
Variables ¶
View Source
var UNIMPLEMENTED = UnsupportedActionError{}
Functions ¶
func ExecWithOptions ¶ added in v0.4.1
func ExecWithOptions(opts ExecOptions) error
Types ¶
type EndpointDataTypeMismatchError ¶
func (EndpointDataTypeMismatchError) Error ¶
func (e EndpointDataTypeMismatchError) Error() string
type EndpointMissingRequiredDataError ¶
type EndpointMissingRequiredDataError struct {
Key string
}
func (EndpointMissingRequiredDataError) Error ¶
func (e EndpointMissingRequiredDataError) Error() string
type ExecFailure ¶
type ExecFailure struct {
Err string
}
func (ExecFailure) Error ¶
func (e ExecFailure) Error() string
type ExecOptions ¶ added in v0.4.1
type Field ¶
type Field struct { Mode string `json:"mode"` Name string `json:"name"` Type string `json:"type"` Title string `json:"title,omitempty"` Help string `json:"help,omitempty"` Example string `json:"example,omitempty"` Default string `json:"default,omitempty"` Enum []string `json:"enum,omitempty"` Required bool `json:"required,omitempty"` }
type MissingRestoreKeyError ¶
type MissingRestoreKeyError struct{}
func (MissingRestoreKeyError) Error ¶
func (e MissingRestoreKeyError) Error() string
type Opt ¶ added in v0.10.7
type Opt struct { HelpShort bool `cli:"-h"` HelpFull bool `cli:"--help"` Debug bool `cli:"-D, --debug",env:"DEBUG"` Version bool `cli:"-v, --version"` Endpoint string `cli:"-e,--endpoint"` Key string `cli:"-k, --key"` Text bool `cli:"--text"` Info struct{} `cli:"info"` Example struct{} `cli:"example"` Validate struct{} `cli:"validate"` Backup struct{} `cli:"backup"` Restore struct{} `cli:"restore"` Store struct{} `cli:"store"` Retrieve struct{} `cli:"retrieve"` Purge struct{} `cli:"purge"` }
type Plugin ¶
type Plugin interface { Validate(ShieldEndpoint) error Backup(ShieldEndpoint) error Restore(ShieldEndpoint) error Store(ShieldEndpoint) (string, int64, error) Retrieve(ShieldEndpoint, string) error Purge(ShieldEndpoint, string) error Meta() PluginInfo }
type PluginFeatures ¶
type PluginInfo ¶
type ShieldEndpoint ¶
type ShieldEndpoint map[string]interface{}
func (ShieldEndpoint) ArrayValue ¶
func (endpoint ShieldEndpoint) ArrayValue(key string) ([]interface{}, error)
func (ShieldEndpoint) BooleanValue ¶
func (endpoint ShieldEndpoint) BooleanValue(key string) (bool, error)
func (ShieldEndpoint) BooleanValueDefault ¶ added in v0.6.4
func (endpoint ShieldEndpoint) BooleanValueDefault(key string, def bool) (bool, error)
func (ShieldEndpoint) FloatValue ¶
func (endpoint ShieldEndpoint) FloatValue(key string) (float64, error)
func (ShieldEndpoint) FloatValueDefault ¶ added in v0.6.4
func (endpoint ShieldEndpoint) FloatValueDefault(key string, def float64) (float64, error)
func (ShieldEndpoint) MapValue ¶
func (endpoint ShieldEndpoint) MapValue(key string) (map[string]interface{}, error)
func (ShieldEndpoint) StringValue ¶
func (endpoint ShieldEndpoint) StringValue(key string) (string, error)
func (ShieldEndpoint) StringValueDefault ¶ added in v0.6.4
func (endpoint ShieldEndpoint) StringValueDefault(key string, def string) (string, error)
type UnsupportedActionError ¶
type UnsupportedActionError struct {
Action string
}
func (UnsupportedActionError) Error ¶
func (e UnsupportedActionError) Error() string
Directories ¶
Path | Synopsis |
---|---|
The `consul` plugin for SHIELD is intended to be a generic backup/restore plugin for a consul server.
|
The `consul` plugin for SHIELD is intended to be a generic backup/restore plugin for a consul server. |
Click to show internal directories.
Click to hide internal directories.