pending_connections
Creates, updates, deletes, gets or lists a pending_connections
resource.
Overview
Name | pending_connections |
Type | Resource |
Id | azure.data_transfer.pending_connections |
Fields
The following fields are returned by SELECT
queries:
- list
Listed all pending connections.
Name | Datatype | Description |
---|---|---|
approver | string | Approver of this connection request |
dateSubmitted | string (date-time) | The timestamp that this connection request was submitted at |
direction | string | Direction of data movement |
flowTypes | array | The flow types being requested for this connection |
justification | string | Justification for the connection request |
linkStatus | string | Link status of the current connection |
linkedConnectionId | string | Resource ID of the linked connection |
location | string | The geo-location where the resource lives |
pin | string | PIN to link requests together |
pipeline | string | Pipeline to use to transfer data |
policies | array | The policies for this connection |
primaryContact | string | The primary contact for this connection request |
provisioningState | string | Provisioning state of the connection |
remoteSubscriptionId | string | Subscription ID to link cloud subscriptions together |
requirementId | string | Requirement ID of the connection |
schemas | array | The schemas for this connection |
secondaryContacts | array | The secondary contacts for this connection request |
status | string | Status of the connection |
statusReason | string | Reason for status |
subscriptionId | string | Subscription ID of the pending connection. |
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 connections 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 connections for a connection.
SELECT
approver,
dateSubmitted,
direction,
flowTypes,
justification,
linkStatus,
linkedConnectionId,
location,
pin,
pipeline,
policies,
primaryContact,
provisioningState,
remoteSubscriptionId,
requirementId,
schemas,
secondaryContacts,
status,
statusReason,
subscriptionId,
tags
FROM azure.data_transfer.pending_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND connectionName = '{{ connectionName }}' -- required
;