pending_flows
Creates, updates, deletes, gets or lists a pending_flows
resource.
Overview
Name | pending_flows |
Type | Resource |
Id | azure.data_transfer.pending_flows |
Fields
The following fields are returned by SELECT
queries:
- list
Listed all connections under the resource group.
Name | Datatype | Description |
---|---|---|
connection | object | The connection associated with this flow |
connectionId | string | Connection ID of the pending flow. |
dataType | string | Transfer Storage Blobs or Tables |
flowId | string | Dataflow GUID associated with this flow |
flowType | string | The flow type for this flow |
keyVaultUri | string | AME, PME, or TORUS only! AKV Chain Containing SAS Token |
linkStatus | string | Link status of the current flow |
linkedFlowId | string | Resource ID of the linked flow |
location | string | The geo-location where the resource lives |
messagingOptions | object | The messaging options for this flow |
policies | array | The policies for this flow |
provisioningState | string | Provisioning state of the flow |
schema | object | The selected schema for this flow |
serviceBusQueueId | string (arm-id) | Service Bus Queue ID |
status | string | Status of the current flow |
storageAccountId | string (arm-id) | Storage Account ID |
storageAccountName | string | Storage Account |
storageContainerName | string | Storage Container Name |
subscriptionId | string | Subscription ID of the pending flow. |
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 , connectionName | Lists 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.
Name | Datatype | Description |
---|---|---|
connectionName | string | The name for the connection that is to be requested. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;