You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/data-factory/apache-airflow-jobs-api-capabilities.md
+17-15Lines changed: 17 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ The primary online reference documentation for Microsoft Fabric REST APIs can be
47
47
48
48
In addition to CRUD APIs, there are a series of additional operational APIs offered for Apache Airflow Jobs:
49
49
50
-
-**Job File Management APIs**
50
+
-**File Management APIs**
51
51
52
52
## Get started with REST APIs for Apache Airflow Jobs
53
53
@@ -101,7 +101,7 @@ Create an Apache Airflow Job in a specified workspace.
101
101
{
102
102
"displayName": "My Apache Airflow Job",
103
103
"description": "My Apache Airflow Job description",
104
-
"type": "ApacheAirflowJobs"
104
+
"type": "ApacheAirflowJob"
105
105
}
106
106
```
107
107
@@ -110,7 +110,7 @@ Create an Apache Airflow Job in a specified workspace.
110
110
```rest
111
111
{
112
112
"id": "<artifactId>",
113
-
"type": "ApacheAirflowJobs",
113
+
"type": "ApacheAirflowJob",
114
114
"displayName": "My Apache Airflow Job",
115
115
"description": "My Apache Airflow Job description",
116
116
"workspaceId": "<workspaceId>"
@@ -120,6 +120,7 @@ Create an Apache Airflow Job in a specified workspace.
120
120
## Create an Apache Airflow Job with definition
121
121
122
122
Create an Apache Airflow Job with a public definition in a specified workspace.
123
+
For additional details on creating an Apache Airflow Job with definition, please review - [Microsoft Fabric REST API](/rest/api/fabric/apacheairflowjob/items/create-apache-airflow-job).
123
124
124
125
**Sample request**:
125
126
@@ -141,7 +142,7 @@ Create an Apache Airflow Job with a public definition in a specified workspace.
141
142
"displayName": " My Apache Airflow Job",
142
143
"description": "My Apache Airflow Job description",
143
144
144
-
"type": "ApacheAirflowJobs",
145
+
"type": "ApacheAirflowJob",
145
146
"definition": {
146
147
"parts": [
147
148
{
@@ -164,7 +165,7 @@ Create an Apache Airflow Job with a public definition in a specified workspace.
164
165
```rest
165
166
{
166
167
"id": "<Your artifactId>",
167
-
"type": "ApacheAirflowJobs",
168
+
"type": "ApacheAirflowJob",
168
169
"displayName": "My Apache Airflow Job",
169
170
"description": "My Apache Airflow Job description",
For additional details on getting an Apache Airflow Job with definition, please review - [Microsoft Fabric REST API](/rest/api/fabric/apacheairflowjob/items/get-apache-airflow-job-definition).
205
207
206
208
**Sample request**:
207
209
@@ -259,7 +261,7 @@ Updates the properties of the Apache Airflow Job.
259
261
{
260
262
"displayName": "My Apache Airflow Job updated",
261
263
"description": "My Apache Airflow Job description updated",
262
-
"type": "ApacheAirflowJobs"
264
+
"type": "ApacheAirflowJob"
263
265
}
264
266
```
265
267
@@ -268,7 +270,7 @@ Updates the properties of the Apache Airflow Job.
268
270
```rest
269
271
{
270
272
"id": "<Your artifactId>",
271
-
"type": "ApacheAirflowJobs",
273
+
"type": "ApacheAirflowJob",
272
274
"displayName": "My Apache Airflow Job updated",
273
275
"description": "My Apache Airflow Job description updated",
274
276
"workspaceId": "<Your workspaceId>"
@@ -278,6 +280,7 @@ Updates the properties of the Apache Airflow Job.
278
280
## Update Apache Airflow Job with definition
279
281
280
282
Updates the Apache Airflow Job item definition.
283
+
For additional details on updating an Apache Airflow Job with definition, please review - [Microsoft Fabric REST API](/rest/api/fabric/apacheairflowjob/items/update-apache-airflow-job-definition).
0 commit comments