class Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2PriorityCapabilitiesPriorityRange

Supported range of priorities, including boundaries.

Attributes

max_priority[RW]

The maximum numeric value for this priority range, which represents the least urgent task or shortest retained item. Corresponds to the JSON property `maxPriority` @return [Fixnum]

min_priority[RW]

The minimum numeric value for this priority range, which represents the most urgent task or longest retained item. Corresponds to the JSON property `minPriority` @return [Fixnum]

Public Class Methods

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