dicom_services
Creates, updates, deletes, gets or lists a dicom_services
resource.
Overview
Name | dicom_services |
Type | Resource |
Id | azure_extras.healthcare.dicom_services |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_workspace
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
identity | object | Setting indicating whether the service has a managed identity associated with it. |
properties | object | Dicom Service configuration. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
List of DICOM Services.
Name | Datatype | Description |
---|---|---|
identity | object | Setting indicating whether the service has a managed identity associated with it. |
properties | object | Dicom Service configuration. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , workspaceName , dicomServiceName | Gets the properties of the specified DICOM Service. | |
list_by_workspace | select | resourceGroupName , subscriptionId , workspaceName | Lists all DICOM Services for the given workspace | |
create_or_update | insert | resourceGroupName , subscriptionId , workspaceName , dicomServiceName | Creates or updates a DICOM Service resource with the specified parameters. | |
update | update | resourceGroupName , subscriptionId , dicomServiceName , workspaceName | Patch DICOM Service details. | |
delete | delete | subscriptionId , resourceGroupName , dicomServiceName , workspaceName | Deletes a DICOM Service. |
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 |
---|---|---|
dicomServiceName | string | The name of DICOM Service resource. |
resourceGroupName | string | The name of the resource group that contains the service instance. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of workspace resource. |
SELECT
examples
- get
- list_by_workspace
Gets the properties of the specified DICOM Service.
SELECT
identity,
properties,
systemData
FROM azure_extras.healthcare.dicom_services
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND dicomServiceName = '{{ dicomServiceName }}' -- required
;
Lists all DICOM Services for the given workspace
SELECT
identity,
properties,
systemData
FROM azure_extras.healthcare.dicom_services
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Creates or updates a DICOM Service resource with the specified parameters.
INSERT INTO azure_extras.healthcare.dicom_services (
data__identity,
data__properties,
resourceGroupName,
subscriptionId,
workspaceName,
dicomServiceName
)
SELECT
'{{ identity }}',
'{{ properties }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ dicomServiceName }}'
RETURNING
identity,
properties,
systemData
;
# Description fields are for documentation purposes
- name: dicom_services
props:
- name: resourceGroupName
value: string
description: Required parameter for the dicom_services resource.
- name: subscriptionId
value: string
description: Required parameter for the dicom_services resource.
- name: workspaceName
value: string
description: Required parameter for the dicom_services resource.
- name: dicomServiceName
value: string
description: Required parameter for the dicom_services resource.
- name: identity
value: object
description: |
Setting indicating whether the service has a managed identity associated with it.
- name: properties
value: object
description: |
Dicom Service configuration.
UPDATE
examples
- update
Patch DICOM Service details.
UPDATE azure_extras.healthcare.dicom_services
SET
data__tags = '{{ tags }}',
data__identity = '{{ identity }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND dicomServiceName = '{{ dicomServiceName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
RETURNING
identity,
properties,
systemData;
DELETE
examples
- delete
Deletes a DICOM Service.
DELETE FROM azure_extras.healthcare.dicom_services
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND dicomServiceName = '{{ dicomServiceName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
;