firestore_admin.proto 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.firestore.admin.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/firestore/admin/v1/database.proto";
  21. import "google/firestore/admin/v1/field.proto";
  22. import "google/firestore/admin/v1/index.proto";
  23. import "google/longrunning/operations.proto";
  24. import "google/protobuf/empty.proto";
  25. import "google/protobuf/field_mask.proto";
  26. option csharp_namespace = "Google.Cloud.Firestore.Admin.V1";
  27. option go_package = "google.golang.org/genproto/googleapis/firestore/admin/v1;admin";
  28. option java_multiple_files = true;
  29. option java_outer_classname = "FirestoreAdminProto";
  30. option java_package = "com.google.firestore.admin.v1";
  31. option objc_class_prefix = "GCFS";
  32. option php_namespace = "Google\\Cloud\\Firestore\\Admin\\V1";
  33. option ruby_package = "Google::Cloud::Firestore::Admin::V1";
  34. option (google.api.resource_definition) = {
  35. type: "firestore.googleapis.com/Location"
  36. pattern: "projects/{project}/locations/{location}"
  37. };
  38. option (google.api.resource_definition) = {
  39. type: "firestore.googleapis.com/CollectionGroup"
  40. pattern: "projects/{project}/databases/{database}/collectionGroups/{collection}"
  41. };
  42. // The Cloud Firestore Admin API.
  43. //
  44. // This API provides several administrative services for Cloud Firestore.
  45. //
  46. // Project, Database, Namespace, Collection, Collection Group, and Document are
  47. // used as defined in the Google Cloud Firestore API.
  48. //
  49. // Operation: An Operation represents work being performed in the background.
  50. //
  51. // The index service manages Cloud Firestore indexes.
  52. //
  53. // Index creation is performed asynchronously.
  54. // An Operation resource is created for each such asynchronous operation.
  55. // The state of the operation (including any errors encountered)
  56. // may be queried via the Operation resource.
  57. //
  58. // The Operations collection provides a record of actions performed for the
  59. // specified Project (including any Operations in progress). Operations are not
  60. // created directly but through calls on other collections or resources.
  61. //
  62. // An Operation that is done may be deleted so that it is no longer listed as
  63. // part of the Operation collection. Operations are garbage collected after
  64. // 30 days. By default, ListOperations will only return in progress and failed
  65. // operations. To list completed operation, issue a ListOperations request with
  66. // the filter `done: true`.
  67. //
  68. // Operations are created by service `FirestoreAdmin`, but are accessed via
  69. // service `google.longrunning.Operations`.
  70. service FirestoreAdmin {
  71. option (google.api.default_host) = "firestore.googleapis.com";
  72. option (google.api.oauth_scopes) =
  73. "https://www.googleapis.com/auth/cloud-platform,"
  74. "https://www.googleapis.com/auth/datastore";
  75. // Creates a composite index. This returns a [google.longrunning.Operation][google.longrunning.Operation]
  76. // which may be used to track the status of the creation. The metadata for
  77. // the operation will be the type [IndexOperationMetadata][google.firestore.admin.v1.IndexOperationMetadata].
  78. rpc CreateIndex(CreateIndexRequest) returns (google.longrunning.Operation) {
  79. option (google.api.http) = {
  80. post: "/v1/{parent=projects/*/databases/*/collectionGroups/*}/indexes"
  81. body: "index"
  82. };
  83. option (google.api.method_signature) = "parent,index";
  84. option (google.longrunning.operation_info) = {
  85. response_type: "Index"
  86. metadata_type: "IndexOperationMetadata"
  87. };
  88. }
  89. // Lists composite indexes.
  90. rpc ListIndexes(ListIndexesRequest) returns (ListIndexesResponse) {
  91. option (google.api.http) = {
  92. get: "/v1/{parent=projects/*/databases/*/collectionGroups/*}/indexes"
  93. };
  94. option (google.api.method_signature) = "parent";
  95. }
  96. // Gets a composite index.
  97. rpc GetIndex(GetIndexRequest) returns (Index) {
  98. option (google.api.http) = {
  99. get: "/v1/{name=projects/*/databases/*/collectionGroups/*/indexes/*}"
  100. };
  101. option (google.api.method_signature) = "name";
  102. }
  103. // Deletes a composite index.
  104. rpc DeleteIndex(DeleteIndexRequest) returns (google.protobuf.Empty) {
  105. option (google.api.http) = {
  106. delete: "/v1/{name=projects/*/databases/*/collectionGroups/*/indexes/*}"
  107. };
  108. option (google.api.method_signature) = "name";
  109. }
  110. // Gets the metadata and configuration for a Field.
  111. rpc GetField(GetFieldRequest) returns (Field) {
  112. option (google.api.http) = {
  113. get: "/v1/{name=projects/*/databases/*/collectionGroups/*/fields/*}"
  114. };
  115. option (google.api.method_signature) = "name";
  116. }
  117. // Updates a field configuration. Currently, field updates apply only to
  118. // single field index configuration. However, calls to
  119. // [FirestoreAdmin.UpdateField][google.firestore.admin.v1.FirestoreAdmin.UpdateField] should provide a field mask to avoid
  120. // changing any configuration that the caller isn't aware of. The field mask
  121. // should be specified as: `{ paths: "index_config" }`.
  122. //
  123. // This call returns a [google.longrunning.Operation][google.longrunning.Operation] which may be used to
  124. // track the status of the field update. The metadata for
  125. // the operation will be the type [FieldOperationMetadata][google.firestore.admin.v1.FieldOperationMetadata].
  126. //
  127. // To configure the default field settings for the database, use
  128. // the special `Field` with resource name:
  129. // `projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`.
  130. rpc UpdateField(UpdateFieldRequest) returns (google.longrunning.Operation) {
  131. option (google.api.http) = {
  132. patch: "/v1/{field.name=projects/*/databases/*/collectionGroups/*/fields/*}"
  133. body: "field"
  134. };
  135. option (google.api.method_signature) = "field";
  136. option (google.longrunning.operation_info) = {
  137. response_type: "Field"
  138. metadata_type: "FieldOperationMetadata"
  139. };
  140. }
  141. // Lists the field configuration and metadata for this database.
  142. //
  143. // Currently, [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] only supports listing fields
  144. // that have been explicitly overridden. To issue this query, call
  145. // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] with the filter set to
  146. // `indexConfig.usesAncestorConfig:false` .
  147. rpc ListFields(ListFieldsRequest) returns (ListFieldsResponse) {
  148. option (google.api.http) = {
  149. get: "/v1/{parent=projects/*/databases/*/collectionGroups/*}/fields"
  150. };
  151. option (google.api.method_signature) = "parent";
  152. }
  153. // Exports a copy of all or a subset of documents from Google Cloud Firestore
  154. // to another storage system, such as Google Cloud Storage. Recent updates to
  155. // documents may not be reflected in the export. The export occurs in the
  156. // background and its progress can be monitored and managed via the
  157. // Operation resource that is created. The output of an export may only be
  158. // used once the associated operation is done. If an export operation is
  159. // cancelled before completion it may leave partial data behind in Google
  160. // Cloud Storage.
  161. //
  162. // For more details on export behavior and output format, refer to:
  163. // https://cloud.google.com/firestore/docs/manage-data/export-import
  164. rpc ExportDocuments(ExportDocumentsRequest) returns (google.longrunning.Operation) {
  165. option (google.api.http) = {
  166. post: "/v1/{name=projects/*/databases/*}:exportDocuments"
  167. body: "*"
  168. };
  169. option (google.api.method_signature) = "name";
  170. option (google.longrunning.operation_info) = {
  171. response_type: "ExportDocumentsResponse"
  172. metadata_type: "ExportDocumentsMetadata"
  173. };
  174. }
  175. // Imports documents into Google Cloud Firestore. Existing documents with the
  176. // same name are overwritten. The import occurs in the background and its
  177. // progress can be monitored and managed via the Operation resource that is
  178. // created. If an ImportDocuments operation is cancelled, it is possible
  179. // that a subset of the data has already been imported to Cloud Firestore.
  180. rpc ImportDocuments(ImportDocumentsRequest) returns (google.longrunning.Operation) {
  181. option (google.api.http) = {
  182. post: "/v1/{name=projects/*/databases/*}:importDocuments"
  183. body: "*"
  184. };
  185. option (google.api.method_signature) = "name";
  186. option (google.longrunning.operation_info) = {
  187. response_type: "google.protobuf.Empty"
  188. metadata_type: "ImportDocumentsMetadata"
  189. };
  190. }
  191. // Gets information about a database.
  192. rpc GetDatabase(GetDatabaseRequest) returns (Database) {
  193. option (google.api.http) = {
  194. get: "/v1/{name=projects/*/databases/*}"
  195. };
  196. option (google.api.method_signature) = "name";
  197. }
  198. // List all the databases in the project.
  199. rpc ListDatabases(ListDatabasesRequest) returns (ListDatabasesResponse) {
  200. option (google.api.http) = {
  201. get: "/v1/{parent=projects/*}/databases"
  202. };
  203. option (google.api.method_signature) = "parent";
  204. }
  205. // Updates a database.
  206. rpc UpdateDatabase(UpdateDatabaseRequest) returns (google.longrunning.Operation) {
  207. option (google.api.http) = {
  208. patch: "/v1/{database.name=projects/*/databases/*}"
  209. body: "database"
  210. };
  211. option (google.api.method_signature) = "database,update_mask";
  212. option (google.longrunning.operation_info) = {
  213. response_type: "Database"
  214. metadata_type: "UpdateDatabaseMetadata"
  215. };
  216. }
  217. }
  218. // A request to list the Firestore Databases in all locations for a project.
  219. message ListDatabasesRequest {
  220. // Required. A parent name of the form
  221. // `projects/{project_id}`
  222. string parent = 1 [
  223. (google.api.field_behavior) = REQUIRED,
  224. (google.api.resource_reference) = {
  225. child_type: "firestore.googleapis.com/Database"
  226. }
  227. ];
  228. }
  229. // The list of databases for a project.
  230. message ListDatabasesResponse {
  231. // The databases in the project.
  232. repeated Database databases = 1;
  233. }
  234. // The request for [FirestoreAdmin.GetDatabase][google.firestore.admin.v1.FirestoreAdmin.GetDatabase].
  235. message GetDatabaseRequest {
  236. // Required. A name of the form
  237. // `projects/{project_id}/databases/{database_id}`
  238. string name = 1 [
  239. (google.api.field_behavior) = REQUIRED,
  240. (google.api.resource_reference) = {
  241. type: "firestore.googleapis.com/Database"
  242. }
  243. ];
  244. }
  245. // The request for [FirestoreAdmin.UpdateDatabase][google.firestore.admin.v1.FirestoreAdmin.UpdateDatabase].
  246. message UpdateDatabaseRequest {
  247. // Required. The database to update.
  248. Database database = 1 [(google.api.field_behavior) = REQUIRED];
  249. // The list of fields to be updated.
  250. google.protobuf.FieldMask update_mask = 2;
  251. }
  252. // Metadata related to the update database operation.
  253. message UpdateDatabaseMetadata {
  254. }
  255. // The request for [FirestoreAdmin.CreateIndex][google.firestore.admin.v1.FirestoreAdmin.CreateIndex].
  256. message CreateIndexRequest {
  257. // Required. A parent name of the form
  258. // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
  259. string parent = 1 [
  260. (google.api.field_behavior) = REQUIRED,
  261. (google.api.resource_reference) = {
  262. type: "firestore.googleapis.com/CollectionGroup"
  263. }
  264. ];
  265. // Required. The composite index to create.
  266. Index index = 2 [(google.api.field_behavior) = REQUIRED];
  267. }
  268. // The request for [FirestoreAdmin.ListIndexes][google.firestore.admin.v1.FirestoreAdmin.ListIndexes].
  269. message ListIndexesRequest {
  270. // Required. A parent name of the form
  271. // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
  272. string parent = 1 [
  273. (google.api.field_behavior) = REQUIRED,
  274. (google.api.resource_reference) = {
  275. type: "firestore.googleapis.com/CollectionGroup"
  276. }
  277. ];
  278. // The filter to apply to list results.
  279. string filter = 2;
  280. // The number of results to return.
  281. int32 page_size = 3;
  282. // A page token, returned from a previous call to
  283. // [FirestoreAdmin.ListIndexes][google.firestore.admin.v1.FirestoreAdmin.ListIndexes], that may be used to get the next
  284. // page of results.
  285. string page_token = 4;
  286. }
  287. // The response for [FirestoreAdmin.ListIndexes][google.firestore.admin.v1.FirestoreAdmin.ListIndexes].
  288. message ListIndexesResponse {
  289. // The requested indexes.
  290. repeated Index indexes = 1;
  291. // A page token that may be used to request another page of results. If blank,
  292. // this is the last page.
  293. string next_page_token = 2;
  294. }
  295. // The request for [FirestoreAdmin.GetIndex][google.firestore.admin.v1.FirestoreAdmin.GetIndex].
  296. message GetIndexRequest {
  297. // Required. A name of the form
  298. // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
  299. string name = 1 [
  300. (google.api.field_behavior) = REQUIRED,
  301. (google.api.resource_reference) = {
  302. type: "firestore.googleapis.com/Index"
  303. }
  304. ];
  305. }
  306. // The request for [FirestoreAdmin.DeleteIndex][google.firestore.admin.v1.FirestoreAdmin.DeleteIndex].
  307. message DeleteIndexRequest {
  308. // Required. A name of the form
  309. // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
  310. string name = 1 [
  311. (google.api.field_behavior) = REQUIRED,
  312. (google.api.resource_reference) = {
  313. type: "firestore.googleapis.com/Index"
  314. }
  315. ];
  316. }
  317. // The request for [FirestoreAdmin.UpdateField][google.firestore.admin.v1.FirestoreAdmin.UpdateField].
  318. message UpdateFieldRequest {
  319. // Required. The field to be updated.
  320. Field field = 1 [(google.api.field_behavior) = REQUIRED];
  321. // A mask, relative to the field. If specified, only configuration specified
  322. // by this field_mask will be updated in the field.
  323. google.protobuf.FieldMask update_mask = 2;
  324. }
  325. // The request for [FirestoreAdmin.GetField][google.firestore.admin.v1.FirestoreAdmin.GetField].
  326. message GetFieldRequest {
  327. // Required. A name of the form
  328. // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}`
  329. string name = 1 [
  330. (google.api.field_behavior) = REQUIRED,
  331. (google.api.resource_reference) = {
  332. type: "firestore.googleapis.com/Field"
  333. }
  334. ];
  335. }
  336. // The request for [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields].
  337. message ListFieldsRequest {
  338. // Required. A parent name of the form
  339. // `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
  340. string parent = 1 [
  341. (google.api.field_behavior) = REQUIRED,
  342. (google.api.resource_reference) = {
  343. type: "firestore.googleapis.com/CollectionGroup"
  344. }
  345. ];
  346. // The filter to apply to list results. Currently,
  347. // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] only supports listing fields
  348. // that have been explicitly overridden. To issue this query, call
  349. // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields] with a filter that includes
  350. // `indexConfig.usesAncestorConfig:false` .
  351. string filter = 2;
  352. // The number of results to return.
  353. int32 page_size = 3;
  354. // A page token, returned from a previous call to
  355. // [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields], that may be used to get the next
  356. // page of results.
  357. string page_token = 4;
  358. }
  359. // The response for [FirestoreAdmin.ListFields][google.firestore.admin.v1.FirestoreAdmin.ListFields].
  360. message ListFieldsResponse {
  361. // The requested fields.
  362. repeated Field fields = 1;
  363. // A page token that may be used to request another page of results. If blank,
  364. // this is the last page.
  365. string next_page_token = 2;
  366. }
  367. // The request for [FirestoreAdmin.ExportDocuments][google.firestore.admin.v1.FirestoreAdmin.ExportDocuments].
  368. message ExportDocumentsRequest {
  369. // Required. Database to export. Should be of the form:
  370. // `projects/{project_id}/databases/{database_id}`.
  371. string name = 1 [
  372. (google.api.field_behavior) = REQUIRED,
  373. (google.api.resource_reference) = {
  374. type: "firestore.googleapis.com/Database"
  375. }
  376. ];
  377. // Which collection ids to export. Unspecified means all collections.
  378. repeated string collection_ids = 2;
  379. // The output URI. Currently only supports Google Cloud Storage URIs of the
  380. // form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name
  381. // of the Google Cloud Storage bucket and `NAMESPACE_PATH` is an optional
  382. // Google Cloud Storage namespace path. When
  383. // choosing a name, be sure to consider Google Cloud Storage naming
  384. // guidelines: https://cloud.google.com/storage/docs/naming.
  385. // If the URI is a bucket (without a namespace path), a prefix will be
  386. // generated based on the start time.
  387. string output_uri_prefix = 3;
  388. }
  389. // The request for [FirestoreAdmin.ImportDocuments][google.firestore.admin.v1.FirestoreAdmin.ImportDocuments].
  390. message ImportDocumentsRequest {
  391. // Required. Database to import into. Should be of the form:
  392. // `projects/{project_id}/databases/{database_id}`.
  393. string name = 1 [
  394. (google.api.field_behavior) = REQUIRED,
  395. (google.api.resource_reference) = {
  396. type: "firestore.googleapis.com/Database"
  397. }
  398. ];
  399. // Which collection ids to import. Unspecified means all collections included
  400. // in the import.
  401. repeated string collection_ids = 2;
  402. // Location of the exported files.
  403. // This must match the output_uri_prefix of an ExportDocumentsResponse from
  404. // an export that has completed successfully.
  405. // See:
  406. // [google.firestore.admin.v1.ExportDocumentsResponse.output_uri_prefix][google.firestore.admin.v1.ExportDocumentsResponse.output_uri_prefix].
  407. string input_uri_prefix = 3;
  408. }