class Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageIoStats

Attributes

read_bytes_count[RW]

Corresponds to the JSON property `readBytesCount` @return [Fixnum]

read_count[RW]

Corresponds to the JSON property `readCount` @return [Fixnum]

read_time_ms[RW]

Corresponds to the JSON property `readTimeMs` @return [Fixnum]

write_bytes_count[RW]

Corresponds to the JSON property `writeBytesCount` @return [Fixnum]

write_count[RW]

Corresponds to the JSON property `writeCount` @return [Fixnum]

write_time_ms[RW]

Corresponds to the JSON property `writeTimeMs` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 2414
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 2419
def update!(**args)
  @read_bytes_count = args[:read_bytes_count] if args.key?(:read_bytes_count)
  @read_count = args[:read_count] if args.key?(:read_count)
  @read_time_ms = args[:read_time_ms] if args.key?(:read_time_ms)
  @write_bytes_count = args[:write_bytes_count] if args.key?(:write_bytes_count)
  @write_count = args[:write_count] if args.key?(:write_count)
  @write_time_ms = args[:write_time_ms] if args.key?(:write_time_ms)
end