Skip to content

Latest commit

 

History

History
391 lines (253 loc) · 12.5 KB

FunctionsAPI.md

File metadata and controls

391 lines (253 loc) · 12.5 KB

\FunctionsAPI

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

CreateFunction(ctx, moduleName).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()

Create new function

Example

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)
	}
}

Path Parameters

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

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 |

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

DeleteFunction

DeleteFunction(ctx, moduleName, functionName).Execute()

Delete function

Example

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)
	}
}

Path Parameters

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

Other parameters are passed through a pointer to a apiDeleteFunctionRequest struct via the builder pattern

Name Type Description Notes

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

InvokeFunction

InvokeResult InvokeFunction(ctx, moduleName, functionName).InvokeInput(invokeInput).Execute()

Invoke function

Example

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)
}

Path Parameters

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

Other parameters are passed through a pointer to a apiInvokeFunctionRequest struct via the builder pattern

Name Type Description Notes

invokeInput | InvokeInput | Function input |

Return type

InvokeResult

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ShowFunctionByName

SingleFunctionResult ShowFunctionByName(ctx, moduleName, functionName).Execute()

Show function info

Example

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)
}

Path Parameters

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

Other parameters are passed through a pointer to a apiShowFunctionByNameRequest struct via the builder pattern

Name Type Description Notes

Return type

SingleFunctionResult

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

UpdateFunction

UpdateFunction(ctx, moduleName, functionName).Name(name).Code(code).WaitForWorkers(waitForWorkers).Events(events).Sinks(sinks).Execute()

Update function

Example

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)
	}
}

Path Parameters

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

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 |

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]