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.



471
472
473
# File 'lib/google/apis/vault_v1/classes.rb', line 471

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)


454
455
456
# File 'lib/google/apis/vault_v1/classes.rb', line 454

def end_time
  @end_time
end

#matter_idString

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

Returns:

  • (String)


459
460
461
# File 'lib/google/apis/vault_v1/classes.rb', line 459

def matter_id
  @matter_id
end

#queryGoogle::Apis::VaultV1::Query

The query definition used for search and export. Corresponds to the JSON property query



464
465
466
# File 'lib/google/apis/vault_v1/classes.rb', line 464

def query
  @query
end

#start_timeString

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

Returns:

  • (String)


469
470
471
# File 'lib/google/apis/vault_v1/classes.rb', line 469

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



476
477
478
479
480
481
# File 'lib/google/apis/vault_v1/classes.rb', line 476

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