class Google::Apis::DatastoreV1beta2::LookupResponse
Attributes
deferred[RW]
A list of keys that were not looked up due to resource constraints. Corresponds to the JSON property `deferred` @return [Array<Google::Apis::DatastoreV1beta2::Key>]
found[RW]
Entities found. Corresponds to the JSON property `found` @return [Array<Google::Apis::DatastoreV1beta2::EntityResult>]
header[RW]
Corresponds to the JSON property `header` @return [Google::Apis::DatastoreV1beta2::ResponseHeader]
missing[RW]
Entities not found, with only the key populated. Corresponds to the JSON property `missing` @return [Array<Google::Apis::DatastoreV1beta2::EntityResult>]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/datastore_v1beta2/classes.rb, line 495 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/datastore_v1beta2/classes.rb, line 500 def update!(**args) @deferred = args[:deferred] if args.key?(:deferred) @found = args[:found] if args.key?(:found) @header = args[:header] if args.key?(:header) @missing = args[:missing] if args.key?(:missing) end