Class LookupRequest
The request for Datastore.Lookup.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class LookupRequest : IDirectResponseSchema
Properties
DatabaseId
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.
Declaration
[JsonProperty("databaseId")]
public virtual string DatabaseId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Keys
Required. Keys of entities to look up.
Declaration
[JsonProperty("keys")]
public virtual IList<Key> Keys { get; set; }
Property Value
Type | Description |
---|---|
IList<Key> |
PropertyMask
The properties to return. Defaults to returning all properties. If this field is set and an entity has a property not referenced in the mask, it will be absent from LookupResponse.found.entity.properties. The entity's key is always returned.
Declaration
[JsonProperty("propertyMask")]
public virtual PropertyMask PropertyMask { get; set; }
Property Value
Type | Description |
---|---|
PropertyMask |
ReadOptions
The options for this lookup request.
Declaration
[JsonProperty("readOptions")]
public virtual ReadOptions ReadOptions { get; set; }
Property Value
Type | Description |
---|---|
ReadOptions |