private_link_services_for_edm_uploads
Creates, updates, deletes, gets or lists a private_link_services_for_edm_uploads
resource.
Overview
Name | private_link_services_for_edm_uploads |
Type | Resource |
Id | azure.security_and_compliance.private_link_services_for_edm_uploads |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list
The body contains all of the properties of the privateLinkServicesForEDMUpload instance.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. (pattern: ^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$ ) |
etag | string | An etag associated with the resource, used for optimistic concurrency when editing it. |
identity | object | Setting indicating whether the service has a managed identity associated with it. |
kind | string | The kind of the service. |
location | string | The resource location. |
properties | object | The common properties of a service. |
systemData | object | Required property for system data |
tags | object | The resource tags. |
type | string | The resource type. |
This is a synchronous operation. The body contains a JSON-serialized array of the metadata from all the privateLinkServicesForEDMUpload instances in the resource group.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. (pattern: ^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$ ) |
etag | string | An etag associated with the resource, used for optimistic concurrency when editing it. |
identity | object | Setting indicating whether the service has a managed identity associated with it. |
kind | string | The kind of the service. |
location | string | The resource location. |
properties | object | The common properties of a service. |
systemData | object | Required property for system data |
tags | object | The resource tags. |
type | string | The resource type. |
This is a synchronous operation. The body contains a JSON-serialized array of the metadata from all the privateLinkServicesForEDMUpload instances in the subscription.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. (pattern: ^[a-z0-9][a-z0-9-]{1,21}[a-z0-9]$ ) |
etag | string | An etag associated with the resource, used for optimistic concurrency when editing it. |
identity | object | Setting indicating whether the service has a managed identity associated with it. |
kind | string | The kind of the service. |
location | string | The resource location. |
properties | object | The common properties of a service. |
systemData | object | Required property for system data |
tags | object | The resource tags. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , resourceName | Get the metadata of a privateLinkServicesForEDMUpload resource. | |
list_by_resource_group | select | subscriptionId , resourceGroupName | Get all the service instances in a resource group. | |
list | select | subscriptionId | Get all the privateLinkServicesForEDMUpload instances in a subscription. | |
create_or_update | insert | subscriptionId , resourceGroupName , resourceName | Create or update the metadata of a privateLinkServicesForEDMUpload instance. | |
update | update | subscriptionId , resourceGroupName , resourceName | Update the metadata of a privateLinkServicesForEDMUpload instance. |
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 |
---|---|---|
resourceGroupName | string | The name of the resource group that contains the service instance. |
resourceName | string | The name of the service instance. |
subscriptionId | string | The subscription identifier. |
SELECT
examples
- get
- list_by_resource_group
- list
Get the metadata of a privateLinkServicesForEDMUpload resource.
SELECT
id,
name,
etag,
identity,
kind,
location,
properties,
systemData,
tags,
type
FROM azure.security_and_compliance.private_link_services_for_edm_uploads
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;
Get all the service instances in a resource group.
SELECT
id,
name,
etag,
identity,
kind,
location,
properties,
systemData,
tags,
type
FROM azure.security_and_compliance.private_link_services_for_edm_uploads
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
Get all the privateLinkServicesForEDMUpload instances in a subscription.
SELECT
id,
name,
etag,
identity,
kind,
location,
properties,
systemData,
tags,
type
FROM azure.security_and_compliance.private_link_services_for_edm_uploads
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Create or update the metadata of a privateLinkServicesForEDMUpload instance.
INSERT INTO azure.security_and_compliance.private_link_services_for_edm_uploads (
data__properties,
data__kind,
data__location,
data__tags,
data__etag,
data__identity,
subscriptionId,
resourceGroupName,
resourceName
)
SELECT
'{{ properties }}',
'{{ kind }}',
'{{ location }}',
'{{ tags }}',
'{{ etag }}',
'{{ identity }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ resourceName }}'
RETURNING
id,
name,
etag,
identity,
kind,
location,
properties,
systemData,
tags,
type
;
# Description fields are for documentation purposes
- name: private_link_services_for_edm_uploads
props:
- name: subscriptionId
value: string
description: Required parameter for the private_link_services_for_edm_uploads resource.
- name: resourceGroupName
value: string
description: Required parameter for the private_link_services_for_edm_uploads resource.
- name: resourceName
value: string
description: Required parameter for the private_link_services_for_edm_uploads resource.
- name: properties
value: object
description: |
The common properties of a service.
- name: kind
value: string
description: |
The kind of the service.
valid_values: ['fhir', 'fhir-Stu3', 'fhir-R4']
- name: location
value: string
description: |
The resource location.
- name: tags
value: object
description: |
The resource tags.
- name: etag
value: string
description: |
An etag associated with the resource, used for optimistic concurrency when editing it.
- name: identity
value: object
description: |
Setting indicating whether the service has a managed identity associated with it.
UPDATE
examples
- update
Update the metadata of a privateLinkServicesForEDMUpload instance.
UPDATE azure.security_and_compliance.private_link_services_for_edm_uploads
SET
data__tags = '{{ tags }}',
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND resourceName = '{{ resourceName }}' --required
RETURNING
id,
name,
etag,
identity,
kind,
location,
properties,
systemData,
tags,
type;