Class: Google::Apis::VaultV1::CountArtifactsMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/vault_v1/classes.rb,
lib/google/apis/vault_v1/representations.rb,
lib/google/apis/vault_v1/representations.rb

Overview

Long running operation metadata for CountArtifacts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CountArtifactsMetadata

Returns a new instance of CountArtifactsMetadata.



389
390
391
# File 'lib/google/apis/vault_v1/classes.rb', line 389

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

End time of count operation. Available when operation is done. Corresponds to the JSON property endTime

Returns:

  • (String)


372
373
374
# File 'lib/google/apis/vault_v1/classes.rb', line 372

def end_time
  @end_time
end

#matter_idString

The matter ID of the associated matter. Corresponds to the JSON property matterId

Returns:

  • (String)


377
378
379
# File 'lib/google/apis/vault_v1/classes.rb', line 377

def matter_id
  @matter_id
end

#queryGoogle::Apis::VaultV1::Query

A query definition relevant for search & export. Corresponds to the JSON property query



382
383
384
# File 'lib/google/apis/vault_v1/classes.rb', line 382

def query
  @query
end

#start_timeString

Creation time of count operation. Corresponds to the JSON property startTime

Returns:

  • (String)


387
388
389
# File 'lib/google/apis/vault_v1/classes.rb', line 387

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



394
395
396
397
398
399
# File 'lib/google/apis/vault_v1/classes.rb', line 394

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