Class: Google::Apis::HealthcareV1::StudyMetrics

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
more...

Overview

StudyMetrics contains metrics describing a DICOM study.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StudyMetrics

Returns a new instance of StudyMetrics.

[View source]

5750
5751
5752
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5750

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#blob_storage_size_bytesFixnum

Total blob storage bytes for all instances in the study. Corresponds to the JSON property blobStorageSizeBytes

Returns:

  • (Fixnum)

5726
5727
5728
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5726

def blob_storage_size_bytes
  @blob_storage_size_bytes
end

#instance_countFixnum

Number of instances in the study. Corresponds to the JSON property instanceCount

Returns:

  • (Fixnum)

5731
5732
5733
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5731

def instance_count
  @instance_count
end

#series_countFixnum

Number of series in the study. Corresponds to the JSON property seriesCount

Returns:

  • (Fixnum)

5736
5737
5738
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5736

def series_count
  @series_count
end

#structured_storage_size_bytesFixnum

Total structured storage bytes for all instances in the study. Corresponds to the JSON property structuredStorageSizeBytes

Returns:

  • (Fixnum)

5741
5742
5743
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5741

def structured_storage_size_bytes
  @structured_storage_size_bytes
end

#studyString

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 propertystudy`

Returns:

  • (String)

5748
5749
5750
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5748

def study
  @study
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

5755
5756
5757
5758
5759
5760
5761
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5755

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