All URIs are relative to http://localhost:4000
Method | HTTP request | Description |
---|---|---|
CreateApp | Post /v1/app | Create new APP script |
DeleteApp | Delete /v1/app/{app_name} | Delete APP |
ListApp | Get /v1/app | List current APP scripts |
ShowAppByName | Get /v1/app/{app_name} | Show APP info |
CreateApp(ctx).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()
Create new APP script
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
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.AppAPI.CreateApp(context.Background()).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AppAPI.CreateApp``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Other parameters are passed through a pointer to a apiCreateAppRequest 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]
DeleteApp(ctx, moduleName).Execute()
Delete APP
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
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AppAPI.DeleteApp(context.Background(), moduleName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AppAPI.DeleteApp``: %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 apiDeleteAppRequest 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]
ModuleNamesResult ListApp(ctx).Execute()
List current APP scripts
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AppAPI.ListApp(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AppAPI.ListApp``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListApp`: ModuleNamesResult
fmt.Fprintf(os.Stdout, "Response from `AppAPI.ListApp`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListAppRequest struct via the builder pattern
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SingleAppResult ShowAppByName(ctx, moduleName).Execute()
Show APP 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
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AppAPI.ShowAppByName(context.Background(), moduleName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AppAPI.ShowAppByName``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ShowAppByName`: SingleAppResult
fmt.Fprintf(os.Stdout, "Response from `AppAPI.ShowAppByName`: %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 |
Other parameters are passed through a pointer to a apiShowAppByNameRequest 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]