Skip to main content

pipelines_by_instances

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

Overview

Namepipelines_by_instances
TypeResource
Idazure.iot_data_processor.pipelines_by_instances

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
extendedLocationobjectEdge location of the resource.
locationstringThe geo-location where the resource lives
propertiesobjectThe resource-specific properties for this resource.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, instanceNameList Pipeline 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.

NameDatatypeDescription
instanceNamestringName of instance.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

List Pipeline resources by Instance

SELECT
extendedLocation,
location,
properties,
tags
FROM azure.iot_data_processor.pipelines_by_instances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND instanceName = '{{ instanceName }}' -- required
;