Class: Google::Apis::HealthcareV1beta1::StudyMetrics
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::StudyMetrics
- 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
StudyMetrics contains metrics describing a DICOM study.
Instance Attribute Summary collapse
-
#blob_storage_size_bytes ⇒ Fixnum
Total blob storage bytes for all instances in the study.
-
#instance_count ⇒ Fixnum
Number of instances in the study.
-
#series_count ⇒ Fixnum
Number of series in the study.
-
#structured_storage_size_bytes ⇒ Fixnum
Total structured storage bytes for all instances in the study.
-
#study ⇒ String
The study resource path.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StudyMetrics
constructor
A new instance of StudyMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StudyMetrics
Returns a new instance of StudyMetrics.
7098 7099 7100 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7098 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blob_storage_size_bytes ⇒ Fixnum
Total blob storage bytes for all instances in the study.
Corresponds to the JSON property blobStorageSizeBytes
7074 7075 7076 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7074 def blob_storage_size_bytes @blob_storage_size_bytes end |
#instance_count ⇒ Fixnum
Number of instances in the study.
Corresponds to the JSON property instanceCount
7079 7080 7081 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7079 def instance_count @instance_count end |
#series_count ⇒ Fixnum
Number of series in the study.
Corresponds to the JSON property seriesCount
7084 7085 7086 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7084 def series_count @series_count end |
#structured_storage_size_bytes ⇒ Fixnum
Total structured storage bytes for all instances in the study.
Corresponds to the JSON property structuredStorageSizeBytes
7089 7090 7091 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7089 def structured_storage_size_bytes @structured_storage_size_bytes end |
#study ⇒ String
The study resource path. For example, projects/
project_id/locations/
location_id/datasets/
dataset_id/dicomStores/
dicom_store_id/dicomWeb/
studies/
study_uid`.
Corresponds to the JSON property
study`
7096 7097 7098 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7096 def study @study end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7103 7104 7105 7106 7107 7108 7109 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7103 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_count = args[:series_count] if args.key?(:series_count) @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes) @study = args[:study] if args.key?(:study) end |