Class: Google::Firestore::V1::CreateDocumentRequest
- Inherits:
-
Object
- Object
- Google::Firestore::V1::CreateDocumentRequest
- Defined in:
- lib/google/cloud/firestore/v1/doc/google/firestore/v1/firestore.rb
Overview
The request for Firestore::CreateDocument.
Instance Attribute Summary collapse
-
#collection_id ⇒ String
Required.
-
#document ⇒ Google::Firestore::V1::Document
Required.
-
#document_id ⇒ String
The client-assigned document ID to use for this document.
-
#mask ⇒ Google::Firestore::V1::DocumentMask
The fields to return.
-
#parent ⇒ String
Required.
Instance Attribute Details
#collection_id ⇒ String
Returns Required. The collection ID, relative to parent
, to list. For example: chatrooms
.
117 |
# File 'lib/google/cloud/firestore/v1/doc/google/firestore/v1/firestore.rb', line 117 class CreateDocumentRequest; end |
#document ⇒ Google::Firestore::V1::Document
Returns Required. The document to create. name
must not be set.
117 |
# File 'lib/google/cloud/firestore/v1/doc/google/firestore/v1/firestore.rb', line 117 class CreateDocumentRequest; end |
#document_id ⇒ String
Returns The client-assigned document ID to use for this document.
Optional. If not specified, an ID will be assigned by the service.
117 |
# File 'lib/google/cloud/firestore/v1/doc/google/firestore/v1/firestore.rb', line 117 class CreateDocumentRequest; end |
#mask ⇒ Google::Firestore::V1::DocumentMask
Returns The fields to return. If not set, returns all fields.
If the document has a field that is not present in this mask, that field will not be returned in the response.
117 |
# File 'lib/google/cloud/firestore/v1/doc/google/firestore/v1/firestore.rb', line 117 class CreateDocumentRequest; end |
#parent ⇒ String
Returns Required. The parent resource. For example:
projects/{project_id}/databases/{database_id}/documents
or
projects/{project_id}/databases/{database_id}/documents/chatrooms/{chatroom_id}
.
117 |
# File 'lib/google/cloud/firestore/v1/doc/google/firestore/v1/firestore.rb', line 117 class CreateDocumentRequest; end |