Class: Google::Apis::HealthcareV1beta1::StorageInfo
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::StorageInfo
- 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
StorageInfo encapsulates all the storage info of a resource.
Instance Attribute Summary collapse
-
#blob_storage_info ⇒ Google::Apis::HealthcareV1beta1::BlobStorageInfo
BlobStorageInfo contains details about the data stored in Blob Storage for the referenced resource.
-
#referenced_resource ⇒ String
The resource whose storage info is returned.
-
#structured_storage_info ⇒ Google::Apis::HealthcareV1beta1::StructuredStorageInfo
StructuredStorageInfo contains details about the data stored in Structured Storage for the referenced resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StorageInfo
constructor
A new instance of StorageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StorageInfo
Returns a new instance of StorageInfo.
7001 7002 7003 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7001 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blob_storage_info ⇒ Google::Apis::HealthcareV1beta1::BlobStorageInfo
BlobStorageInfo contains details about the data stored in Blob Storage for the
referenced resource. Note: Storage class is only valid for DICOM and hence
will only be populated for DICOM resources.
Corresponds to the JSON property blobStorageInfo
6985 6986 6987 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6985 def blob_storage_info @blob_storage_info end |
#referenced_resource ⇒ String
The resource whose storage info is returned. For example, to specify the
resource path of a DICOM Instance: projects/
projectID/locations/
locationID
/datasets/
datasetID/dicomStores/
dicom_store_id/dicomWeb/studi/
study_uid/
series/
series_uid/instances/
instance_uid`
Corresponds to the JSON property
referencedResource`
6993 6994 6995 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6993 def referenced_resource @referenced_resource end |
#structured_storage_info ⇒ Google::Apis::HealthcareV1beta1::StructuredStorageInfo
StructuredStorageInfo contains details about the data stored in Structured
Storage for the referenced resource.
Corresponds to the JSON property structuredStorageInfo
6999 7000 7001 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6999 def structured_storage_info @structured_storage_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7006 7007 7008 7009 7010 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7006 def update!(**args) @blob_storage_info = args[:blob_storage_info] if args.key?(:blob_storage_info) @referenced_resource = args[:referenced_resource] if args.key?(:referenced_resource) @structured_storage_info = args[:structured_storage_info] if args.key?(:structured_storage_info) end |