Package google.firestore.admin.v1beta1 | Firebase (original) (raw)
Index
[FirestoreAdmin](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin)(interface)[CreateIndexRequest](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.CreateIndexRequest)(message)[DeleteIndexRequest](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.DeleteIndexRequest)(message)[ExportDocumentsMetadata](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ExportDocumentsMetadata)(message)[ExportDocumentsRequest](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ExportDocumentsRequest)(message)[ExportDocumentsResponse](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ExportDocumentsResponse)(message)[GetIndexRequest](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.GetIndexRequest)(message)[ImportDocumentsMetadata](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ImportDocumentsMetadata)(message)[ImportDocumentsRequest](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ImportDocumentsRequest)(message)[Index](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.Index)(message)[Index.State](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.Index.State)(enum)[IndexField](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.IndexField)(message)[IndexField.Mode](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.IndexField.Mode)(enum)[IndexOperationMetadata](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.IndexOperationMetadata)(message)[IndexOperationMetadata.OperationType](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.IndexOperationMetadata.OperationType)(enum)[ListIndexesRequest](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ListIndexesRequest)(message)[ListIndexesResponse](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.ListIndexesResponse)(message)[LocationMetadata](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.LocationMetadata)(message)[OperationState](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.OperationState)(enum)[Progress](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.Progress)(message)
FirestoreAdmin
The Cloud Firestore Admin API.
This API provides several administrative services for Cloud Firestore.
Concepts
Project, Database, Namespace, Collection, and Document are used as defined in the Google Cloud Firestore API.
Operation: An Operation represents work being performed in the background.
Services
Index
The index service manages Cloud Firestore indexes.
Index creation is 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.
Metadata
Provides metadata and statistical information about data in Cloud Firestore. The data provided as part of this API may be stale.
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.
Operations are created by service FirestoreAdmin, but are accessed via service google.longrunning.Operations.
| CreateIndex |
|---|
| rpc CreateIndex(CreateIndexRequest) returns (Operation) Creates the specified index. A newly created index's initial state is CREATING. On completion of the returned google.longrunning.Operation, the state will be READY. If the index already exists, the call will return an ALREADY_EXISTS status.During creation, the process could result in an error, in which case the index will move to the ERROR state. The process can be recovered by fixing the data that caused the error, removing the index with delete, then re-creating the index with create.Indexes with a single field cannot be created. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/cloud-platform For more information, see the OAuth 2.0 Overview. |
| DeleteIndex |
|---|
| rpc DeleteIndex(DeleteIndexRequest) returns (Empty) Deletes an index. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/cloud-platform For more information, see the OAuth 2.0 Overview. |
| ExportDocuments |
|---|
| rpc ExportDocuments(ExportDocumentsRequest) returns (Operation) Exports a copy of all or a subset of documents from Google Cloud Firestore to another storage system, such as Google Cloud Storage. Recent updates to documents may not be reflected in the export. The export occurs in the background and its progress can be monitored and managed via the Operation resource that is created. The output of an export may only be used once the associated operation is done. If an export operation is cancelled before completion it may leave partial data behind in Google Cloud Storage. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/cloud-platform For more information, see the OAuth 2.0 Overview. |
| GetIndex |
|---|
| rpc GetIndex(GetIndexRequest) returns (Index) Gets an index. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/cloud-platform For more information, see the OAuth 2.0 Overview. |
| ImportDocuments |
|---|
| rpc ImportDocuments(ImportDocumentsRequest) returns (Operation) Imports documents into Google Cloud Firestore. Existing documents with the same name are overwritten. The import occurs in the background and its progress can be monitored and managed via the Operation resource that is created. If an ImportDocuments operation is cancelled, it is possible that a subset of the data has already been imported to Cloud Firestore. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/cloud-platform For more information, see the OAuth 2.0 Overview. |
| ListIndexes |
|---|
| rpc ListIndexes(ListIndexesRequest) returns (ListIndexesResponse) Lists the indexes that match the specified filters. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/cloud-platform For more information, see the OAuth 2.0 Overview. |
CreateIndexRequest
The request for [FirestoreAdmin.CreateIndex](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.CreateIndex).
| Fields | |
|---|---|
| parent | string The name of the database this index will apply to. For example: projects/{project_id}/databases/{database_id} |
| index | Index The index to create. The name and state fields are output only and will be ignored. Certain single field indexes cannot be created or deleted. |
DeleteIndexRequest
The request for [FirestoreAdmin.DeleteIndex](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.DeleteIndex).
| Fields | |
|---|---|
| name | string The index name. For example: projects/{project_id}/databases/{database_id}/indexes/{index_id} |
Metadata for ExportDocuments operations.
| Fields | |
|---|---|
| start_time | Timestamp The time that work began on the operation. |
| end_time | Timestamp The time the operation ended, either successfully or otherwise. Unset if the operation is still active. |
| operation_state | OperationState The state of the export operation. |
| progress_documents | Progress An estimate of the number of documents processed. |
| progress_bytes | Progress An estimate of the number of bytes processed. |
| collection_ids[] | string Which collection ids are being exported. |
| output_uri_prefix | string Where the entities are being exported to. |
ExportDocumentsRequest
The request for [FirestoreAdmin.ExportDocuments](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.ExportDocuments).
| Fields | |
|---|---|
| name | string Database to export. Should be of the form: projects/{project_id}/databases/{database_id}. |
| collection_ids[] | string Which collection ids to export. Unspecified means all collections. |
| output_uri_prefix | string The output URI. Currently only supports Google Cloud Storage URIs of the form: gs://BUCKET_NAME[/NAMESPACE_PATH], where BUCKET_NAME is the name of the Google Cloud Storage bucket and NAMESPACE_PATH is an optional Google Cloud Storage namespace path. When choosing a name, be sure to consider Google Cloud Storage naming guidelines: https://cloud.google.com/storage/docs/naming. If the URI is a bucket (without a namespace path), a prefix will be generated based on the start time. |
ExportDocumentsResponse
Returned in the [google.longrunning.Operation](/docs/firestore/reference/rpc/google.longrunning#google.longrunning.Operation) response field.
| Fields | |
|---|---|
| output_uri_prefix | string Location of the output files. This can be used to begin an import into Cloud Firestore (this project or another project) after the operation completes successfully. |
GetIndexRequest
The request for [FirestoreAdmin.GetIndex](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.GetIndex).
| Fields | |
|---|---|
| name | string The name of the index. For example: projects/{project_id}/databases/{database_id}/indexes/{index_id} |
Metadata for ImportDocuments operations.
| Fields | |
|---|---|
| start_time | Timestamp The time that work began on the operation. |
| end_time | Timestamp The time the operation ended, either successfully or otherwise. Unset if the operation is still active. |
| operation_state | OperationState The state of the import operation. |
| progress_documents | Progress An estimate of the number of documents processed. |
| progress_bytes | Progress An estimate of the number of bytes processed. |
| collection_ids[] | string Which collection ids are being imported. |
| input_uri_prefix | string The location of the documents being imported. |
ImportDocumentsRequest
The request for [FirestoreAdmin.ImportDocuments](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.ImportDocuments).
| Fields | |
|---|---|
| name | string Database to import into. Should be of the form: projects/{project_id}/databases/{database_id}. |
| collection_ids[] | string Which collection ids to import. Unspecified means all collections included in the import. |
| input_uri_prefix | string Location of the exported files. This must match the output_uri_prefix of an ExportDocumentsResponse from an export that has completed successfully. See: google.firestore.admin.v1beta1.ExportDocumentsResponse.output_uri_prefix. |
Index
An index definition.
| Fields | |
|---|---|
| name | string The resource name of the index. Output only. |
| collection_id | string The collection ID to which this index applies. Required. |
| fields[] | IndexField The fields to index. |
| state | State The state of the index. Output only. |
State
The state of an index. During index creation, an index will be in the CREATING state. If the index is created successfully, it will transition to the READY state. If the index is not able to be created, it will transition to the ERROR state.
| Enums | |
|---|---|
| STATE_UNSPECIFIED | The state is unspecified. |
| CREATING | The index is being created. There is an active long-running operation for the index. The index is updated when writing a document. Some index data may exist. |
| READY | The index is ready to be used. The index is updated when writing a document. The index is fully populated from all stored documents it applies to. |
| ERROR | The index was being created, but something went wrong. There is no active long-running operation for the index, and the most recently finished long-running operation failed. The index is not updated when writing a document. Some index data may exist. |
IndexField
A field of an index.
| Fields | |
|---|---|
| field_path | string The path of the field. Must match the field path specification described by [google.firestore.v1beta1.Document.fields][fields]. Special field path __name__ may be used by itself or at the end of a path. __type__ may be used only at the end of path. |
| mode | Mode The field's mode. |
Mode
The mode determines how a field is indexed.
| Enums | |
|---|---|
| MODE_UNSPECIFIED | The mode is unspecified. |
| ASCENDING | The field's values are indexed so as to support sequencing in ascending order and also query by <, >, <=, >=, and =. |
| DESCENDING | The field's values are indexed so as to support sequencing in descending order and also query by <, >, <=, >=, and =. |
| ARRAY_CONTAINS | The field's array values are indexed so as to support membership using ARRAY_CONTAINS queries. |
Metadata for index operations. This metadata populates the metadata field of [google.longrunning.Operation](/docs/firestore/reference/rpc/google.longrunning#google.longrunning.Operation).
| Fields | |
|---|---|
| start_time | Timestamp The time that work began on the operation. |
| end_time | Timestamp The time the operation ended, either successfully or otherwise. Unset if the operation is still active. |
| index | string The index resource that this operation is acting on. For example: projects/{project_id}/databases/{database_id}/indexes/{index_id} |
| operation_type | OperationType The type of index operation. |
| cancelled | bool True if the google.longrunning.Operation was cancelled. If the cancellation is in progress, cancelled will be true but google.longrunning.Operation.done will be false. |
| document_progress | Progress Progress of the existing operation, measured in number of documents. |
OperationType
The type of index operation.
| Enums | |
|---|---|
| OPERATION_TYPE_UNSPECIFIED | Unspecified. Never set by server. |
| CREATING_INDEX | The operation is creating the index. Initiated by a CreateIndex call. |
ListIndexesRequest
The request for [FirestoreAdmin.ListIndexes](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.ListIndexes).
| Fields | |
|---|---|
| parent | string The database name. For example: projects/{project_id}/databases/{database_id} |
| filter | string |
| page_size | int32 The standard List page size. |
| page_token | string The standard List page token. |
ListIndexesResponse
The response for [FirestoreAdmin.ListIndexes](/docs/firestore/reference/rpc/google.firestore.admin.v1beta1#google.firestore.admin.v1beta1.FirestoreAdmin.ListIndexes).
| Fields | |
|---|---|
| indexes[] | Index The indexes. |
| next_page_token | string The standard List next-page token. |
This type has no fields.
The metadata message for [google.cloud.location.Location.metadata](/docs/firestore/reference/rpc/google.cloud.location#google.cloud.location.Location.FIELDS.google.protobuf.Any.google.cloud.location.Location.metadata).
OperationState
The various possible states for an ongoing Operation.
| Enums | |
|---|---|
| STATE_UNSPECIFIED | Unspecified. |
| INITIALIZING | Request is being prepared for processing. |
| PROCESSING | Request is actively being processed. |
| CANCELLING | Request is in the process of being cancelled after user called google.longrunning.Operations.CancelOperation on the operation. |
| FINALIZING | Request has been processed and is in its finalization stage. |
| SUCCESSFUL | Request has completed successfully. |
| FAILED | Request has finished being processed, but encountered an error. |
| CANCELLED | Request has finished being cancelled after user called google.longrunning.Operations.CancelOperation. |
Progress
Measures the progress of a particular metric.
| Fields | |
|---|---|
| work_completed | int64 An estimate of how much work has been completed. Note that this may be greater than work_estimated. |
| work_estimated | int64 An estimate of how much work needs to be performed. Zero if the work estimate is unavailable. May change as work progresses. |