Class: Google::Apis::VaultV1::CountArtifactsMetadata
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::CountArtifactsMetadata
- 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
-
#end_time ⇒ String
End time of count operation.
-
#matter_id ⇒ String
The matter ID of the associated matter.
-
#query ⇒ Google::Apis::VaultV1::Query
The query definition used for search and export.
-
#start_time ⇒ String
Creation time of count operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CountArtifactsMetadata
constructor
A new instance of CountArtifactsMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_time ⇒ String
End time of count operation. Available when operation is done.
Corresponds to the JSON property endTime
454 455 456 |
# File 'lib/google/apis/vault_v1/classes.rb', line 454 def end_time @end_time end |
#matter_id ⇒ String
The matter ID of the associated matter.
Corresponds to the JSON property matterId
459 460 461 |
# File 'lib/google/apis/vault_v1/classes.rb', line 459 def matter_id @matter_id end |
#query ⇒ Google::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_time ⇒ String
Creation time of count operation.
Corresponds to the JSON property startTime
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 |