Improve the documentation about how to use OperationsClient after FirestoreAdminClient.exportDocuments() #990
Labels
api: firestore
Issues related to the googleapis/java-firestore API.
documentation
Improvements or additions to documentation
Apologies if I misread the documentation, but I think I found several gaps in the documentation trying to query operations after launching
FirestoreAdminClient.exportDocuments
. Most of the issues are caused because the way to useOperationsClient
specifically to track Firestore Operations is not really documented (or I couldn't find it).name
as "The name of the operation collection". The documentation in the proto file documents the expected format, but does not link to the format to be used when invokingOperationClient.listOperations
.ExportDocumentsMetadata
from anOperation
is not documented. I'm usingop.getMetadata().unpack(ExportDocumentsMetadata.class)
.OperationsClient.listOperations
. It's only documented that one can usedone:true
. For example, all variants that I could try of searching formetadata.@type:type.googleapis.com/google.firestore.admin.v1.ExportDocumentsMetadata
did not work, so I suppose that's not supported. It would be good to know what is supported.The text was updated successfully, but these errors were encountered: