class Google::Apis::FirestoreV1::GoogleFirestoreAdminV1ExportDocumentsRequest

The request for FirestoreAdmin.ExportDocuments.

Attributes

collection_ids[RW]

Which collection ids to export. Unspecified means all collections. Corresponds to the JSON property `collectionIds` @return [Array<String>]

output_uri_prefix[RW]

The output URI. Currently only supports Google Cloud Storage URIs of the form: `gs://BUCKET_NAME`, where `BUCKET_NAME` is the name of the Google Cloud Storage bucket and `NAMESPACE_PATH` is an optional Google Cloud Storage namespace path. When choosing a name, be sure to consider Google Cloud Storage naming guidelines: cloud.google.com/storage/docs/naming. If the URI is a bucket (without a namespace path), a prefix will be generated based on the start time. Corresponds to the JSON property `outputUriPrefix` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firestore_v1/classes.rb, line 857
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firestore_v1/classes.rb, line 862
def update!(**args)
  @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
  @output_uri_prefix = args[:output_uri_prefix] if args.key?(:output_uri_prefix)
end