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.
6886 6887 6888 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6886 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
6867 6868 6869 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6867 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
6872 6873 6874 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6872 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`
6879 6880 6881 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6879 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
6884 6885 6886 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6884 def structured_storage_size_bytes @structured_storage_size_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6891 6892 6893 6894 6895 6896 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6891 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 |