Class: Google::Apis::VaultV1::CountArtifactsMetadata
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::CountArtifactsMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/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
A query definition relevant for search & 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.
381 382 383 |
# File 'generated/google/apis/vault_v1/classes.rb', line 381 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
364 365 366 |
# File 'generated/google/apis/vault_v1/classes.rb', line 364 def end_time @end_time end |
#matter_id ⇒ String
The matter ID of the associated matter.
Corresponds to the JSON property matterId
369 370 371 |
# File 'generated/google/apis/vault_v1/classes.rb', line 369 def matter_id @matter_id end |
#query ⇒ Google::Apis::VaultV1::Query
A query definition relevant for search & export.
Corresponds to the JSON property query
374 375 376 |
# File 'generated/google/apis/vault_v1/classes.rb', line 374 def query @query end |
#start_time ⇒ String
Creation time of count operation.
Corresponds to the JSON property startTime
379 380 381 |
# File 'generated/google/apis/vault_v1/classes.rb', line 379 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
386 387 388 389 390 391 |
# File 'generated/google/apis/vault_v1/classes.rb', line 386 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 |