Skip to main content

pending_flows

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

Overview

Namepending_flows
TypeResource
Idazure.data_transfer.pending_flows

Fields

The following fields are returned by SELECT queries:

Listed all connections under the resource group.

NameDatatypeDescription
connectionobjectThe connection associated with this flow
connectionIdstringConnection ID of the pending flow.
dataTypestringTransfer Storage Blobs or Tables
flowIdstringDataflow GUID associated with this flow
flowTypestringThe flow type for this flow
keyVaultUristringAME, PME, or TORUS only! AKV Chain Containing SAS Token
linkStatusstringLink status of the current flow
linkedFlowIdstringResource ID of the linked flow
locationstringThe geo-location where the resource lives
messagingOptionsobjectThe messaging options for this flow
policiesarrayThe policies for this flow
provisioningStatestringProvisioning state of the flow
schemaobjectThe selected schema for this flow
serviceBusQueueIdstring (arm-id)Service Bus Queue ID
statusstringStatus of the current flow
storageAccountIdstring (arm-id)Storage Account ID
storageAccountNamestringStorage Account
storageContainerNamestringStorage Container Name
subscriptionIdstringSubscription ID of the pending flow.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, connectionNameLists all pending flows for a connection.

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
connectionNamestringThe name for the connection that is to be requested.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Lists all pending flows for a connection.

SELECT
connection,
connectionId,
dataType,
flowId,
flowType,
keyVaultUri,
linkStatus,
linkedFlowId,
location,
messagingOptions,
policies,
provisioningState,
schema,
serviceBusQueueId,
status,
storageAccountId,
storageAccountName,
storageContainerName,
subscriptionId,
tags
FROM azure.data_transfer.pending_flows
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND connectionName = '{{ connectionName }}' -- required
;