class Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2Blob

Describes a blob of binary content with its digest.

Attributes

contents[RW]

The contents of the blob. Corresponds to the JSON property `contents` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

digest[RW]

The CommandTask and CommandResult messages assume the existence of a service that can serve blobs of content, identified by a hash and size known as a “ digest.” The method by which these blobs may be retrieved is not specified here, but a model implementation is in the Remote Execution API's “ ContentAddressibleStorage” interface. In the context of the RWAPI, a Digest will virtually always refer to the contents of a file or a directory. The latter is represented by the byte-encoded Directory message. Corresponds to the JSON property `digest` @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2Digest]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 2497
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 2502
def update!(**args)
  @contents = args[:contents] if args.key?(:contents)
  @digest = args[:digest] if args.key?(:digest)
end