data_flows
Creates, updates, deletes, gets or lists a data_flows resource.
Overview
| Name | data_flows |
| Type | Resource |
| Id | azure.data_factory.data_flows |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_factory
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
annotations | array | List of tags that can be used for describing the data flow. |
description | string | The description of the data flow. |
etag | string | "If etag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields."). |
folder | object | The folder that this data flow is in. If not specified, Data flow will appear at the root level. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
annotations | array | List of tags that can be used for describing the data flow. |
description | string | The description of the data flow. |
etag | string | "If etag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields."). |
folder | object | The folder that this data flow is in. If not specified, Data flow will appear at the root level. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, factory_name, data_flow_name, subscription_id | Gets a data flow. | |
list_by_factory | select | resource_group_name, factory_name, subscription_id | Lists data flows. | |
create_or_update | insert | resource_group_name, factory_name, data_flow_name, subscription_id, properties | Creates or updates a data flow. | |
create_or_update | replace | resource_group_name, factory_name, data_flow_name, subscription_id, properties | Creates or updates a data flow. | |
delete | delete | resource_group_name, factory_name, data_flow_name, subscription_id | Deletes a data flow. |
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 |
|---|---|---|
data_flow_name | string | The data flow name. Required. |
factory_name | string | The factory name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_factory
Gets a data flow.
SELECT
id,
name,
annotations,
description,
etag,
folder,
systemData,
type
FROM azure.data_factory.data_flows
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND factory_name = '{{ factory_name }}' -- required
AND data_flow_name = '{{ data_flow_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lists data flows.
SELECT
id,
name,
annotations,
description,
etag,
folder,
systemData,
type
FROM azure.data_factory.data_flows
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND factory_name = '{{ factory_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Creates or updates a data flow.
INSERT INTO azure.data_factory.data_flows (
properties,
resource_group_name,
factory_name,
data_flow_name,
subscription_id
)
SELECT
'{{ properties }}' /* required */,
'{{ resource_group_name }}',
'{{ factory_name }}',
'{{ data_flow_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
etag,
properties,
systemData,
type
;
# Description fields are for documentation purposes
- name: data_flows
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the data_flows resource.
- name: factory_name
value: "{{ factory_name }}"
description: Required parameter for the data_flows resource.
- name: data_flow_name
value: "{{ data_flow_name }}"
description: Required parameter for the data_flows resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the data_flows resource.
- name: properties
description: |
Data flow properties. Required.
value:
type: "{{ type }}"
description: "{{ description }}"
annotations: "{{ annotations }}"
folder:
name: "{{ name }}"
REPLACE examples
- create_or_update
Creates or updates a data flow.
REPLACE azure.data_factory.data_flows
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND factory_name = '{{ factory_name }}' --required
AND data_flow_name = '{{ data_flow_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
etag,
properties,
systemData,
type;
DELETE examples
- delete
Deletes a data flow.
DELETE FROM azure.data_factory.data_flows
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND factory_name = '{{ factory_name }}' --required
AND data_flow_name = '{{ data_flow_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;