instances_storage_info
Creates, updates, deletes, gets or lists an instances_storage_info
resource.
Overview
Name | instances_storage_info |
Type | Resource |
Id | google.healthcare.instances_storage_info |
Fields
The following fields are returned by SELECT
queries:
- get_storage_info
Successful response
Name | Datatype | Description |
---|---|---|
blobStorageInfo | object | Info about the data stored in blob storage for the resource. (id: BlobStorageInfo) |
referencedResource | string | The resource whose storage info is returned. For example: projects/{projectID}/locations/{locationID}/datasets/{datasetID}/dicomStores/{dicomStoreID}/dicomWeb/studies/{studyUID}/series/{seriesUID}/instances/{instanceUID} |
structuredStorageInfo | object | Info about the data stored in structured storage for the resource. (id: StructuredStorageInfo) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_storage_info | select | projectsId , locationsId , datasetsId , dicomStoresId , studiesId , seriesId , instancesId | GetStorageInfo 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.
Name | Datatype | Description |
---|---|---|
datasetsId | string | |
dicomStoresId | string | |
instancesId | string | |
locationsId | string | |
projectsId | string | |
seriesId | string | |
studiesId | string |
SELECT
examples
- get_storage_info
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;