12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007 |
- syntax = "proto3";
- package google.firestore.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/firestore/v1/aggregation_result.proto";
- import "google/firestore/v1/common.proto";
- import "google/firestore/v1/document.proto";
- import "google/firestore/v1/query.proto";
- import "google/firestore/v1/write.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/timestamp.proto";
- import "google/rpc/status.proto";
- option csharp_namespace = "Google.Cloud.Firestore.V1";
- option go_package = "google.golang.org/genproto/googleapis/firestore/v1;firestore";
- option java_multiple_files = true;
- option java_outer_classname = "FirestoreProto";
- option java_package = "com.google.firestore.v1";
- option php_namespace = "Google\\Cloud\\Firestore\\V1";
- option ruby_package = "Google::Cloud::Firestore::V1";
- service Firestore {
- 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";
-
- rpc GetDocument(GetDocumentRequest) returns (Document) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/databases/*/documents/*/**}"
- };
- }
-
- rpc ListDocuments(ListDocumentsRequest) returns (ListDocumentsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/databases/*/documents/*/**}/{collection_id}"
- additional_bindings {
- get: "/v1/{parent=projects/*/databases/*/documents}/{collection_id}"
- }
- };
- }
-
- rpc UpdateDocument(UpdateDocumentRequest) returns (Document) {
- option (google.api.http) = {
- patch: "/v1/{document.name=projects/*/databases/*/documents/*/**}"
- body: "document"
- };
- option (google.api.method_signature) = "document,update_mask";
- }
-
- rpc DeleteDocument(DeleteDocumentRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/databases/*/documents/*/**}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
-
- rpc BatchGetDocuments(BatchGetDocumentsRequest) returns (stream BatchGetDocumentsResponse) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:batchGet"
- body: "*"
- };
- }
-
- rpc BeginTransaction(BeginTransactionRequest) returns (BeginTransactionResponse) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:beginTransaction"
- body: "*"
- };
- option (google.api.method_signature) = "database";
- }
-
- rpc Commit(CommitRequest) returns (CommitResponse) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:commit"
- body: "*"
- };
- option (google.api.method_signature) = "database,writes";
- }
-
- rpc Rollback(RollbackRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:rollback"
- body: "*"
- };
- option (google.api.method_signature) = "database,transaction";
- }
-
- rpc RunQuery(RunQueryRequest) returns (stream RunQueryResponse) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/databases/*/documents}:runQuery"
- body: "*"
- additional_bindings {
- post: "/v1/{parent=projects/*/databases/*/documents/*/**}:runQuery"
- body: "*"
- }
- };
- }
-
-
-
-
-
-
-
-
-
-
-
-
- rpc RunAggregationQuery(RunAggregationQueryRequest) returns (stream RunAggregationQueryResponse) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/databases/*/documents}:runAggregationQuery"
- body: "*"
- additional_bindings {
- post: "/v1/{parent=projects/*/databases/*/documents/*/**}:runAggregationQuery"
- body: "*"
- }
- };
- }
-
-
-
- rpc PartitionQuery(PartitionQueryRequest) returns (PartitionQueryResponse) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/databases/*/documents}:partitionQuery"
- body: "*"
- additional_bindings {
- post: "/v1/{parent=projects/*/databases/*/documents/*/**}:partitionQuery"
- body: "*"
- }
- };
- }
-
- rpc Write(stream WriteRequest) returns (stream WriteResponse) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:write"
- body: "*"
- };
- }
-
- rpc Listen(stream ListenRequest) returns (stream ListenResponse) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:listen"
- body: "*"
- };
- }
-
- rpc ListCollectionIds(ListCollectionIdsRequest) returns (ListCollectionIdsResponse) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/databases/*/documents}:listCollectionIds"
- body: "*"
- additional_bindings {
- post: "/v1/{parent=projects/*/databases/*/documents/*/**}:listCollectionIds"
- body: "*"
- }
- };
- option (google.api.method_signature) = "parent";
- }
-
-
-
-
-
-
-
-
-
- rpc BatchWrite(BatchWriteRequest) returns (BatchWriteResponse) {
- option (google.api.http) = {
- post: "/v1/{database=projects/*/databases/*}/documents:batchWrite"
- body: "*"
- };
- }
-
- rpc CreateDocument(CreateDocumentRequest) returns (Document) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/databases/*/documents/**}/{collection_id}"
- body: "document"
- };
- }
- }
- message GetDocumentRequest {
-
-
- string name = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- DocumentMask mask = 2;
-
-
- oneof consistency_selector {
-
- bytes transaction = 3;
-
-
- google.protobuf.Timestamp read_time = 5;
- }
- }
- message ListDocumentsRequest {
-
-
-
-
-
-
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- string collection_id = 2 [(google.api.field_behavior) = REQUIRED];
-
- int32 page_size = 3;
-
- string page_token = 4;
-
- string order_by = 6;
-
-
-
-
- DocumentMask mask = 7;
-
-
- oneof consistency_selector {
-
- bytes transaction = 8;
-
-
- google.protobuf.Timestamp read_time = 10;
- }
-
-
-
-
-
-
-
- bool show_missing = 12;
- }
- message ListDocumentsResponse {
-
- repeated Document documents = 1;
-
- string next_page_token = 2;
- }
- message CreateDocumentRequest {
-
-
-
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
-
- string collection_id = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string document_id = 3;
-
- Document document = 4 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- DocumentMask mask = 5;
- }
- message UpdateDocumentRequest {
-
-
- Document document = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
- DocumentMask update_mask = 2;
-
-
-
-
- DocumentMask mask = 3;
-
-
- Precondition current_document = 4;
- }
- message DeleteDocumentRequest {
-
-
- string name = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- Precondition current_document = 2;
- }
- message BatchGetDocumentsRequest {
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- repeated string documents = 2;
-
-
-
-
- DocumentMask mask = 3;
-
-
- oneof consistency_selector {
-
- bytes transaction = 4;
-
-
-
-
- TransactionOptions new_transaction = 5;
-
-
- google.protobuf.Timestamp read_time = 7;
- }
- }
- message BatchGetDocumentsResponse {
-
-
- oneof result {
-
- Document found = 1;
-
-
- string missing = 2;
- }
-
-
-
- bytes transaction = 3;
-
-
-
-
- google.protobuf.Timestamp read_time = 4;
- }
- message BeginTransactionRequest {
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- TransactionOptions options = 2;
- }
- message BeginTransactionResponse {
-
- bytes transaction = 1;
- }
- message CommitRequest {
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- repeated Write writes = 2;
-
- bytes transaction = 3;
- }
- message CommitResponse {
-
-
-
-
- repeated WriteResult write_results = 1;
-
-
- google.protobuf.Timestamp commit_time = 2;
- }
- message RollbackRequest {
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
- bytes transaction = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message RunQueryRequest {
-
-
-
-
-
-
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
-
- oneof query_type {
-
- StructuredQuery structured_query = 2;
- }
-
-
- oneof consistency_selector {
-
-
-
- bytes transaction = 5;
-
-
-
-
- TransactionOptions new_transaction = 6;
-
-
- google.protobuf.Timestamp read_time = 7;
- }
- }
- message RunQueryResponse {
-
-
-
-
- bytes transaction = 2;
-
- Document document = 1;
-
-
-
-
-
-
-
- google.protobuf.Timestamp read_time = 3;
-
-
- int32 skipped_results = 4;
-
-
-
- oneof continuation_selector {
-
-
- bool done = 6;
- }
- }
- message RunAggregationQueryRequest {
-
-
-
-
-
-
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
-
- oneof query_type {
-
- StructuredAggregationQuery structured_aggregation_query = 2;
- }
-
- oneof consistency_selector {
-
-
-
- bytes transaction = 4;
-
-
-
-
- TransactionOptions new_transaction = 5;
-
-
-
-
-
- google.protobuf.Timestamp read_time = 6;
- }
- }
- message RunAggregationQueryResponse {
-
-
-
- AggregationResult result = 1;
-
-
-
-
- bytes transaction = 2;
-
- google.protobuf.Timestamp read_time = 3;
- }
- message PartitionQueryRequest {
-
-
-
-
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
-
- oneof query_type {
-
-
-
-
- StructuredQuery structured_query = 2;
- }
-
-
-
-
-
-
-
-
- int64 partition_count = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
- string page_token = 4;
-
-
-
-
-
-
-
- int32 page_size = 5;
-
-
- oneof consistency_selector {
-
-
- google.protobuf.Timestamp read_time = 6;
- }
- }
- message PartitionQueryResponse {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated Cursor partitions = 1;
-
-
-
- string next_page_token = 2;
- }
- message WriteRequest {
-
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string stream_id = 2;
-
-
-
-
-
-
- repeated Write writes = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bytes stream_token = 4;
-
- map<string, string> labels = 5;
- }
- message WriteResponse {
-
-
- string stream_id = 1;
-
-
-
-
- bytes stream_token = 2;
-
-
-
-
- repeated WriteResult write_results = 3;
-
-
- google.protobuf.Timestamp commit_time = 4;
- }
- message ListenRequest {
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
- oneof target_change {
-
- Target add_target = 2;
-
- int32 remove_target = 3;
- }
-
- map<string, string> labels = 4;
- }
- message ListenResponse {
-
- oneof response_type {
-
- TargetChange target_change = 2;
-
- DocumentChange document_change = 3;
-
- DocumentDelete document_delete = 4;
-
-
- DocumentRemove document_remove = 6;
-
-
-
-
-
- ExistenceFilter filter = 5;
- }
- }
- message Target {
-
- message DocumentsTarget {
-
-
-
-
- repeated string documents = 2;
- }
-
- message QueryTarget {
-
-
-
-
-
-
- string parent = 1;
-
- oneof query_type {
-
- StructuredQuery structured_query = 2;
- }
- }
-
- oneof target_type {
-
- QueryTarget query = 2;
-
- DocumentsTarget documents = 3;
- }
-
-
-
-
- oneof resume_type {
-
-
-
- bytes resume_token = 4;
-
-
-
- google.protobuf.Timestamp read_time = 11;
- }
-
-
- int32 target_id = 5;
-
- bool once = 6;
- }
- message TargetChange {
-
- enum TargetChangeType {
-
- NO_CHANGE = 0;
-
- ADD = 1;
-
- REMOVE = 2;
-
-
-
-
-
-
-
-
- CURRENT = 3;
-
-
-
-
-
- RESET = 4;
- }
-
- TargetChangeType target_change_type = 1;
-
-
-
-
-
- repeated int32 target_ids = 2;
-
- google.rpc.Status cause = 3;
-
-
-
-
- bytes resume_token = 4;
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Timestamp read_time = 6;
- }
- message ListCollectionIdsRequest {
-
-
-
-
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
-
- int32 page_size = 2;
-
-
- string page_token = 3;
-
-
- oneof consistency_selector {
-
-
- google.protobuf.Timestamp read_time = 4;
- }
- }
- message ListCollectionIdsResponse {
-
- repeated string collection_ids = 1;
-
- string next_page_token = 2;
- }
- message BatchWriteRequest {
-
-
- string database = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- repeated Write writes = 2;
-
- map<string, string> labels = 3;
- }
- message BatchWriteResponse {
-
-
-
-
- repeated WriteResult write_results = 1;
-
-
-
-
- repeated google.rpc.Status status = 2;
- }
|