class Google::Apis::VaultV1::ExportStats

Progress information for an export.

Attributes

exported_artifact_count[RW]

The number of messages or files already processed for export. Corresponds to the JSON property `exportedArtifactCount` @return [Fixnum]

size_in_bytes[RW]

The size of export in bytes. Corresponds to the JSON property `sizeInBytes` @return [Fixnum]

total_artifact_count[RW]

The number of messages or files to be exported. Corresponds to the JSON property `totalArtifactCount` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vault_v1/classes.rb, line 682
def update!(**args)
  @exported_artifact_count = args[:exported_artifact_count] if args.key?(:exported_artifact_count)
  @size_in_bytes = args[:size_in_bytes] if args.key?(:size_in_bytes)
  @total_artifact_count = args[:total_artifact_count] if args.key?(:total_artifact_count)
end