class Google::Apis::VaultV1::CountArtifactsMetadata

Long running operation metadata for CountArtifacts.

Attributes

end_time[RW]

End time of count operation. Available when operation is done. Corresponds to the JSON property `endTime` @return [String]

matter_id[RW]

The matter ID of the associated matter. Corresponds to the JSON property `matterId` @return [String]

query[RW]

The query definition used for search and export. Corresponds to the JSON property `query` @return [Google::Apis::VaultV1::Query]

start_time[RW]

Creation time of count operation. Corresponds to the JSON property `startTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 391
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 396
def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @matter_id = args[:matter_id] if args.key?(:matter_id)
  @query = args[:query] if args.key?(:query)
  @start_time = args[:start_time] if args.key?(:start_time)
end