public interface CommitRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getDatabase()
Required.
|
com.google.protobuf.ByteString |
getDatabaseBytes()
Required.
|
com.google.protobuf.ByteString |
getTransaction()
If set, applies all writes in this transaction, and commits it.
|
Write |
getWrites(int index)
The writes to apply.
|
int |
getWritesCount()
The writes to apply.
|
List<Write> |
getWritesList()
The writes to apply.
|
WriteOrBuilder |
getWritesOrBuilder(int index)
The writes to apply.
|
List<? extends WriteOrBuilder> |
getWritesOrBuilderList()
The writes to apply.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
String getDatabase()
Required. The database name. In the format: `projects/{project_id}/databases/{database_id}`.
string database = 1 [(.google.api.field_behavior) = REQUIRED];
com.google.protobuf.ByteString getDatabaseBytes()
Required. The database name. In the format: `projects/{project_id}/databases/{database_id}`.
string database = 1 [(.google.api.field_behavior) = REQUIRED];
List<Write> getWritesList()
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1.Write writes = 2;
Write getWrites(int index)
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1.Write writes = 2;
int getWritesCount()
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1.Write writes = 2;
List<? extends WriteOrBuilder> getWritesOrBuilderList()
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1.Write writes = 2;
WriteOrBuilder getWritesOrBuilder(int index)
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1.Write writes = 2;
com.google.protobuf.ByteString getTransaction()
If set, applies all writes in this transaction, and commits it.
bytes transaction = 3;
Copyright © 2023 Google LLC. All rights reserved.