Software Recipe Step Args
data class SoftwareRecipeStepArgs(val archiveExtraction: Output<SoftwareRecipeStepExtractArchiveArgs>? = null, val dpkgInstallation: Output<SoftwareRecipeStepInstallDpkgArgs>? = null, val fileCopy: Output<SoftwareRecipeStepCopyFileArgs>? = null, val fileExec: Output<SoftwareRecipeStepExecFileArgs>? = null, val msiInstallation: Output<SoftwareRecipeStepInstallMsiArgs>? = null, val rpmInstallation: Output<SoftwareRecipeStepInstallRpmArgs>? = null, val scriptRun: Output<SoftwareRecipeStepRunScriptArgs>? = null) : ConvertibleToJava<SoftwareRecipeStepArgs>
An action that can be taken as part of installing or updating a recipe.
Constructors
Link copied to clipboard
fun SoftwareRecipeStepArgs(archiveExtraction: Output<SoftwareRecipeStepExtractArchiveArgs>? = null, dpkgInstallation: Output<SoftwareRecipeStepInstallDpkgArgs>? = null, fileCopy: Output<SoftwareRecipeStepCopyFileArgs>? = null, fileExec: Output<SoftwareRecipeStepExecFileArgs>? = null, msiInstallation: Output<SoftwareRecipeStepInstallMsiArgs>? = null, rpmInstallation: Output<SoftwareRecipeStepInstallRpmArgs>? = null, scriptRun: Output<SoftwareRecipeStepRunScriptArgs>? = null)