google-cloud-cpp
google-cloud-cpp copied to clipboard
Cloud Firestore API: `firestore.googleapis.com`
Just wanted to note that this service has two server-side streaming (aka streaming read) RPCs:
google.firestore.v1.Firestore.BatchGetDocumentsgoogle.firestore.v1.Firestore.RunQuery
Found using:
cat ~/googleapis/api-index-v1.json | jq '.apis | map(select(.services != null)) | map(.services | map(select(.methods != null)) | map(.methods | map(select(.mode == "SERVER_STREAMING") | [.mode, .fullName] ))) | flatten ' | grep -v SERVER_STREAMING | grep -v beta
It also has bidirectional streaming RPCs:
google.firestore.v1.Firestore.Listengoogle.firestore.v1.Firestore.Write
Found using:
cat ~/googleapis/api-index-v1.json | jq '.apis | map(select(.services != null)) | map(.services | map(select(.methods != null)) | map(.methods | map(select(.mode == "BIDIRECTIONAL_STREAMING") | [.mode, .fullName] ))) | flatten ' | grep -v BIDIRECTIONAL_STREAMING | grep -v beta
We do not have enough time to work on this service. Closing.