Class: Google::Apis::HealthcareV1beta1::SeriesMetrics
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::SeriesMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
SeriesMetrics contains metrics describing a DICOM series.
Instance Attribute Summary collapse
-
#blob_storage_size_bytes ⇒ Fixnum
Total blob storage bytes for all instances in the series.
-
#instance_count ⇒ Fixnum
Number of instances in the series.
-
#series ⇒ String
The series resource path.
-
#structured_storage_size_bytes ⇒ Fixnum
Total structured storage bytes for all instances in the series.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SeriesMetrics
constructor
A new instance of SeriesMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SeriesMetrics
Returns a new instance of SeriesMetrics.
6794 6795 6796 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6794 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blob_storage_size_bytes ⇒ Fixnum
Total blob storage bytes for all instances in the series.
Corresponds to the JSON property blobStorageSizeBytes
6775 6776 6777 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6775 def blob_storage_size_bytes @blob_storage_size_bytes end |
#instance_count ⇒ Fixnum
Number of instances in the series.
Corresponds to the JSON property instanceCount
6780 6781 6782 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6780 def instance_count @instance_count end |
#series ⇒ String
The series resource path. For example, projects/
project_id/locations/
location_id/datasets/
dataset_id/dicomStores/
dicom_store_id/dicomWeb/
studies/
study_uid/series/
series_uid`.
Corresponds to the JSON property
series`
6787 6788 6789 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6787 def series @series end |
#structured_storage_size_bytes ⇒ Fixnum
Total structured storage bytes for all instances in the series.
Corresponds to the JSON property structuredStorageSizeBytes
6792 6793 6794 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6792 def structured_storage_size_bytes @structured_storage_size_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6799 6800 6801 6802 6803 6804 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6799 def update!(**args) @blob_storage_size_bytes = args[:blob_storage_size_bytes] if args.key?(:blob_storage_size_bytes) @instance_count = args[:instance_count] if args.key?(:instance_count) @series = args[:series] if args.key?(:series) @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes) end |