Class: Google::Apis::FirestoreV1beta1::DocumentsTarget
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirestoreV1beta1::DocumentsTarget
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firestore_v1beta1/classes.rb,
 generated/google/apis/firestore_v1beta1/representations.rb,
 generated/google/apis/firestore_v1beta1/representations.rb
Overview
A target specified by a set of documents names.
Instance Attribute Summary collapse
- 
  
    
      #documents  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The names of the documents to retrieve. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DocumentsTarget 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DocumentsTarget. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DocumentsTarget
Returns a new instance of DocumentsTarget
| 553 554 555 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 553 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#documents ⇒ Array<String>
The names of the documents to retrieve. In the format:
projects/project_id/databases/database_id/documents/document_path`.
The request will fail if any of the document is not a child resource of
the givendatabase. Duplicate names will be elided.
Corresponds to the JSON propertydocuments`
| 551 552 553 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 551 def documents @documents end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 558 559 560 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 558 def update!(**args) @documents = args[:documents] if args.key?(:documents) end |