All URIs are relative to http://localhost:4000
Method | HTTP request | Description |
---|---|---|
CreateFunction | Post /v1/fn/{module_name} | Create new function |
DeleteFunction | Delete /v1/fn/{module_name}/{function_name} | Delete function |
InvokeFunction | Post /v1/fn/{module_name}/{function_name} | Invoke function |
ShowFunctionByName | Get /v1/fn/{module_name}/{function_name} | Show function info |
UpdateFunction | Put /v1/fn/{module_name}/{function_name} | Update function |
CreateFunction(ctx, moduleName).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()
Create new function
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
moduleName := "moduleName_example" // string | The name of the module to retrieve
name := "name_example" // string | Name of the function (optional)
code := os.NewFile(1234, "some_file") // *os.File | File with the code of the function (optional)
waitForWorkers := true // bool | Whether to wait for all workers to receive the code of the function. If false, the request returns as soon as the creation request terminates. (optional) (default to true)
events := []openapiclient.FunctionCreateUpdateEventsInner{*openapiclient.NewFunctionCreateUpdateEventsInner()} // []FunctionCreateUpdateEventsInner | Events that can trigger the function (optional)
sinks := []openapiclient.FunctionCreateUpdateSinksInner{*openapiclient.NewFunctionCreateUpdateSinksInner()} // []FunctionCreateUpdateSinksInner | Data sinks that receive invocation's results (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.FunctionsAPI.CreateFunction(context.Background(), moduleName).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `FunctionsAPI.CreateFunction``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
moduleName | string | The name of the module to retrieve |
Other parameters are passed through a pointer to a apiCreateFunctionRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
name | string | Name of the function | code | *os.File | File with the code of the function | waitForWorkers | bool | Whether to wait for all workers to receive the code of the function. If false, the request returns as soon as the creation request terminates. | [default to true] events | []FunctionCreateUpdateEventsInner | Events that can trigger the function | sinks | []FunctionCreateUpdateSinksInner | Data sinks that receive invocation's results |
(empty response body)
No authorization required
- Content-Type: multipart/form-data
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteFunction(ctx, moduleName, functionName).Execute()
Delete function
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
moduleName := "moduleName_example" // string | The name of the module
functionName := "functionName_example" // string | The name of the function
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.FunctionsAPI.DeleteFunction(context.Background(), moduleName, functionName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `FunctionsAPI.DeleteFunction``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
moduleName | string | The name of the module | |
functionName | string | The name of the function |
Other parameters are passed through a pointer to a apiDeleteFunctionRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InvokeResult InvokeFunction(ctx, moduleName, functionName).InvokeInput(invokeInput).Execute()
Invoke function
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
moduleName := "moduleName_example" // string | The name of the module
functionName := "functionName_example" // string | The name of the function
invokeInput := *openapiclient.NewInvokeInput() // InvokeInput | Function input
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.FunctionsAPI.InvokeFunction(context.Background(), moduleName, functionName).InvokeInput(invokeInput).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `FunctionsAPI.InvokeFunction``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `InvokeFunction`: InvokeResult
fmt.Fprintf(os.Stdout, "Response from `FunctionsAPI.InvokeFunction`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
moduleName | string | The name of the module | |
functionName | string | The name of the function |
Other parameters are passed through a pointer to a apiInvokeFunctionRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
invokeInput | InvokeInput | Function input |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SingleFunctionResult ShowFunctionByName(ctx, moduleName, functionName).Execute()
Show function info
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
moduleName := "moduleName_example" // string | The name of the module to retrieve
functionName := "functionName_example" // string | The name of the function
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.FunctionsAPI.ShowFunctionByName(context.Background(), moduleName, functionName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `FunctionsAPI.ShowFunctionByName``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ShowFunctionByName`: SingleFunctionResult
fmt.Fprintf(os.Stdout, "Response from `FunctionsAPI.ShowFunctionByName`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
moduleName | string | The name of the module to retrieve | |
functionName | string | The name of the function |
Other parameters are passed through a pointer to a apiShowFunctionByNameRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UpdateFunction(ctx, moduleName, functionName).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()
Update function
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
moduleName := "moduleName_example" // string | The name of the module
functionName := "functionName_example" // string | The name of the function
name := "name_example" // string | Name of the function (optional)
code := os.NewFile(1234, "some_file") // *os.File | File with the code of the function (optional)
waitForWorkers := true // bool | Whether to wait for all workers to receive the code of the function. If false, the request returns as soon as the creation request terminates. (optional) (default to true)
events := []openapiclient.FunctionCreateUpdateEventsInner{*openapiclient.NewFunctionCreateUpdateEventsInner()} // []FunctionCreateUpdateEventsInner | Events that can trigger the function (optional)
sinks := []openapiclient.FunctionCreateUpdateSinksInner{*openapiclient.NewFunctionCreateUpdateSinksInner()} // []FunctionCreateUpdateSinksInner | Data sinks that receive invocation's results (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.FunctionsAPI.UpdateFunction(context.Background(), moduleName, functionName).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `FunctionsAPI.UpdateFunction``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
moduleName | string | The name of the module | |
functionName | string | The name of the function |
Other parameters are passed through a pointer to a apiUpdateFunctionRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
name | string | Name of the function | code | *os.File | File with the code of the function | waitForWorkers | bool | Whether to wait for all workers to receive the code of the function. If false, the request returns as soon as the creation request terminates. | [default to true] events | []FunctionCreateUpdateEventsInner | Events that can trigger the function | sinks | []FunctionCreateUpdateSinksInner | Data sinks that receive invocation's results |
(empty response body)
No authorization required
- Content-Type: multipart/form-data
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]