Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2AdminTemp

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb

Overview

AdminTemp is a prelimiary set of administration tasks. It's called "Temp" because we do not yet know the best way to represent admin tasks; it's possible that this will be entirely replaced in later versions of this API. If this message proves to be sufficient, it will be renamed in the alpha or beta release of this API. This message (suitably marshalled into a protobuf.Any) can be used as the inline_assignment field in a lease; the lease assignment field should simply be "admin" in these cases. This message is heavily based on Swarming administration tasks from the LUCI project (http://github.com/luci/luci-py/appengine/swarming).

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2AdminTemp

Returns a new instance of GoogleDevtoolsRemoteworkersV1test2AdminTemp



3735
3736
3737
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3735

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#argString

The argument to the admin action; see Command for semantics. Corresponds to the JSON property arg

Returns:

  • (String)


3728
3729
3730
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3728

def arg
  @arg
end

#commandString

The admin action; see Command for legal values. Corresponds to the JSON property command

Returns:

  • (String)


3733
3734
3735
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3733

def command
  @command
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3740
3741
3742
3743
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3740

def update!(**args)
  @arg = args[:arg] if args.key?(:arg)
  @command = args[:command] if args.key?(:command)
end