class Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2GetTreeResponse

A response message for ContentAddressableStorage.GetTree.

Attributes

directories[RW]

The directories descended from the requested root. Corresponds to the JSON property `directories` @return [Array<Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2Directory>]

next_page_token[RW]

If present, signifies that there are more results which the client can retrieve by passing this as the page_token in a subsequent request. If empty, signifies that this is the last page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1443
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_v2/classes.rb, line 1448
def update!(**args)
  @directories = args[:directories] if args.key?(:directories)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end