studies
Creates, updates, deletes, gets or lists a studies
resource.
Overview
Name | studies |
Type | Resource |
Id | google.healthcare.studies |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
delete | DELETE | datasetsId, dicomStoresId, locationsId, projectsId, studiesId | DeleteStudy deletes all instances within the given study. Delete requests are equivalent to the GET requests specified in the Retrieve transaction. The method returns an Operation which will be marked successful when the deletion is complete. Warning: Instances cannot be inserted into a study that is being deleted by an operation until the operation completes. For samples that show how to call DeleteStudy, see Delete a study, series, or instance. |
search_for_instances | EXEC | datasetsId, dicomStoresId, locationsId, projectsId, studiesId | SearchForInstances returns a list of matching instances. See [Search Transaction] (http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6). For details on the implementation of SearchForInstances, see Search transaction in the Cloud Healthcare API conformance statement. For samples that show how to call SearchForInstances, see Search for DICOM data. |
search_for_series | EXEC | datasetsId, dicomStoresId, locationsId, projectsId, studiesId | SearchForSeries returns a list of matching series. See [Search Transaction] (http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6). For details on the implementation of SearchForSeries, see Search transaction in the Cloud Healthcare API conformance statement. For samples that show how to call SearchForSeries, see Search for DICOM data. |
set_blob_storage_settings | EXEC | datasetsId, dicomStoresId, locationsId, projectsId, studiesId | SetBlobStorageSettings sets the blob storage settings of the specified resources. |
store_instances | EXEC | datasetsId, dicomStoresId, locationsId, projectsId, studiesId | StoreInstances stores DICOM instances associated with study instance unique identifiers (SUID). See [Store Transaction] (http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.5). For details on the implementation of StoreInstances, see Store transaction in the Cloud Healthcare API conformance statement. For samples that show how to call StoreInstances, see Store DICOM data. |
DELETE
example
Deletes the specified studies
resource.
/*+ delete */
DELETE FROM google.healthcare.studies
WHERE datasetsId = '{{ datasetsId }}'
AND dicomStoresId = '{{ dicomStoresId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND studiesId = '{{ studiesId }}';