Class: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1ImportDocumentsRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firestore_v1beta1/classes.rb,
lib/google/apis/firestore_v1beta1/representations.rb,
lib/google/apis/firestore_v1beta1/representations.rb

Overview

The request for FirestoreAdmin.ImportDocuments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirestoreAdminV1beta1ImportDocumentsRequest

Returns a new instance of GoogleFirestoreAdminV1beta1ImportDocumentsRequest.



1522
1523
1524
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1522

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#collection_idsArray<String>

Which collection ids to import. Unspecified means all collections included in the import. Corresponds to the JSON property collectionIds

Returns:

  • (Array<String>)


1513
1514
1515
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1513

def collection_ids
  @collection_ids
end

#input_uri_prefixString

Location of the exported files. This must match the output_uri_prefix of an ExportDocumentsResponse from an export that has completed successfully. See: google.firestore.admin.v1beta1.ExportDocumentsResponse.output_uri_prefix. Corresponds to the JSON property inputUriPrefix

Returns:

  • (String)


1520
1521
1522
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1520

def input_uri_prefix
  @input_uri_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1527
1528
1529
1530
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1527

def update!(**args)
  @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
  @input_uri_prefix = args[:input_uri_prefix] if args.key?(:input_uri_prefix)
end