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
- vw_dicom_services
- dicom_services
Name | Datatype | Description |
---|---|---|
authentication_configuration | text | field from the properties object |
cors_configuration | text | field from the properties object |
dicomServiceName | text | field from the properties object |
enable_data_partitions | text | field from the properties object |
encryption | text | field from the properties object |
event_state | text | field from the properties object |
identity | text | Setting indicating whether the service has a managed identity associated with it. |
private_endpoint_connections | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_network_access | text | field from the properties object |
resourceGroupName | text | field from the properties object |
service_url | text | field from the properties object |
storage_configuration | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
identity | object | Setting indicating whether the service has a managed identity associated with it. |
properties | object | Dicom Service properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dicomServiceName, resourceGroupName, subscriptionId, workspaceName | 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 | dicomServiceName, resourceGroupName, subscriptionId, workspaceName | Creates or updates a DICOM Service resource with the specified parameters. |
delete | DELETE | dicomServiceName, resourceGroupName, subscriptionId, workspaceName | Deletes a DICOM Service. |
update | UPDATE | dicomServiceName, resourceGroupName, subscriptionId, workspaceName | Patch DICOM Service details. |
SELECT
examples
Lists all DICOM Services for the given workspace
- vw_dicom_services
- dicom_services
SELECT
authentication_configuration,
cors_configuration,
dicomServiceName,
enable_data_partitions,
encryption,
event_state,
identity,
private_endpoint_connections,
provisioning_state,
public_network_access,
resourceGroupName,
service_url,
storage_configuration,
subscriptionId,
system_data,
workspaceName
FROM azure_extras.healthcare.vw_dicom_services
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
identity,
properties,
systemData
FROM azure_extras.healthcare.dicom_services
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new dicom_services
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_extras.healthcare.dicom_services (
dicomServiceName,
resourceGroupName,
subscriptionId,
workspaceName,
identity,
properties,
systemData
)
SELECT
'{{ dicomServiceName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ identity }}',
'{{ properties }}',
'{{ systemData }}'
;
- name: your_resource_model_name
props:
- name: identity
value:
- name: type
value: string
- name: principalId
value: string
- name: tenantId
value: string
- name: userAssignedIdentities
value: []
- name: properties
value:
- name: provisioningState
value: []
- name: authenticationConfiguration
value:
- name: authority
value: string
- name: audiences
value:
- []
- name: corsConfiguration
value:
- name: origins
value:
- []
- name: headers
value:
- []
- name: methods
value:
- []
- name: maxAge
value: integer
- name: allowCredentials
value: boolean
- name: serviceUrl
value: string
- name: privateEndpointConnections
value:
- - name: properties
value:
- name: privateEndpoint
value:
- name: id
value: string
- name: privateLinkServiceConnectionState
value:
- name: status
value: []
- name: description
value: string
- name: actionsRequired
value: string
- name: provisioningState
value: []
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: publicNetworkAccess
value: []
- name: eventState
value: []
- name: encryption
value:
- name: customerManagedKeyEncryption
value:
- name: keyEncryptionKeyUrl
value: string
- name: storageConfiguration
value:
- name: storageResourceId
value: string
- name: fileSystemName
value: string
- name: enableDataPartitions
value: []
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
UPDATE
example
Updates a dicom_services
resource.
/*+ update */
UPDATE azure_extras.healthcare.dicom_services
SET
tags = '{{ tags }}',
identity = '{{ identity }}'
WHERE
dicomServiceName = '{{ dicomServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
DELETE
example
Deletes the specified dicom_services
resource.
/*+ delete */
DELETE FROM azure_extras.healthcare.dicom_services
WHERE dicomServiceName = '{{ dicomServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';