class Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1ImportDocumentsMetadata
Metadata for ImportDocuments operations.
Attributes
Which collection ids are being imported. Corresponds to the JSON property `collectionIds` @return [Array<String>]
The time the operation ended, either successfully or otherwise. Unset if the operation is still active. Corresponds to the JSON property `endTime` @return [String]
The location of the documents being imported. Corresponds to the JSON property `inputUriPrefix` @return [String]
The state of the import operation. Corresponds to the JSON property `operationState` @return [String]
Measures the progress of a particular metric. Corresponds to the JSON property `progressBytes` @return [Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1Progress]
Measures the progress of a particular metric. Corresponds to the JSON property `progressDocuments` @return [Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1Progress]
The time that work began on the operation. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
# File lib/google/apis/firestore_v1beta1/classes.rb, line 926 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/firestore_v1beta1/classes.rb, line 931 def update!(**args) @collection_ids = args[:collection_ids] if args.key?(:collection_ids) @end_time = args[:end_time] if args.key?(:end_time) @input_uri_prefix = args[:input_uri_prefix] if args.key?(:input_uri_prefix) @operation_state = args[:operation_state] if args.key?(:operation_state) @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