class Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2ExportDocumentsMetadata

Metadata for google.longrunning.Operation results from FirestoreAdmin. ExportDocuments.

Attributes

collection_ids[RW]

Which collection ids are being exported. Corresponds to the JSON property `collectionIds` @return [Array<String>]

end_time[RW]

The time this operation completed. Will be unset if operation still in progress. Corresponds to the JSON property `endTime` @return [String]

operation_state[RW]

The state of the export operation. Corresponds to the JSON property `operationState` @return [String]

output_uri_prefix[RW]

Where the entities are being exported to. Corresponds to the JSON property `outputUriPrefix` @return [String]

progress_bytes[RW]

Describes the progress of the operation. Unit of work is generic and must be interpreted based on where Progress is used. Corresponds to the JSON property `progressBytes` @return [Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Progress]

progress_documents[RW]

Describes the progress of the operation. Unit of work is generic and must be interpreted based on where Progress is used. Corresponds to the JSON property `progressDocuments` @return [Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Progress]

start_time[RW]

The time this operation started. Corresponds to the JSON property `startTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firestore_v1beta2/classes.rb, line 85
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_v1beta2/classes.rb, line 90
def update!(**args)
  @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
  @end_time = args[:end_time] if args.key?(:end_time)
  @operation_state = args[:operation_state] if args.key?(:operation_state)
  @output_uri_prefix = args[:output_uri_prefix] if args.key?(:output_uri_prefix)
  @progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes)
  @progress_documents = args[:progress_documents] if args.key?(:progress_documents)
  @start_time = args[:start_time] if args.key?(:start_time)
end