Skip to main content

linkers_dryruns

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

Overview

Namelinkers_dryruns
TypeResource
Idazure.service_connector.linkers_dryruns

Fields

NameDatatypeDescription
dryrunNametextfield from the properties object
operation_previewstextfield from the properties object
parameterstextfield from the properties object
prerequisite_resultstextfield from the properties object
provisioning_statetextfield from the properties object
resourceUritextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTdryrunName, resourceUriget a dryrun job
listSELECTresourceUrilist dryrun jobs
createINSERTdryrunName, resourceUricreate a dryrun job to do necessary check before actual creation
deleteDELETEdryrunName, resourceUridelete a dryrun job
updateUPDATEdryrunName, resourceUriadd a dryrun job to do necessary check before actual creation

SELECT examples

list dryrun jobs

SELECT
dryrunName,
operation_previews,
parameters,
prerequisite_results,
provisioning_state,
resourceUri
FROM azure.service_connector.vw_linkers_dryruns
WHERE resourceUri = '{{ resourceUri }}';

INSERT example

Use the following StackQL query and manifest file to create a new linkers_dryruns resource.

/*+ create */
INSERT INTO azure.service_connector.linkers_dryruns (
dryrunName,
resourceUri,
properties
)
SELECT
'{{ dryrunName }}',
'{{ resourceUri }}',
'{{ properties }}'
;

UPDATE example

Updates a linkers_dryruns resource.

/*+ update */
UPDATE azure.service_connector.linkers_dryruns
SET
properties = '{{ properties }}'
WHERE
dryrunName = '{{ dryrunName }}'
AND resourceUri = '{{ resourceUri }}';

DELETE example

Deletes the specified linkers_dryruns resource.

/*+ delete */
DELETE FROM azure.service_connector.linkers_dryruns
WHERE dryrunName = '{{ dryrunName }}'
AND resourceUri = '{{ resourceUri }}';