datasets_by_instances
Creates, updates, deletes, gets or lists a datasets_by_instances
resource.
Overview
Name | datasets_by_instances |
Type | Resource |
Id | azure.iot_data_processor.datasets_by_instances |
Fields
The following fields are returned by SELECT
queries:
- list
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
extendedLocation | object | Edge location of the resource. |
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , instanceName | List Dataset resources by 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 |
---|---|---|
instanceName | string | Name of instance. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
List Dataset resources by Instance
SELECT
extendedLocation,
location,
properties,
tags
FROM azure.iot_data_processor.datasets_by_instances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND instanceName = '{{ instanceName }}' -- required
;