123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.firestore.admin.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/firestore/admin/v1/database.proto";
- import "google/firestore/admin/v1/field.proto";
- import "google/firestore/admin/v1/index.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/field_mask.proto";
- option csharp_namespace = "Google.Cloud.Firestore.Admin.V1";
- option go_package = "google.golang.org/genproto/googleapis/firestore/admin/v1;admin";
- option java_multiple_files = true;
- option java_outer_classname = "FirestoreAdminProto";
- option java_package = "com.google.firestore.admin.v1";
- option objc_class_prefix = "GCFS";
- option php_namespace = "Google\\Cloud\\Firestore\\Admin\\V1";
- option ruby_package = "Google::Cloud::Firestore::Admin::V1";
- option (google.api.resource_definition) = {
- type: "firestore.googleapis.com/Location"
- pattern: "projects/{project}/locations/{location}"
- };
- option (google.api.resource_definition) = {
- type: "firestore.googleapis.com/CollectionGroup"
- pattern: "projects/{project}/databases/{database}/collectionGroups/{collection}"
- };
- // The Cloud Firestore Admin API.
- //
- // This API provides several administrative services for Cloud Firestore.
- //
- // Project, Database, Namespace, Collection, Collection Group, and Document are
- // used as defined in the Google Cloud Firestore API.
- //
- // Operation: An Operation represents work being performed in the background.
- //
- // 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.
- //
- // 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 done may be deleted so that it is no longer listed as
- // part of the Operation collection. Operations are garbage collected after
- // 30 days. By default, ListOperations will only return in progress and failed
- // operations. To list completed operation, issue a ListOperations request with
- // the filter `done: true`.
- //
- // Operations are created by service `FirestoreAdmin`, but are accessed via
- // service `google.longrunning.Operations`.
- service FirestoreAdmin {
- option (google.api.default_host) = "firestore.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform,"
- "https://www.googleapis.com/auth/datastore";
- // Creates a composite index. This returns a [google.longrunning.Operation][google.longrunning.Operation]
- // which may be used to track the status of the creation. The metadata for
- // the operation will be the type [IndexOperationMetadata][google.firestore.admin.v1.IndexOperationMetadata].
- rpc CreateIndex(CreateIndexRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/databases/*/collectionGroups/*}/indexes"
- body: "index"
- };
- option (google.api.method_signature) = "parent,index";
- option (google.longrunning.operation_info) = {
- response_type: "Index"
- metadata_type: "IndexOperationMetadata"
- };
- }
- // Lists composite indexes.
- rpc ListIndexes(ListIndexesRequest) returns (ListIndexesResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/databases/*/collectionGroups/*}/indexes"
- };
- option (google.api.method_signature) = "parent";
- }
- // Gets a composite index.
- rpc GetIndex(GetIndexRequest) returns (Index) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/databases/*/collectionGroups/*/indexes/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Deletes a composite index.
- rpc DeleteIndex(DeleteIndexRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/databases/*/collectionGroups/*/indexes/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Gets the metadata and configuration for a Field.
- rpc GetField(GetFieldRequest) returns (Field) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/databases/*/collectionGroups/*/fields/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Updates a field configuration. Currently, field updates apply only to
- // single field index configuration. However, calls to
- // [FirestoreAdmin.UpdateField][google.firestore.admin.v1.FirestoreAdmin.UpdateField] should provide a field mask to avoid
- // changing any configuration that the caller isn't aware of. The field mask
- // should be specified as: `{ paths: "index_config" }`.
- //
- // This call returns a [google.longrunning.Operation][google.longrunning.Operation] which may be used to
- // track the status of the field update. The metadata for
- // the operation will be the type [FieldOperationMetadata][google.firestore.admin.v1.FieldOperationMetadata].
- //
- // To configure the default field settings for the database, use
- // the special `Field` with resource name:
- // `projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`.
- rpc UpdateField(UpdateFieldRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- patch: "/v1/{field.name=projects/*/databases/*/collectionGroups/*/fields/*}"
- body: "field"
- };
- option (google.api.method_signature) = "field";
- option (google.longrunning.operation_info) = {
- response_type: "Field"
- metadata_type: "FieldOperationMetadata"
- };
- }
- // Lists the field configuration and metadata for this database.
- //
- // Currently, [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] only supports listing fields
- // that have been explicitly overridden. To issue this query, call
- // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] with the filter set to
- // `indexConfig.usesAncestorConfig:false` .
- rpc ListFields(ListFieldsRequest) returns (ListFieldsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/databases/*/collectionGroups/*}/fields"
- };
- option (google.api.method_signature) = "parent";
- }
- // 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.
- //
- // For more details on export behavior and output format, refer to:
- // https://cloud.google.com/firestore/docs/manage-data/export-import
- rpc ExportDocuments(ExportDocumentsRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/databases/*}:exportDocuments"
- body: "*"
- };
- option (google.api.method_signature) = "name";
- option (google.longrunning.operation_info) = {
- response_type: "ExportDocumentsResponse"
- metadata_type: "ExportDocumentsMetadata"
- };
- }
- // 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.
- rpc ImportDocuments(ImportDocumentsRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/databases/*}:importDocuments"
- body: "*"
- };
- option (google.api.method_signature) = "name";
- option (google.longrunning.operation_info) = {
- response_type: "google.protobuf.Empty"
- metadata_type: "ImportDocumentsMetadata"
- };
- }
- // Gets information about a database.
- rpc GetDatabase(GetDatabaseRequest) returns (Database) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/databases/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // List all the databases in the project.
- rpc ListDatabases(ListDatabasesRequest) returns (ListDatabasesResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*}/databases"
- };
- option (google.api.method_signature) = "parent";
- }
- // Updates a database.
- rpc UpdateDatabase(UpdateDatabaseRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- patch: "/v1/{database.name=projects/*/databases/*}"
- body: "database"
- };
- option (google.api.method_signature) = "database,update_mask";
- option (google.longrunning.operation_info) = {
- response_type: "Database"
- metadata_type: "UpdateDatabaseMetadata"
- };
- }
- }
- // A request to list the Firestore Databases in all locations for a project.
- message ListDatabasesRequest {
- // Required. A parent name of the form
- // `projects/{project_id}`
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "firestore.googleapis.com/Database"
- }
- ];
- }
- // The list of databases for a project.
- message ListDatabasesResponse {
- // The databases in the project.
- repeated Database databases = 1;
- }
- // The request for [FirestoreAdmin.GetDatabase][google.firestore.admin.v1.FirestoreAdmin.GetDatabase].
- message GetDatabaseRequest {
- // Required. A name of the form
- // `projects/{project_id}/databases/{database_id}`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/Database"
- }
- ];
- }
- // The request for [FirestoreAdmin.UpdateDatabase][google.firestore.admin.v1.FirestoreAdmin.UpdateDatabase].
- message UpdateDatabaseRequest {
- // Required. The database to update.
- Database database = 1 [(google.api.field_behavior) = REQUIRED];
- // The list of fields to be updated.
- google.protobuf.FieldMask update_mask = 2;
- }
- // Metadata related to the update database operation.
- message UpdateDatabaseMetadata {
- }
- // The request for [FirestoreAdmin.CreateIndex][google.firestore.admin.v1.FirestoreAdmin.CreateIndex].
- message CreateIndexRequest {
- // Required. A parent name of the form
- // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/CollectionGroup"
- }
- ];
- // Required. The composite index to create.
- Index index = 2 [(google.api.field_behavior) = REQUIRED];
- }
- // The request for [FirestoreAdmin.ListIndexes][google.firestore.admin.v1.FirestoreAdmin.ListIndexes].
- message ListIndexesRequest {
- // Required. A parent name of the form
- // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/CollectionGroup"
- }
- ];
- // The filter to apply to list results.
- string filter = 2;
- // The number of results to return.
- int32 page_size = 3;
- // A page token, returned from a previous call to
- // [FirestoreAdmin.ListIndexes][google.firestore.admin.v1.FirestoreAdmin.ListIndexes], that may be used to get the next
- // page of results.
- string page_token = 4;
- }
- // The response for [FirestoreAdmin.ListIndexes][google.firestore.admin.v1.FirestoreAdmin.ListIndexes].
- message ListIndexesResponse {
- // The requested indexes.
- repeated Index indexes = 1;
- // A page token that may be used to request another page of results. If blank,
- // this is the last page.
- string next_page_token = 2;
- }
- // The request for [FirestoreAdmin.GetIndex][google.firestore.admin.v1.FirestoreAdmin.GetIndex].
- message GetIndexRequest {
- // Required. A name of the form
- // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/Index"
- }
- ];
- }
- // The request for [FirestoreAdmin.DeleteIndex][google.firestore.admin.v1.FirestoreAdmin.DeleteIndex].
- message DeleteIndexRequest {
- // Required. A name of the form
- // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/Index"
- }
- ];
- }
- // The request for [FirestoreAdmin.UpdateField][google.firestore.admin.v1.FirestoreAdmin.UpdateField].
- message UpdateFieldRequest {
- // Required. The field to be updated.
- Field field = 1 [(google.api.field_behavior) = REQUIRED];
- // A mask, relative to the field. If specified, only configuration specified
- // by this field_mask will be updated in the field.
- google.protobuf.FieldMask update_mask = 2;
- }
- // The request for [FirestoreAdmin.GetField][google.firestore.admin.v1.FirestoreAdmin.GetField].
- message GetFieldRequest {
- // Required. A name of the form
- // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/Field"
- }
- ];
- }
- // The request for [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields].
- message ListFieldsRequest {
- // Required. A parent name of the form
- // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/CollectionGroup"
- }
- ];
- // The filter to apply to list results. Currently,
- // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] only supports listing fields
- // that have been explicitly overridden. To issue this query, call
- // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] with a filter that includes
- // `indexConfig.usesAncestorConfig:false` .
- string filter = 2;
- // The number of results to return.
- int32 page_size = 3;
- // A page token, returned from a previous call to
- // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields], that may be used to get the next
- // page of results.
- string page_token = 4;
- }
- // The response for [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields].
- message ListFieldsResponse {
- // The requested fields.
- repeated Field fields = 1;
- // A page token that may be used to request another page of results. If blank,
- // this is the last page.
- string next_page_token = 2;
- }
- // The request for [FirestoreAdmin.ExportDocuments][google.firestore.admin.v1.FirestoreAdmin.ExportDocuments].
- message ExportDocumentsRequest {
- // Required. Database to export. Should be of the form:
- // `projects/{project_id}/databases/{database_id}`.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/Database"
- }
- ];
- // Which collection ids to export. Unspecified means all collections.
- repeated string collection_ids = 2;
- // 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.
- string output_uri_prefix = 3;
- }
- // The request for [FirestoreAdmin.ImportDocuments][google.firestore.admin.v1.FirestoreAdmin.ImportDocuments].
- message ImportDocumentsRequest {
- // Required. Database to import into. Should be of the form:
- // `projects/{project_id}/databases/{database_id}`.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "firestore.googleapis.com/Database"
- }
- ];
- // Which collection ids to import. Unspecified means all collections included
- // in the import.
- repeated string collection_ids = 2;
- // 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.v1.ExportDocumentsResponse.output_uri_prefix][google.firestore.admin.v1.ExportDocumentsResponse.output_uri_prefix].
- string input_uri_prefix = 3;
- }
|