Documentation
¶
Index ¶
- Constants
- type Action
- type BinaryBody
- type Connector
- func (h *Connector) GetMetaInfo(resourceOptions map[string]interface{}) (common.MetaInfoResult, error)
- func (h *Connector) Run(resourceOptions map[string]interface{}, actionOptions map[string]interface{}) (common.RuntimeResult, error)
- func (h *Connector) TestConnection(resourceOptions map[string]interface{}) (common.ConnectionResult, error)
- func (h *Connector) ValidateActionOptions(actionOptions map[string]interface{}) (common.ValidateResult, error)
- func (h *Connector) ValidateResourceOptions(resourceOptions map[string]interface{}) (common.ValidateResult, error)
- type RawBody
- type RecordBody
- type Resource
Constants ¶
View Source
const ( METHOD_GET = "GET" METHOD_POST = "POST" METHOD_PUT = "PUT" METHOD_DELETE = "DELETE" METHOD_PATCH = "PATCH" BODY_NONE = "none" BODY_RAW = "raw" BODY_BINARY = "binary" BODY_FORM = "form-data" BODY_XWFU = "x-www-form-urlencoded" AUTH_NONE = "none" AUTH_BASIC = "basic" AUTH_BEARER = "bearer" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Action ¶
type Action struct {
URL string
Method string `validate:"oneof=GET POST PUT PATCH DELETE"`
URLParams []map[string]string
Headers []map[string]string
Cookies []map[string]string
BodyType string `validate:"oneof=none form-data x-www-form-urlencoded raw json binary"`
Body interface{} `validate:"required_unless=BodyType none"`
}
func (*Action) ReflectBodyToBinary ¶
func (*Action) ReflectBodyToMap ¶
func (*Action) ReflectBodyToRaw ¶
func (*Action) ReflectBodyToRecord ¶
func (h *Action) ReflectBodyToRecord() []*RecordBody
type BinaryBody ¶
type BinaryBody string
type Connector ¶
func (*Connector) GetMetaInfo ¶
func (h *Connector) GetMetaInfo(resourceOptions map[string]interface{}) (common.MetaInfoResult, error)
func (*Connector) TestConnection ¶
func (h *Connector) TestConnection(resourceOptions map[string]interface{}) (common.ConnectionResult, error)
func (*Connector) ValidateActionOptions ¶
func (h *Connector) ValidateActionOptions(actionOptions map[string]interface{}) (common.ValidateResult, error)
func (*Connector) ValidateResourceOptions ¶
func (h *Connector) ValidateResourceOptions(resourceOptions map[string]interface{}) (common.ValidateResult, error)
type RecordBody ¶
Click to show internal directories.
Click to hide internal directories.