Skip to main content

private_links

Creates, updates, deletes, gets or lists a private_links resource.

Overview

Nameprivate_links
TypeResource
Idazure.iot_central.private_links

Fields

The following fields are returned by SELECT queries:

The private link resource for the IoT Central Application.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectResource properties.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, groupIdapi-versionGet a private link resource of a IoT Central Application.
listselectsubscriptionId, resourceGroupName, resourceNameapi-versionGet all private link resources of a IoT Central Application.

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.

NameDatatypeDescription
groupIdstringThe private link resource name.
resourceGroupNamestringThe name of the resource group that contains the IoT Central application.
resourceNamestringThe ARM resource name of the IoT Central application.
subscriptionIdstringThe subscription identifier.
api-versionstringThe version of the API.

SELECT examples

Get a private link resource of a IoT Central Application.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.iot_central.private_links
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND groupId = '{{ groupId }}' -- required
AND api-version = '{{ api-version }}'
;