Command Args
data class CommandArgs(val action: Output<Either<String, Action>>, val alwaysRun: Output<Boolean>? = null, val applyUpdateBefore: Output<Boolean>? = null, val content: Output<String>, val contentType: Output<Either<String, ContentType>>, val maxRunTime: Output<Int>? = null, val name: Output<String>, val restartAfter: Output<Boolean>? = null, val runAsInteractive: Output<Boolean>? = null, val runElevated: Output<Boolean>? = null) : ConvertibleToJava<CommandArgs>
The command used in the test
Constructors
Link copied to clipboard
constructor(action: Output<Either<String, Action>>, alwaysRun: Output<Boolean>? = null, applyUpdateBefore: Output<Boolean>? = null, content: Output<String>, contentType: Output<Either<String, ContentType>>, maxRunTime: Output<Int>? = null, name: Output<String>, restartAfter: Output<Boolean>? = null, runAsInteractive: Output<Boolean>? = null, runElevated: Output<Boolean>? = null)
Properties
Link copied to clipboard
Specifies whether to apply update before the command.
Link copied to clipboard
The type of command content.
Link copied to clipboard
Specifies the max run time of the command.
Link copied to clipboard
Specifies whether to restart the VM after the command executed.
Link copied to clipboard
Specifies whether to run the command in interactive mode.
Link copied to clipboard
Specifies whether to run the command as administrator.