class Google::Apis::SpannerV1::KeyRangeInfos

A message representing a list of specific information for multiple key ranges.

Attributes

infos[RW]

The list individual KeyRangeInfos. Corresponds to the JSON property `infos` @return [Array<Google::Apis::SpannerV1::KeyRangeInfo>]

total_size[RW]

The total size of the list of all KeyRangeInfos. This may be larger than the number of repeated messages above. If that is the case, this number may be used to determine how many are not being shown. Corresponds to the JSON property `totalSize` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 1919
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/spanner_v1/classes.rb, line 1924
def update!(**args)
  @infos = args[:infos] if args.key?(:infos)
  @total_size = args[:total_size] if args.key?(:total_size)
end