public
interface
CommandOrBuilder
extends
MessageOrBuilder
Implements
MessageOrBuilderMethods
getArgs(int index)
public
abstract
String
getArgs
(
int
index
)
Command-line arguments used when executing this command.
repeated string args = 3;
getArgsBytes(int index)
public
abstract
ByteString
getArgsBytes
(
int
index
)
Command-line arguments used when executing this command.
repeated string args = 3;
getArgsCount()
public
abstract
int
getArgsCount
()
Command-line arguments used when executing this command.
repeated string args = 3;
getArgsList()
public
abstract
List<String>
getArgsList
()
Command-line arguments used when executing this command.
repeated string args = 3;
getDir()
public
abstract
String
getDir
()
Working directory (relative to project source root) used when running this command.
string dir = 4;
getDirBytes()
public
abstract
ByteString
getDirBytes
()
Working directory (relative to project source root) used when running this command.
string dir = 4;
getEnv(int index)
public
abstract
String
getEnv
(
int
index
)
Environment variables set before running this command.
repeated string env = 2;
getEnvBytes(int index)
public
abstract
ByteString
getEnvBytes
(
int
index
)
Environment variables set before running this command.
repeated string env = 2;
getEnvCount()
public
abstract
int
getEnvCount
()
Environment variables set before running this command.
repeated string env = 2;
getEnvList()
public
abstract
List<String>
getEnvList
()
Environment variables set before running this command.
repeated string env = 2;
getId()
public
abstract
String
getId
()
Optional unique identifier for this command, used in wait_for to reference this command as a dependency.
string id = 5;
getIdBytes()
public
abstract
ByteString
getIdBytes
()
Optional unique identifier for this command, used in wait_for to reference this command as a dependency.
string id = 5;
getName()
public
abstract
String
getName
()
Required. Name of the command, as presented on the command line, or if the
command is packaged as a Docker container, as presented to docker pull
.
string name = 1;
getNameBytes()
public
abstract
ByteString
getNameBytes
()
Required. Name of the command, as presented on the command line, or if the
command is packaged as a Docker container, as presented to docker pull
.
string name = 1;
getWaitFor(int index)
public
abstract
String
getWaitFor
(
int
index
)
The ID(s) of the command(s) that this command depends on.
repeated string wait_for = 6;
getWaitForBytes(int index)
public
abstract
ByteString
getWaitForBytes
(
int
index
)
The ID(s) of the command(s) that this command depends on.
repeated string wait_for = 6;
getWaitForCount()
public
abstract
int
getWaitForCount
()
The ID(s) of the command(s) that this command depends on.
repeated string wait_for = 6;
getWaitForList()
public
abstract
List<String>
getWaitForList
()
The ID(s) of the command(s) that this command depends on.
repeated string wait_for = 6;

