package google.datastore.admin.v1

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

service DatastoreAdmin

datastore_admin.proto:90

Google Cloud Datastore Admin API The Datastore Admin API provides several admin services for Cloud Datastore. ----------------------------------------------------------------------------- ## Concepts Project, namespace, kind, and entity as defined in the Google Cloud Datastore API. Operation: An Operation represents work being performed in the background. EntityFilter: Allows specifying a subset of entities in a project. This is specified as a combination of kinds and namespaces (either or both of which may be all). ----------------------------------------------------------------------------- ## Services # Export/Import The Export/Import service provides the ability to copy all or a subset of entities to/from Google Cloud Storage. Exported data may be imported into Cloud Datastore for any Google Cloud Platform project. It is not restricted to the export source project. It is possible to export from one project and then import into another. Exported data can also be loaded into Google BigQuery for analysis. Exports and imports are performed asynchronously. An Operation resource is created for each export/import. The state (including any errors encountered) of the export/import may be queried via the Operation resource. # Index The index service manages Cloud Datastore composite indexes. Index creation and deletion are performed asynchronously. An Operation resource is created for each such asynchronous operation. The state of the operation (including any errors encountered) may be queried via the Operation resource. # Operation The Operations collection provides a record of actions performed for the specified project (including any operations in progress). Operations are not created directly but through calls on other collections or resources. An operation that is not yet done may be cancelled. The request to cancel is asynchronous and the operation may continue to run for some time after the request to cancel is made. An operation that is done may be deleted so that it is no longer listed as part of the Operation collection. ListOperations returns all pending operations, but not completed operations. Operations are created by service DatastoreAdmin, but are accessed via service google.longrunning.Operations.

message CommonMetadata

datastore_admin.proto:138

Metadata common to all Datastore Admin operations.

Used in: ExportEntitiesMetadata, ImportEntitiesMetadata, IndexOperationMetadata

enum CommonMetadata.State

datastore_admin.proto:140

The various possible states for an ongoing Operation.

Used in: CommonMetadata

message EntityFilter

datastore_admin.proto:333

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']

Used in: ExportEntitiesMetadata, ExportEntitiesRequest, ImportEntitiesMetadata, ImportEntitiesRequest

message ExportEntitiesMetadata

datastore_admin.proto:272

Metadata for ExportEntities operations.

message ExportEntitiesResponse

datastore_admin.proto:263

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

message ImportEntitiesMetadata

datastore_admin.proto:294

Metadata for ImportEntities operations.

message Index

index.proto:29

A minimal index definition. Next tag: 8

Used as response type in: DatastoreAdmin.GetIndex

Used as field type in: ListIndexesResponse

enum Index.AncestorMode

index.proto:43

For an ordered index, specifies whether each of the entity's ancestors will be included.

Used in: Index

enum Index.Direction

index.proto:55

The direction determines how a property is indexed.

Used in: IndexedProperty

message Index.IndexedProperty

index.proto:31

Next tag: 3

Used in: Index

enum Index.State

index.proto:69

The possible set of states of an index.

Used in: Index

message IndexOperationMetadata

datastore_admin.proto:384

Metadata for Index operations.

enum OperationType

datastore_admin.proto:396

Operation types.

Used in: CommonMetadata

message Progress

datastore_admin.proto:187

Measures the progress of a particular metric.

Used in: ExportEntitiesMetadata, ImportEntitiesMetadata, IndexOperationMetadata