BuildConfigurationResponse

data class BuildConfigurationResponse(val baseOs: String? = null, val environmentVariables: List<EnvironmentVariableResponse>? = null, val platform: String? = null, val platformVersion: String? = null, val preBuildSteps: List<PreBuildStepResponse>? = null)

Configuration of the build.

Constructors

Link copied to clipboard
constructor(baseOs: String? = null, environmentVariables: List<EnvironmentVariableResponse>? = null, platform: String? = null, platformVersion: String? = null, preBuildSteps: List<PreBuildStepResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val baseOs: String? = null

Base OS used to build and run the app.

Link copied to clipboard

List of environment variables to be passed to the build, secrets should not be used in environment variable.

Link copied to clipboard
val platform: String? = null

Platform to be used to build and run the app.

Link copied to clipboard
val platformVersion: String? = null

Platform version to be used to build and run the app.

Link copied to clipboard

List of steps to perform before the build.