Type Alias SearchStackServiceLogResponse

Source
pub type SearchStackServiceLogResponse = Log;

Aliased Type§

struct SearchStackServiceLogResponse {
    pub stage: String,
    pub command: String,
    pub stdout: String,
    pub stderr: String,
    pub success: bool,
    pub start_ts: i64,
    pub end_ts: i64,
}

Fields§

§stage: String

A label for the log

§command: String

The command which was executed

§stdout: String

The output of the command in the standard channel

§stderr: String

The output of the command in the error channel

§success: bool

Whether the command run was successful

§start_ts: i64

The start time of the command execution

§end_ts: i64

The end time of the command execution