Show / Hide Table of Contents

Namespace Google.Apis.Datastore.v1.Data

Classes

AllocateIdsRequest

The request for Datastore.AllocateIds.

AllocateIdsResponse

The response for Datastore.AllocateIds.

ArrayValue

An array value.

BeginTransactionRequest

The request for Datastore.BeginTransaction.

BeginTransactionResponse

The response for Datastore.BeginTransaction.

CommitRequest

The request for Datastore.Commit.

CommitResponse

The response for Datastore.Commit.

CompositeFilter

A filter that merges multiple other filters using the given operator.

Empty

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance:

service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

The JSON representation for Empty is empty JSON object {}.

Entity

A Datastore data object.

An entity is limited to 1 megabyte when stored. That roughly corresponds to a limit of 1 megabyte for the serialized form of this message.

EntityResult

The result of fetching an entity from Datastore.

Filter

A holder for any type of filter.

GoogleDatastoreAdminV1beta1CommonMetadata

Metadata common to all Datastore Admin operations.

GoogleDatastoreAdminV1beta1EntityFilter

Identifies a subset of entities in a project. This is specified as combinations of kinds and namespaces (either or both of which may be all, as described in the following examples). Example usage:

Entire project: kinds=[], namespace_ids=[]

Kinds Foo and Bar in all namespaces: kinds=['Foo', 'Bar'], namespace_ids=[]

Kinds Foo and Bar only in the default namespace: kinds=['Foo', 'Bar'], namespace_ids=['']

Kinds Foo and Bar in both the default and Baz namespaces: kinds=['Foo', 'Bar'], namespace_ids=['', 'Baz']

The entire Baz namespace: kinds=[], namespace_ids=['Baz']

GoogleDatastoreAdminV1beta1ExportEntitiesMetadata

Metadata for ExportEntities operations.

GoogleDatastoreAdminV1beta1ExportEntitiesResponse

The response for google.datastore.admin.v1beta1.DatastoreAdmin.ExportEntities.

GoogleDatastoreAdminV1beta1ImportEntitiesMetadata

Metadata for ImportEntities operations.

GoogleDatastoreAdminV1beta1Progress

Measures the progress of a particular metric.

GoogleDatastoreAdminV1CommonMetadata

Metadata common to all Datastore Admin operations.

GoogleDatastoreAdminV1EntityFilter

Identifies a subset of entities in a project. This is specified as combinations of kinds and namespaces (either or both of which may be all, as described in the following examples). Example usage:

Entire project: kinds=[], namespace_ids=[]

Kinds Foo and Bar in all namespaces: kinds=['Foo', 'Bar'], namespace_ids=[]

Kinds Foo and Bar only in the default namespace: kinds=['Foo', 'Bar'], namespace_ids=['']

Kinds Foo and Bar in both the default and Baz namespaces: kinds=['Foo', 'Bar'], namespace_ids=['', 'Baz']

The entire Baz namespace: kinds=[], namespace_ids=['Baz']

GoogleDatastoreAdminV1ExportEntitiesMetadata

Metadata for ExportEntities operations.

GoogleDatastoreAdminV1ExportEntitiesRequest

The request for google.datastore.admin.v1.DatastoreAdmin.ExportEntities.

GoogleDatastoreAdminV1ExportEntitiesResponse

The response for google.datastore.admin.v1.DatastoreAdmin.ExportEntities.

GoogleDatastoreAdminV1ImportEntitiesMetadata

Metadata for ImportEntities operations.

GoogleDatastoreAdminV1ImportEntitiesRequest

The request for google.datastore.admin.v1.DatastoreAdmin.ImportEntities.

GoogleDatastoreAdminV1Index

A minimal index definition.

GoogleDatastoreAdminV1IndexedProperty

A property of an index.

GoogleDatastoreAdminV1IndexOperationMetadata

Metadata for Index operations.

GoogleDatastoreAdminV1ListIndexesResponse

The response for google.datastore.admin.v1.DatastoreAdmin.ListIndexes.

GoogleDatastoreAdminV1Progress

Measures the progress of a particular metric.

GoogleLongrunningListOperationsResponse

The response message for Operations.ListOperations.

GoogleLongrunningOperation

This resource represents a long-running operation that is the result of a network API call.

GqlQuery

A GQL query.

GqlQueryParameter

A binding parameter for a GQL query.

Key

A unique identifier for an entity. If a key's partition ID or any of its path kinds or names are reserved/read-only, the key is reserved/read-only. A reserved/read-only key is forbidden in certain documented contexts.

KindExpression

A representation of a kind.

LatLng

An object representing a latitude/longitude pair. This is expressed as a pair of doubles representing degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.

LookupRequest

The request for Datastore.Lookup.

LookupResponse

The response for Datastore.Lookup.

Mutation

A mutation to apply to an entity.

MutationResult

The result of applying a mutation.

PartitionId

A partition ID identifies a grouping of entities. The grouping is always by project and namespace, however the namespace ID may be empty.

A partition ID contains several dimensions: project ID and namespace ID.

Partition dimensions:

  • May be "". - Must be valid UTF-8 bytes. - Must have values that match regex [A-Za-z\d\.\-_]{1,100} If the value of any dimension matches regex __.*__, the partition is reserved/read-only. A reserved/read-only partition ID is forbidden in certain documented contexts.

Foreign partition IDs (in which the project ID does not match the context project ID ) are discouraged. Reads and writes of foreign partition IDs may fail if the project is not in an active state.

PathElement

A (kind, ID/name) pair used to construct a key path.

If either name or ID is set, the element is complete. If neither is set, the element is incomplete.

Projection

A representation of a property in a projection.

PropertyFilter

A filter on a specific property.

PropertyOrder

The desired order for a specific property.

PropertyReference

A reference to a property relative to the kind expressions.

Query

A query for entities.

QueryResultBatch

A batch of results produced by a query.

ReadOnly

Options specific to read-only transactions.

ReadOptions

The options shared by read requests.

ReadWrite

Options specific to read / write transactions.

ReserveIdsRequest

The request for Datastore.ReserveIds.

ReserveIdsResponse

The response for Datastore.ReserveIds.

RollbackRequest

The request for Datastore.Rollback.

RollbackResponse

The response for Datastore.Rollback. (an empty message).

RunQueryRequest

The request for Datastore.RunQuery.

RunQueryResponse

The response for Datastore.RunQuery.

Status

The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details.

You can find out more about this error model and how to work with it in the API Design Guide.

TransactionOptions

Options for beginning a new transaction.

Transactions can be created explicitly with calls to Datastore.BeginTransaction or implicitly by setting ReadOptions.new_transaction in read requests.

Value

A message that can hold any of the supported value types and associated metadata.

Back to top