We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e67ba53 commit 49c4408Copy full SHA for 49c4408
1 file changed
docs/PowerShell/ADL_PS_QuickStart.md
@@ -22,12 +22,16 @@ Use the Login-AzureRmAccount cmdlet
22
23
Login-AzureRmAccount -SubscriptionName $subname
24
25
-## Getting a list of all the jobs submitted in the last day
+## Get all the jobs submitted in the last day
26
27
The -SubmittedAfter parameter performs server-side filtering.
28
29
Get-AdlJob -Account $adla -SubmittedAfter ([DateTime]::Now.AddDays(-1))
30
31
+## Get all the jobs submitted in the last 5 days and that successfully completed
32
+
33
+ Get-AdlJob -Account datainsightsadhoc -SubmittedAfter (Get-Date).AddDays(-5) -State Ended -Result Succeeded
34
35
## Getting a list of all the jobs
36
37
NOTE: If you have a lot of jobs submitted inthe last 30 days it may take a while for this cmdlet to finish'
0 commit comments