You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and it has been provisioned onto a vault, it would become available to be invoked via larky like so:
# namespace/app-name/function-name@loads('myCompany/virusScanner/scan')defprocess(input, ctx):
result=myCompany.virusScanner.scan(input, ctx)
# do something with resultifresult.hasVirus:
returnabort(400, 'You have a virus')
returninput
Local development can be enabled by the app providing a basic mocked request/response that allows integrators to receive a static response without running a stand-alone server in their local environment.
We would need to publish a basic request/response somehow so that the api for the method call is available to the developer.
The text was updated successfully, but these errors were encountered:
Proposing an interface for calling third party operations made available via the marketplace.
Assuming we provision an application that provides an operation for virus scanning we can invoke like this
Given an application defined like (see marketplace spec)
and it has been provisioned onto a vault, it would become available to be invoked via larky like so:
Local development can be enabled by the app providing a basic mocked request/response that allows integrators to receive a static response without running a stand-alone server in their local environment.
We would need to publish a basic request/response somehow so that the api for the method call is available to the developer.
The text was updated successfully, but these errors were encountered: