public interface CommitRequestOrBuilder extends MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDatabase()
The database name.
|
ByteString |
getDatabaseBytes()
The database name.
|
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.
|
java.util.List<Write> |
getWritesList()
The writes to apply.
|
WriteOrBuilder |
getWritesOrBuilder(int index)
The writes to apply.
|
java.util.List<? extends WriteOrBuilder> |
getWritesOrBuilderList()
The writes to apply.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofisInitializedjava.lang.String getDatabase()
The database name. In the format:
`projects/{project_id}/databases/{database_id}`.
string database = 1;ByteString getDatabaseBytes()
The database name. In the format:
`projects/{project_id}/databases/{database_id}`.
string database = 1;java.util.List<Write> getWritesList()
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1beta1.Write writes = 2;Write getWrites(int index)
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1beta1.Write writes = 2;int getWritesCount()
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1beta1.Write writes = 2;java.util.List<? extends WriteOrBuilder> getWritesOrBuilderList()
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1beta1.Write writes = 2;WriteOrBuilder getWritesOrBuilder(int index)
The writes to apply. Always executed atomically and in order.
repeated .google.firestore.v1beta1.Write writes = 2;ByteString getTransaction()
If set, applies all writes in this transaction, and commits it.
bytes transaction = 3;