connector_dryruns
Creates, updates, deletes, gets or lists a connector_dryruns
resource.
Overview
Name | connector_dryruns |
Type | Resource |
Id | azure.service_connector.connector_dryruns |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the dryrun job. |
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the dryrun job. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , location , dryrunName | get a dryrun job | |
list | select | subscriptionId , resourceGroupName , location | list dryrun jobs | |
create | insert | subscriptionId , resourceGroupName , location , dryrunName | create a dryrun job to do necessary check before actual creation | |
update | update | subscriptionId , resourceGroupName , location , dryrunName | update a dryrun job to do necessary check before actual creation | |
delete | delete | subscriptionId , resourceGroupName , location , dryrunName | delete a dryrun job |
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 |
---|---|---|
dryrunName | string | The name of dryrun. |
location | string | The name of Azure region. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
- list
get a dryrun job
SELECT
properties
FROM azure.service_connector.connector_dryruns
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND dryrunName = '{{ dryrunName }}' -- required
;
list dryrun jobs
SELECT
properties
FROM azure.service_connector.connector_dryruns
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
;
INSERT
examples
- create
- Manifest
create a dryrun job to do necessary check before actual creation
INSERT INTO azure.service_connector.connector_dryruns (
data__properties,
subscriptionId,
resourceGroupName,
location,
dryrunName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ location }}',
'{{ dryrunName }}'
RETURNING
properties
;
# Description fields are for documentation purposes
- name: connector_dryruns
props:
- name: subscriptionId
value: string
description: Required parameter for the connector_dryruns resource.
- name: resourceGroupName
value: string
description: Required parameter for the connector_dryruns resource.
- name: location
value: string
description: Required parameter for the connector_dryruns resource.
- name: dryrunName
value: string
description: Required parameter for the connector_dryruns resource.
- name: properties
value: object
description: |
The properties of the dryrun job.
UPDATE
examples
- update
update a dryrun job to do necessary check before actual creation
UPDATE azure.service_connector.connector_dryruns
SET
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND location = '{{ location }}' --required
AND dryrunName = '{{ dryrunName }}' --required
RETURNING
properties;
DELETE
examples
- delete
delete a dryrun job
DELETE FROM azure.service_connector.connector_dryruns
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND location = '{{ location }}' --required
AND dryrunName = '{{ dryrunName }}' --required
;