Documentation
¶
Index ¶
- type GetByNameResponse
- type HttpBind
- func (h *HttpBind) BasicAuth(username, password string) *HttpBind
- func (h *HttpBind) Delete(url string) (response HttpResponse)
- func (h *HttpBind) DigestAuth(username, password string) *HttpBind
- func (h *HttpBind) Download(uri string) (response HttpResponse)
- func (h *HttpBind) Get(url string) (response HttpResponse)
- func (h *HttpBind) Head(url string) (response HttpResponse)
- func (h *HttpBind) Headers(headers []map[string]string) *HttpBind
- func (h *HttpBind) Post(url, data string) (response HttpResponse)
- func (h *HttpBind) Put(url, data string) (response HttpResponse)
- type HttpResponse
- type Response
- type StorageBind
- type Variable
- type VariableListResponse
- type VariablePushRequest
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetByNameResponse ¶ added in v0.21.1
type HttpBind ¶
type HttpBind struct {
// contains filtered or unexported fields
}
HttpBind ...
func NewHttpBind ¶
func NewHttpBind() *HttpBind
func (*HttpBind) DigestAuth ¶
func (*HttpBind) Download ¶
func (h *HttpBind) Download(uri string) (response HttpResponse)
func (*HttpBind) Head ¶ added in v0.22.0
func (h *HttpBind) Head(url string) (response HttpResponse)
Head ...
type HttpResponse ¶
type HttpResponse struct {
Body string `json:"body"`
Error bool `json:"error"`
ErrorMessage string `json:"errorMessage"`
}
HttpResponse ...
type Response ¶
Response ...
func ExecuteSync ¶
ExecuteSync "sh", "-c", "echo stdout; echo 1>&2 stderr"
type StorageBind ¶
type StorageBind struct {
// contains filtered or unexported fields
}
StorageBind ...
func NewStorageBind ¶
func NewStorageBind( storage *storage.Storage) *StorageBind
NewStorageBind ...
type Variable ¶ added in v0.21.1
type Variable struct {
// contains filtered or unexported fields
}
Variable ...
func NewVariable ¶ added in v0.21.1
func NewVariable(adaptors *adaptors.Adaptors, validation *validation.Validate, eventBus bus.Bus) *Variable
NewVariable ...
func (*Variable) GetByName ¶ added in v0.21.1
func (s *Variable) GetByName(name string) GetByNameResponse
func (*Variable) List ¶ added in v0.21.1
func (s *Variable) List(options adaptors.ListVariableOptions) *VariableListResponse
func (*Variable) Push ¶ added in v0.21.1
func (s *Variable) Push(request VariablePushRequest) (err error)
type VariableListResponse ¶ added in v0.21.1
type VariablePushRequest ¶ added in v0.21.1
Click to show internal directories.
Click to hide internal directories.