class Google::Apis::SpannerV1::KeySet

Cloud Spanner behaves as if the key were only specified once.
the set (for example if two ranges, two keys, or a key and a range overlap),
sorted in any particular way. If the same key is specified multiple times in
keys are expected to be in the same table or index. The keys need not be
`KeySet` defines a collection of Cloud Spanner keys and/or key ranges. All the

def initialize(**args)

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

def update!(**args)

Update properties of this object
def update!(**args)
  @all = args[:all] if args.key?(:all)
  @keys = args[:keys] if args.key?(:keys)
  @ranges = args[:ranges] if args.key?(:ranges)
end