linkers_dryruns
Creates, updates, deletes, gets or lists a linkers_dryruns
resource.
Overview
Name | linkers_dryruns |
Type | Resource |
Id | azure.service_connector.linkers_dryruns |
Fields
- vw_linkers_dryruns
- linkers_dryruns
Name | Datatype | Description |
---|---|---|
dryrunName | text | field from the properties object |
operation_previews | text | field from the properties object |
parameters | text | field from the properties object |
prerequisite_results | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceUri | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the dryrun job |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dryrunName, resourceUri | get a dryrun job |
list | SELECT | resourceUri | list dryrun jobs |
create | INSERT | dryrunName, resourceUri | create a dryrun job to do necessary check before actual creation |
delete | DELETE | dryrunName, resourceUri | delete a dryrun job |
update | UPDATE | dryrunName, resourceUri | add a dryrun job to do necessary check before actual creation |
SELECT
examples
list dryrun jobs
- vw_linkers_dryruns
- linkers_dryruns
SELECT
dryrunName,
operation_previews,
parameters,
prerequisite_results,
provisioning_state,
resourceUri
FROM azure.service_connector.vw_linkers_dryruns
WHERE resourceUri = '{{ resourceUri }}';
SELECT
properties
FROM azure.service_connector.linkers_dryruns
WHERE resourceUri = '{{ resourceUri }}';
INSERT
example
Use the following StackQL query and manifest file to create a new linkers_dryruns
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.service_connector.linkers_dryruns (
dryrunName,
resourceUri,
properties
)
SELECT
'{{ dryrunName }}',
'{{ resourceUri }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: parameters
value:
- name: actionName
value: []
- name: prerequisiteResults
value:
- - name: type
value: []
- name: operationPreviews
value:
- - name: name
value: string
- name: operationType
value: string
- name: description
value: string
- name: action
value: string
- name: scope
value: string
- name: provisioningState
value: string
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 }}';