-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorder param to avoid breaking change, add first example for ADL (#927)
* fix for validation error in ADLA Remove minimum and add an explanation. * Initial example for feedback Please look at this and let me know if this is the right approach * move firewallallowazureIps to the end This avoids a param reordering breaking change. * fix example. * Unlink example This is due to github issue: #928
- Loading branch information
Showing
2 changed files
with
76 additions
and
24 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
arm-datalake-analytics/job/2016-11-01/examples/AdlJobCreate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2016-11-01", | ||
"jobIdentity": "9c498166-15d6-45f6-ac3a-b9518af0abf3", | ||
"accountName": "contosoadla", | ||
"parameters" :{ | ||
"name": "TestJob", | ||
"type": "USql", | ||
"degreeOfParallelism": 1, | ||
"priority": 1000, | ||
"properties": { | ||
"type": "USql", | ||
"script": "DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"jobId": "9c498166-15d6-45f6-ac3a-b9518af0abf3", | ||
"name": "TestJob", | ||
"type": "USql", | ||
"submitter": "[email protected]", | ||
"degreeOfParallelism": 1, | ||
"priority": 1000, | ||
"submitTime": "2017-02-08T11:31:07.6332831-08:00", | ||
"state": "Compiling", | ||
"result": "None", | ||
"stateAuditRecords": [{ | ||
"newState": "New", | ||
"timeStamp": "2017-02-08T11:31:07.6332831-08:00", | ||
"details": "userName:;submitMachine:N/A" | ||
}], | ||
"properties": { | ||
"owner": "[email protected]", | ||
"resources": [], | ||
"runtimeVersion": "default", | ||
"rootProcessNodeId": "00000000-0000-0000-0000-000000000000", | ||
"algebraFilePath": "adl://contosoadla.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/02/08/19/31/9c498166-15d6-45f6-ac3a-b9518af0abf3/algebra.xml", | ||
"compileMode": "Semantic", | ||
"errorSource": "Unknown", | ||
"totalCompilationTime": "PT0S", | ||
"totalPausedTime": "PT0S", | ||
"totalQueuedTime": "PT0S", | ||
"totalRunningTime": "PT0S", | ||
"expirationTimeUtc": "0001-01-01T00:00:00Z", | ||
"type": "USql" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters