RunConfigurationOptions

data class RunConfigurationOptions(var deploy: Boolean = true, var serve: ServeRunConfiguration = ServeRunConfiguration(), var inspect: ServeRunConfiguration = ServeRunConfiguration(), var request: ServeRunConfiguration = ServeRunConfiguration())(source)

IDEA run configurations that must be generated.

Constructors

Link copied to clipboard
constructor(deploy: Boolean = true, serve: ServeRunConfiguration = ServeRunConfiguration(), inspect: ServeRunConfiguration = ServeRunConfiguration(), request: ServeRunConfiguration = ServeRunConfiguration())

Properties

Link copied to clipboard
var deploy: Boolean

Indicates if a run configuration should be generated for deploying the function.

Link copied to clipboard

ServeRunConfiguration for serving the function and inspecting (debugging) the function via Chrome DevTools.

Link copied to clipboard

ServeRunConfiguration for serving the function and automatically send requests.

Link copied to clipboard

ServeRunConfiguration for serving the function.

Functions

Link copied to clipboard
fun inspect(action: ServeRunConfiguration.() -> Unit)

Configure inspect run configuration in a DSL manner.

Link copied to clipboard
fun request(action: ServeRunConfiguration.() -> Unit)

Configure request run configuration in a DSL manner.

Link copied to clipboard
fun serve(action: ServeRunConfiguration.() -> Unit)

Configure serve run configuration in a DSL manner.