Google Cloud Datastore v1 API - Class LookupResponse (4.12.0)

public sealed class LookupResponse : IMessage<LookupResponse>, IEquatable<LookupResponse>, IDeepCloneable<LookupResponse>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Datastore v1 API class LookupResponse.

The response for [Datastore.Lookup][google.datastore.v1.Datastore.Lookup].

Inheritance

object > LookupResponse

Namespace

Google.Cloud.Datastore.V1

Assembly

Google.Cloud.Datastore.V1.dll

Constructors

LookupResponse()

public LookupResponse()

LookupResponse(LookupResponse)

public LookupResponse(LookupResponse other)
Parameter
Name Description
other LookupResponse

Properties

Deferred

public RepeatedField<Key> Deferred { get; }

A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Property Value
Type Description
RepeatedFieldKey

Found

public RepeatedField<EntityResult> Found { get; }

Entities found as ResultType.FULL entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Property Value
Type Description
RepeatedFieldEntityResult

Missing

public RepeatedField<EntityResult> Missing { get; }

Entities not found as ResultType.KEY_ONLY entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Property Value
Type Description
RepeatedFieldEntityResult

ReadTime

public Timestamp ReadTime { get; set; }

The time at which these entities were read or found missing.

Property Value
Type Description
Timestamp

Transaction

public ByteString Transaction { get; set; }

The identifier of the transaction that was started as part of this Lookup request.

Set only when [ReadOptions.new_transaction][google.datastore.v1.ReadOptions.new_transaction] was set in [LookupRequest.read_options][google.datastore.v1.LookupRequest.read_options].

Property Value
Type Description
ByteString