Function Build Config Args
data class FunctionBuildConfigArgs(val build: Output<String>? = null, val dockerRepository: Output<String>? = null, val entryPoint: Output<String>? = null, val environmentVariables: Output<Map<String, String>>? = null, val runtime: Output<String>? = null, val source: Output<FunctionBuildConfigSourceArgs>? = null, val workerPool: Output<String>? = null) : ConvertibleToJava<FunctionBuildConfigArgs>
Constructors
Link copied to clipboard
fun FunctionBuildConfigArgs(build: Output<String>? = null, dockerRepository: Output<String>? = null, entryPoint: Output<String>? = null, environmentVariables: Output<Map<String, String>>? = null, runtime: Output<String>? = null, source: Output<FunctionBuildConfigSourceArgs>? = null, workerPool: Output<String>? = null)
Functions
Properties
Link copied to clipboard
The name of the function (as defined in source code) that will be executed. Defaults to the resource name suffix, if not specified. For backward compatibility, if function with given name is not found, then the system will try to use function named "function". For Node.js this is name of a function exported by the module specified in source_location.