Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Error ¶
type Error struct { // code Code int64 `json:"code,omitempty"` // function error FunctionError interface{} `json:"functionError,omitempty"` // message // Required: true Message *string `json:"message"` // user error UserError interface{} `json:"userError,omitempty"` }
func (*Error) MarshalBinary ¶
MarshalBinary interface implementation
func (*Error) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type Function ¶
type Function struct { // code // Required: true Code *string `json:"code"` // created time CreatedTime int64 `json:"createdTime,omitempty"` // id ID strfmt.UUID `json:"id,omitempty"` // image // Required: true Image *string `json:"image"` // main Main *string `json:"main,omitempty"` // modified time ModifiedTime int64 `json:"modifiedTime,omitempty"` // name // Required: true // Pattern: ^[\w\d\-]+$ Name *string `json:"name"` // schema Schema *Schema `json:"schema,omitempty"` // secrets Secrets []string `json:"secrets"` // status Status Status `json:"status,omitempty"` // tags Tags FunctionTags `json:"tags"` }
func (*Function) MarshalBinary ¶
MarshalBinary interface implementation
func (*Function) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type FunctionTags ¶
type FunctionTags []*Tag
type GetFunctionRunsOKBody ¶
type GetFunctionRunsOKBody []*Run
type GetFunctionsOKBody ¶
type GetFunctionsOKBody []*Function
type GetRunsOKBody ¶
type GetRunsOKBody []*Run
type Run ¶
type Run struct { // blocking Blocking bool `json:"blocking,omitempty"` // executed time // Read Only: true ExecutedTime int64 `json:"executedTime,omitempty"` // finished time // Read Only: true FinishedTime int64 `json:"finishedTime,omitempty"` // function Id // Read Only: true FunctionID string `json:"functionId,omitempty"` // function name // Read Only: true FunctionName string `json:"functionName,omitempty"` // input Input interface{} `json:"input,omitempty"` // logs Logs []string `json:"logs"` // name // Read Only: true Name strfmt.UUID `json:"name,omitempty"` // output // Read Only: true Output interface{} `json:"output,omitempty"` // reason Reason []string `json:"reason"` // secrets Secrets []string `json:"secrets"` // status Status Status `json:"status,omitempty"` }
func (*Run) MarshalBinary ¶
MarshalBinary interface implementation
func (*Run) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type Schema ¶
type Schema struct { // in In interface{} `json:"in,omitempty"` // out Out interface{} `json:"out,omitempty"` }
func (*Schema) MarshalBinary ¶
MarshalBinary interface implementation
func (*Schema) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type Status ¶
type Status string
const ( // StatusCREATING captures enum value "CREATING" StatusCREATING Status = "CREATING" // StatusREADY captures enum value "READY" StatusREADY Status = "READY" // StatusUPDATING captures enum value "UPDATING" StatusUPDATING Status = "UPDATING" // StatusERROR captures enum value "ERROR" StatusERROR Status = "ERROR" // StatusDELETING captures enum value "DELETING" StatusDELETING Status = "DELETING" )
type Tag ¶
type Tag struct { // key Key string `json:"key,omitempty"` // value Value string `json:"value,omitempty"` }
func (*Tag) MarshalBinary ¶
MarshalBinary interface implementation
func (*Tag) UnmarshalBinary ¶
UnmarshalBinary interface implementation
Click to show internal directories.
Click to hide internal directories.