Skip to main content

pending_connections

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

Overview

Namepending_connections
TypeResource
Idazure.data_transfer.pending_connections

Fields

The following fields are returned by SELECT queries:

Listed all pending connections.

NameDatatypeDescription
approverstringApprover of this connection request
dateSubmittedstring (date-time)The timestamp that this connection request was submitted at
directionstringDirection of data movement
flowTypesarrayThe flow types being requested for this connection
justificationstringJustification for the connection request
linkStatusstringLink status of the current connection
linkedConnectionIdstringResource ID of the linked connection
locationstringThe geo-location where the resource lives
pinstringPIN to link requests together
pipelinestringPipeline to use to transfer data
policiesarrayThe policies for this connection
primaryContactstringThe primary contact for this connection request
provisioningStatestringProvisioning state of the connection
remoteSubscriptionIdstringSubscription ID to link cloud subscriptions together
requirementIdstringRequirement ID of the connection
schemasarrayThe schemas for this connection
secondaryContactsarrayThe secondary contacts for this connection request
statusstringStatus of the connection
statusReasonstringReason for status
subscriptionIdstringSubscription ID of the pending connection.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

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

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 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
;