class Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs

Describes the expected outputs of the command.

Attributes

directories[RW]

A list of expected directories, relative to the execution root. All paths MUST be delimited by forward slashes. Corresponds to the JSON property `directories` @return [Array<String>]

files[RW]

A list of expected files, relative to the execution root. All paths MUST be delimited by forward slashes. Corresponds to the JSON property `files` @return [Array<String>]

stderr_destination[RW]

The destination to which any stderr should be sent. The method by which the bot should send the stream contents to that destination is not defined in this API. As examples, the destination could be a file referenced in the `files` field in this message, or it could be a URI that must be written via the ByteStream API. Corresponds to the JSON property `stderrDestination` @return [String]

stdout_destination[RW]

The destination to which any stdout should be sent. The method by which the bot should send the stream contents to that destination is not defined in this API. As examples, the destination could be a file referenced in the `files` field in this message, or it could be a URI that must be written via the ByteStream API. Corresponds to the JSON property `stdoutDestination` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 2793
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 2798
def update!(**args)
  @directories = args[:directories] if args.key?(:directories)
  @files = args[:files] if args.key?(:files)
  @stderr_destination = args[:stderr_destination] if args.key?(:stderr_destination)
  @stdout_destination = args[:stdout_destination] if args.key?(:stdout_destination)
end