BareMetalMachineRunCommandParameters interface

BareMetalMachineRunCommandParameters represents the body of the request to execute a script on the bare metal machine.

Properties

arguments

The list of string arguments that will be passed to the script in order as separate arguments.

limitTimeSeconds

The maximum time the script is allowed to run. If the execution time exceeds the maximum, the script will be stopped, any output produced until then will be captured, and the exit code matching a timeout will be returned (252).

script

The base64 encoded script to execute on the bare metal machine.

Property Details

arguments

The list of string arguments that will be passed to the script in order as separate arguments.

arguments?: string[]

Property Value

string[]

limitTimeSeconds

The maximum time the script is allowed to run. If the execution time exceeds the maximum, the script will be stopped, any output produced until then will be captured, and the exit code matching a timeout will be returned (252).

limitTimeSeconds: number

Property Value

number

script

The base64 encoded script to execute on the bare metal machine.

script: string

Property Value

string