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
Name | Datatype | Description |
---|---|---|
approver | string | Approver of this connection request |
dateSubmitted | string | The timestamp that this connection request was submitted at |
direction | string | Direction of data movement |
flowTypes | array | The flow types that are allowed for this resource |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | connectionName, resourceGroupName, subscriptionId | Lists all pending connections for a connection. |
SELECT
examples
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 connectionName = '{{ connectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';