Skip to main content

instances_storage_info

Creates, updates, deletes, gets or lists an instances_storage_info resource.

Overview

Nameinstances_storage_info
TypeResource
Idgoogle.healthcare.instances_storage_info

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
blobStorageInfoobjectInfo about the data stored in blob storage for the resource. (id: BlobStorageInfo)
referencedResourcestringThe resource whose storage info is returned. For example: projects/{projectID}/locations/{locationID}/datasets/{datasetID}/dicomStores/{dicomStoreID}/dicomWeb/studies/{studyUID}/series/{seriesUID}/instances/{instanceUID}
structuredStorageInfoobjectInfo about the data stored in structured storage for the resource. (id: StructuredStorageInfo)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_storage_infoselectprojectsId, locationsId, datasetsId, dicomStoresId, studiesId, seriesId, instancesIdGetStorageInfo returns the storage info of the specified resource.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
datasetsIdstring
dicomStoresIdstring
instancesIdstring
locationsIdstring
projectsIdstring
seriesIdstring
studiesIdstring

SELECT examples

GetStorageInfo returns the storage info of the specified resource.

SELECT
blobStorageInfo,
referencedResource,
structuredStorageInfo
FROM google.healthcare.instances_storage_info
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND datasetsId = '{{ datasetsId }}' -- required
AND dicomStoresId = '{{ dicomStoresId }}' -- required
AND studiesId = '{{ studiesId }}' -- required
AND seriesId = '{{ seriesId }}' -- required
AND instancesId = '{{ instancesId }}' -- required;